@charset "UTF-8";



html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

html,
body {
    /* font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; */
    font-style: normal;
    font-weight: 400;
    font-feature-settings: "palt" 1;
    line-break: strict;
    /* normalは句読点のみ*/
    letter-spacing: 0.5px;
    height: 100%;
    box-sizing: border-box;
}

/*
body.modal_open:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom:0;
	right:0;
	background: #00000055;
}
*/

body {
    color: #384048;
    font-size: 16px;
    background: #fff;
    margin: 0;
    padding: 0;
}

a {
    color: #384048;
    text-decoration: none;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    filter: brightness(1.1);

}

img {
    border: none;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    font-weight: 900;
}

h1,
h2 {
    /* font-family: ten-mincho, serif; */
    font-feature-settings: "part" 1;
}

h3 {
    /* font-family: ten-mincho, serif; */
}

h4 {}

p {
    /* font-family: ten-mincho, serif; */
    line-height: 1.8;
    box-sizing: border-box;
}

ul {
    text-align: left;
}

li {
    list-style: none;
}

div {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

strong {
    font-weight: bold;
    background: linear-gradient(transparent 60%, #ffff66 60%);
}


/* テーブル */
table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
    border-bottom: 1px solid #3199a2b8;
    box-sizing: border-box;
    border-top: 1px solid #3199a2b8;

}

table:not(.table-type2) tr:first-child th {
    background: #a1d9e0;
    color: #1680a2;
}

tr {}

tr.strong,
.table-striped tr:nth-child(odd).strong {
    background: #3199a255;
}

th,
td {
    border-bottom: 1px solid #3199a2b8;
    border-left: 1px solid #789b9f55;
    padding: 1em 0.6em;
    line-height: 1.2;
    text-align: left;
    vertical-align: middle;
    box-sizing: border-box;
}

table.table-nowrap th,
table.table-nowrap td {
    white-space: nowrap;
}

table.table-nowrap_td td {
    white-space: nowrap;
}

th:first-child,
td:first-child {
    border-left: none;
}

th {
    background: #a1d9e040;
    color: #426d76;
}

td {}

@media screen and (max-width:767px) {

    th,
    td {}
}

button,
select,
textarea {
    -webkit-appearance: none;
    appearance: none;
}

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

input[type="submit"],
input[type="button"] {
    background: #ff5655;
    color: #fff;
    padding: 8px 25px;
    text-align: center;
    border: none;
    display: inline-block;
    /*min-width: 8em;*/
    width: auto;
    height: auto;
    box-sizing: content-box;
    font-size: 15px;
    border-radius: 20px;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    /*-webkit-font-smoothing:antialiased;*/
}

input[type="submit"]:hover,
input[type="button"]:hover {
    opacity: 0.8;
}

input[type="text"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="date"],
textarea {
    border: #534741 1px solid;
    background: #fff;
    box-sizing: border-box;
    padding: 10px;
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    border-radius: 5px;
    outline: none;
    display: block;
    width: 100%;
    -webkit-appearance: none;
}

textarea {}

label.radio {
    cursor: pointer;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
    padding: 0 0 0 23px;
    display: inline-block;
}

label.radio:before {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #3c58cf;
    border-radius: 50%;
    left: 0px;
    top: 4px;
    content: '';
    z-index: 3;
}

label.radio:after {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    left: 4px;
    top: 8px;
    background-color: #3c58cf;
    z-index: 1;
}

label.radio input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    left: -23px;
    top: 1px;
    margin: 0px;
    box-shadow: 20px -1px #FFF;
}

label.radio input[type="radio"]:checked {
    box-shadow: none;
}

label.radio input[type="radio"]:focus {
    box-shadow: 20px 0px #FFF;
    opacity: 0.2;
}

select {
    cursor: pointer;
    border: #534741 1px solid;
    padding: 0 34px 0 8px;
    border-radius: 4px;
    line-height: 30px;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
    text-indent: .01px;
    text-overflow: "";
    height: 46px;
    font-size: 18px;
    position: relative;
    background-size: 31px auto;
    background: #f6f6f6;
    width: 100%;
}

.select_wrap {
    display: inline-block;
    position: relative;
}

.select_wrap:after {
    content: "";
    width: 5px;
    height: 5px;
    border: #333 1px solid;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -4px;
    pointer-events: none;
}

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

option {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
    color: #444;
    padding: 5px 3px;
}

option[selected] {
    color: #fff;
    background: rgba(60, 88, 207, 0.3);
}

select:focus {
    border-color: #ff5655;
    outline: none;
}

select.off {
    background: #f1f1f1;
    border-color: #ddd;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
textarea:focus {
    border: #ff5655 1px solid;
}

button,
input,
select,
textarea {
    margin: 0;
    max-width: 100%;
    vertical-align: baseline;
    color: #444;
}

button,
input {
    line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    /* font-family: inherit; */
    font-size: 18px;
}

button[disabled],
input[disabled] {
    cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
}

form {
    margin: 0;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
    white-space: normal;
}

label {

    display: block;
}

@media screen and (max-width:767px) {
    .forPC {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .forSP {
        display: none;
    }
}

@media screen and (max-width:767px),
screen and (min-width:1025px) {
    .forTAB {
        display: none;
    }
}

.min {
    font-size: 80%;
}

.normal {}

@media screen and (max-width:767px) {
    body {}

    p {
        line-height: 1.8;
    }
}

.tsume {
    letter-spacing: -0.5em;
}

/* オーバレイ */
html.overlay {
    overscroll-behavior: none;
}

html.overlay body {
    position: relative;
    height: auto;
    background: #000000aa;
}

html.overlay #container:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000aa;
    z-index: 1000000;
    backdrop-filter: blur(10px);
}



/*-----------------------------------------------------------------------------* common */
@media screen and (max-width:600px) and (max-height:850px) {

    html.info_open,
    html.info_open body {
        overflow: hidden;
    }
}

#container {
    background: #fff;
}

#container:has(.post_content.noSidebar) {
    width: 100%;
}

#contents {
    overflow: hidden;
    padding: 0;
    min-height: calc(100vh - 30px);
    box-sizing: border-box;
}

#contents_inner {
    display: block;
}

body.single-post {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width:768px) {
    body:not(.home):not(.page):not(.archive):not(.error404):not(.single-post) #contents_inner {
        max-width: 1260px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 0;
        flex-direction: row;
        align-items: flex-start;
    }

    body.single #contents {
        max-width: 90%;
        margin: 0 auto;
    }

}

@media screen and (max-width:767px) {
    #contents {
        background: #fff;
        min-height: calc(100vh - 36px);
        padding-bottom: 40px;
    }
}

.btns {
    margin: 20px auto 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

}

.top_btns {
    margin-top: 80px;
}

.links_cat {
    background: #eee;
    font-size: 14px;
    margin: 0;
    padding: 18px 10px;
    position: relative;
}

.links_cat::after {
    transition: all 0.4s ease-out;
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border: #444 solid;
    border-width: 1px 1px 0 0;
    display: block;
    transform: rotate(135deg) translateY(2px);
    top: 50%;
    margin-top: -5px;
    right: 10px;
}

.links_cat.open::after {
    transform: rotate(-45deg) translateY(2px);
    margin-top: -4px;

}

.links_cat:not(.open) {
    border-bottom: 0.6px solid #38404866;
}

.link {
    display: flex;
    /* font-family: ten-mincho, serif; */
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    color: #384048;
    background: none;
    text-align: left;
    max-width: 100%;
    width: 100%;
    min-height: 60px;
    line-height: 1.2;
    font-weight: bold;
    border: #384048 1px solid;
    border-width: 1px 0;
    padding: 20px 15px 20px 10px;
    min-width: 300px;
    flex-direction: row;
    position: relative;
    gap: 10px;
    flex-wrap: wrap;
}

.link-bottom {
    min-width: 180px;
    min-height: 50px;
    padding-top: 14px;
    padding-bottom: 14px;
    margin: 20px auto 0;
    width: 240px;
}

.link:not(:first-child, .link-bottom) {
    border-top: 0;
}

.link .min {
    font-weight: normal;
    opacity: 0.75;
}

.link:before {
    content: "";
    width: 4px;
    height: 4px;
    border: #384048 solid;
    border-width: 0.6px 0.6px 0 0;
    position: absolute;
    right: 4px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transform: rotate(45deg);
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    color: #fff;
    background: #826c59;
    text-align: center;
    /* max-width: 300px; */
    /* width: 100%; */
    min-height: 60px;
    line-height: 1.2;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    padding: 20px 25px;
    min-width: 240px;
    flex-direction: column;
}

.btn:hover {}

.top_btn {}

.btn_shoulder {
    display: block;
    font-size: 13px;
    padding: 0 0 3px;
}

@media screen and (max-width:767px) {
    .btn {
        flex-direction: column;
    }
}


.btn2 {
    background: #384048;
    box-shadow: none;
}

.btn3 {
    background: #384048;
    box-shadow: none;
    padding: 0.1em 0.5em;
    font-size: 0.8em;
    line-height: 1;
}

.btn-conversion {
    background: #ff7164;
    background: linear-gradient(160deg, #ffa873 0%, #ff7164 80%);
    box-shadow: 0 10px 10px -4px #fd473659;
}

.btn-affiliate,
.btn-counseling {
    background: #0ab991;
    box-shadow: 0 10px 10px -4px #58dba059;
}

.post_entry .btn.btn-counseling {
    background: #0ab991;
    /* background: linear-gradient(160deg, #4edbb7 0%, #0ab991 80%); */
    box-shadow: 0 10px 10px -4px #58dba059;
    font-size: 130%;
    min-width: 80%;
    height: 80px;
}

.btn-submit {
    background: #ff7164;
    box-shadow: 0 14px 10px -4px #ff716466;
}

.btn-remove {
    background: #1a1a1a;
    width: 18px;
    height: 18px;
    border-radius: 16px;
    display: inline-block;
    position: relative;
    margin: -2px 0;
    transition: 0.3s ease-out;
    cursor: pointer;
}

.btn-remove:hover {
    filter: none;
    background-color: #00000033;
}

.btn-remove:before,
.btn-remove:after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 1px;
    background: #44444488;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}

.btn-remove:before {
    transform: rotate(-45deg);
}

@media screen and (max-width:767px) {
    .btns {
        margin-top: 50px;
    }

    .btn {
        height: 50px;
    }

    .top_btn {}
}

img {
    background-color: #e5e5e5;
    width: 100%;
    height: auto;
}

.bold {
    font-weight: bold;
}

.big {
    font-size: 1.5em;
}







/*---------------------------------header---------------------------------*/

header {
    width: 100dvw;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.header_inner {
    width: 100%;
    height: 100%;
    height: 80px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding: 0;
    flex-direction: row;
    align-items: center;
}

.header_section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.header_logo {
    height: 100%;
}

.header_logo img {
    height: 100%;
    width: auto;
}

.header_section-2 {
    justify-content: flex-end;
}

.header_icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.header_icon img {
    height: 100%;
    width: auto;
}

/*---------------------------------video---------------------------------*/

.iframe-wrapper {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1600px;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/*---------------------------------swiper---------------------------------*/


.swiper {
    width: 100%;
    height: auto;
    overflow: hidden;
    /* Essential to prevent layout explosion */
}

.box-swiper {
    position: relative;
    padding: 0 50px 25px;
}

.box-swiper .swiper-button-next {
    right: 0;
}

.box-swiper .swiper-button-prev {
    left: 0;
}

.box-swiper .swiper-pagination {
    bottom: 10px;
}

.swiper-wrapper {
    padding: 24px 0;
}

.swiper-slide {
    width: auto;
    height: auto;
    box-sizing: border-box;
    /* Ensure padding doesn't expand width */
}

/* Ensure images inside slides never exceed the slide width */
.swiper-slide img {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
}



/*---------------------------------container---------------------------------*/

.container {
    width: 100%;
}

.container_inner {
    width: 100%;
}

.top_section {
    width: 100%;
}

.top_section_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.top_section_img {
    width: 100dvw;
    position: relative;
}

.section {
    width: 100%;
    margin-top: 40px;
}

.section_inner {
    width: 88%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    padding: 48px 0;
    gap: 24px;
}


.section_title {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.section_ttl {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.box {
    width: 100%;
    height: auto;
    margin: 0 auto auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


.boxs {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}


.boxs-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.section_inner>* {
    width: 88%;
    margin: 0 auto;
}

.boxs-grid_small {
    grid-template-columns: repeat(4, 1fr);
}

.boxs-grid_big {
    grid-template-columns: repeat(2, 1fr);
}

.boxs>.box {
    --boxs-gap: 20px;
}

.boxs>.box {
    width: calc((100% - var(--boxs-gap))/2);
}

.boxs>.box:last-child:nth-child(odd) {
    width: 100%;
}

.boxs>.box_small {
    width: calc((100% - (var(--boxs-gap) * 3)) / 4);
}

.boxs>.box_large {
    width: 100%;
}


.box-texts {
    justify-content: center;
    height: 100%;
    margin: 0;
}

.box-bnr {
    border-radius: 12px;
    width: 88%;
    margin: 0 auto;
    overflow: hidden;
}

.box-card {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.box-card_img {
    width: 100%;
}

.box-card_text {
    width: 100%;
    padding: 8px;
    text-align: center;
}

.box-card_name {
    font-weight: bold;
}

.box-card_txt {}


@media screen and (max-width:767px) {
    .boxs {
        flex-direction: column;
    }

    .boxs>.box {
        width: 100%;
        margin: 0 auto;
    }

    .boxs-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .boxs-grid_small {
        grid-template-columns: repeat(2, 1fr);
    }
}




.wide {
    width: 100%;
}

/*---------------------------------form---------------------------------*/

.form_article {
    width: 480px;
    max-width: 88%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.form_article_inner {
    margin: 62px auto;
    width: 88%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.form_article_title {}

form.h-adr {
    width: 88%;
    margin: 0 auto;
}


.form-gradual .form_content:not(.active) {
    display: none;
}

.form-gradual .link-prev {
    padding: 0;
    border: none;
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 0;
    font-weight: normal;
    font-size: 0.9rem;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
}

.form-gradual .link-prev:hover {
    text-decoration: underline;
}

.form-gradual .link-prev::before {
    position: static;
    transform: rotate(-135deg);
}

.form-gradual .btns:not(:last-child) {
    margin-bottom: 12px;
}


.form_item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    flex-wrap: wrap;
    margin: 12px 0 0;
}

.form_item label {}

.form_item:not(:has(.optional))>label::after {
    content: "必須";
    color: #ff0000;
    font-size: 0.8rem;
    margin-left: 4px;
}

.form_item_body {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
}

.form_item_body:has(> input:nth-child(2), > select:nth-child(2)) input {
    width: calc((100% - 6px) / 2);
}

.form_item_text {
    width: 100%;
    display: block;
}

input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin: 0 5px;
}

.form_item_body:not(:has(> .select_wrap:nth-child(2))) .select_wrap {
    width: 100%;
}

.btn-submit:disabled,
.btn-next:disabled {
    opacity: 0.5;
    filter: grayscale(1);
    cursor: not-allowed;
}

.form_article.form-sended {
    background-color: #ccc;
}

.form_article.form-sended .h-adr,
.form_article.form-sended .h-adr * {
    pointer-events: none;
    filter: grayscale(1);
    background-color: #ccc;
    opacity: 0.8;
}

.form_article.form-sended .btn-submit {
    display: none;
}


.form_sendedPopup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.form_sendedPopup_inner {
    width: 88%;
    max-width: 1200px;
    margin: 24px auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.form_sendedPopup_inner h3 {
    margin: 0;
}

.form_sendedPopup_inner p {
    margin: 0;
    white-space: pre-line;
}

.form_article:not(.form-sended) .form_sendedPopup {
    display: none;
}

.form_message {
    white-space: pre-line;
}

.form_message:not(.show) {
    display: none;
}

@media screen and (max-width: 767px) {
    .form_article {
        width: 100%;
        max-width: 100%;
    }
}


/*---------------------------------footer---------------------------------*/

.footer {
    width: 100%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 62px;
}

.footer_inner {
    width: 88%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}