@charset "UTF-8";

*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: none;
  font-size: 62.5%;
}
body {
  line-height: 1.6;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 1.6rem;
}
@media(max-width: 768px){
    body {
    font-size: 1.5rem;
    }
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
  vertical-align: middle;
}
input, button, textarea, select {
  font: inherit;
}
ul {
    list-style: none;
}
a {
    color: var(--black);
    text-decoration: none;
}
:root {
    --green: #289e96;
    --orange: #ff831f;
    --black: #333;
    --white: #fff;
    --beige: #f3f1e9;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.pc_inline {
    display: block;
}
.sp_inline {
    display: inline;
}
@media (max-width: 768px){
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .pc_inline {
        display: inline;
    }
    .sp_inline {
        display: block;
}
}
/*---共通タイトル---*/
.common_tit {
    margin-bottom: 50px;
}
.common_tit h3 {
    font-size: 3.1rem;
    position: relative;
    font-weight: 600;
}
.common_tit h3::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    background: var(--black);
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
}
.common_tit_en {
    font-size: 2rem;
    font-family: "Garamond", "Apple Garamond", "Baskerville", "Times New Roman", serif;
    color: var(--green);
    margin-bottom: 20px;
    display: block;
}
.common_tit p {
    margin-top: 60px;
}
.common_inner {
    max-width: 1200px;
    margin: 0 auto;
}
.common_tit_g {
    font-size: 2rem;
    font-weight: 600;
    color: var(--green);
}
@media (max-width: 1300px){
    .common_inner {
        padding: 0 50px;
    }
}
@media (max-width: 768px){
    .common_inner {
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }
    .common_tit h3 {
        font-size: 2rem;
        position: relative;
        font-weight: bold;
    }
    .common_tit h3::before {
        width: 45px;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
    .common_tit_en {
        font-size: 1.6rem;
    }
    .common_tit p {
        margin-top: 5rem;
    }
    .common_tit_g {
        font-size: 1.8rem;
        font-weight: bold;
    }
}
/*---フェード---*/
.fade li {
    opacity: 0;
    transition: 1s;
}
.fade li.on {
    opacity: 1;
}
.fontFade span {
    opacity: 0;
    transition: .5s;
}
.fontFade span.on {
    opacity: 1;
}
.fadeSingles {
    opacity: 0;
    transition: .5s;
}
.fadeSingles.on {
    opacity: 1;
}
/*---追従ボタン---*/
.fixedButton {
    position: fixed;
    right:0;
    bottom: 20%;
    z-index:100;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.fixedButton.on {
    opacity: 1;
    visibility: visible;
}
.fixedButton span {
    background: rgba(255 255 255 / .9);
    color: var(--orange);
    padding: 6px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    border-radius: 2px;
}
.fixedButton a {
    background: var(--orange);
    padding: 20px;
    writing-mode: vertical-rl;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    line-height: 1;
    border-radius: 7px 0 0 7px;
    box-shadow: -7px 7px 10px 1px rgba(0 0 0 / .1);
}
.fixedButtonTel {
    position: fixed;
    background: #434343;
    width: 30%;
    line-height: 1.2;
    padding: 14px 10px;
    font-size: 1.4rem;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    right: 0;
    bottom: 0;
    z-index: 100;
}
.fixedButtonTop {
    position: fixed;
    background: #434343;
    right: 10px;
    bottom: 80px;
    width: 45px;
    height: 45px;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
}
.fixedButtonTop.on {
    opacity: .8;
    visibility: visible;
}
.fixedButtonTop a {
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -2px;
}
.fixedButtonTop a:hover {
    opacity: 1;
}
.fixedButtonTop img {
    width: 20px;
}
@media (max-width: 768px){
    .fixedButton {
        position: fixed;
        left:0;
        right: auto;
        bottom: 0;
        z-index:100;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        width: 70%;
    }
    .fixedButton::before {
        position: absolute;
        content: "";
        background: url(../img/lp2026-fixednav-mail.svg) no-repeat center right;
        background-size: contain;
        width: 28px;
        height: 19px;
        right: 7px;
        top: 50%;
        transform: translateY(-50%);
        opacity: .6;
    }
    .fixedButton span {
        padding: 6px;
        margin-bottom: 0;
        margin-right: 6px;
    }
    .fixedButton a {
        padding: 5px 10px;
        writing-mode: horizontal-tb;
        width: 100%;
        height: 100%;
        padding-right: 30px;
        justify-content: left;
        border-radius: 0;
    }
    .fixedButtonTel.on {
        opacity: 1;
        visibility: visible;
    }
    .fixedButtonTel::before {
        position: absolute;
        content: "";
        background: url(../img/lp2026-fixednav-tel.svg) no-repeat center right;
        background-size: contain;
        width: 23px;
        height: 23px;
        right: 7px;
        top: 50%;
        transform: translateY(-50%);
        opacity: .6;
    }  
    .fixedButtonTel a {
        color: #fff;
        width: 100%;
        height: 100%;
    }
}
/*---ヘッダー---*/
header .header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px;
    position: relative;
}
header .header_inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 5px;
    background: var(--black);
    top: 0;
    left: 0;
}
header .header_inner .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
}
header .header_inner .logo img {
    max-width: 60px;
    height: auto;
}
header .header_inner .logo_text img {
    max-width: 270px;
    height: auto;
}
header .header_inner .logo h1 {
    font-size: 1.2rem;
    margin-top: 5px;
    font-weight: 400;
}
header .header_inner nav {
    display: flex;
    justify-content: center;
    align-items: center;
}
header .header_inner nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
header .header_inner nav li a {
    padding: 15px;
    display: block;
    font-size: 1.5rem;
    position: relative;
    transition: .3s;
    line-height: 1.3;
}
header .header_inner nav li a:hover {
    color: var(--green);
}
header .header_inner nav li a:hover::before {
    opacity: 1;
    width: calc(100% - 40px);
}
header .header_inner nav > a {
    font-size: 1.4rem;
    background: var(--green);
    padding: 19px 20px 21px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-left: 20px;
    transition: .3s;
    line-height: 1.3;
    border-radius: 7px;
}
header .header_inner nav > a span {
    white-space: nowrap;
    display: inline-block;
}
header .header_inner nav > a span:first-child {
    margin-right: 5px;
}
header .header_inner nav > a:hover {
    opacity: .8;
}
header .spNav {
    display: none;
}
@media(max-width: 1024px) {
    header .header_inner nav > a {
        flex-direction: column;
    }
    header .header_inner nav > a span {
        display: block;
        white-space: nowrap;
    }
    header .header_inner nav > a span:first-child {
        margin-right: 0;
    }
    header .header_inner {
        padding: 20px;
    }
    header .header_inner nav li a {
        padding: 10px;
    }
    header .header_inner .logo {
        gap: 10px;
    }
    header .header_inner .logo h1 {
        font-size: 1rem;
    }
    header .header_inner .logo img {
        max-width: 38px;
        height: auto;
    }
    header .header_inner .logo_text img {
        max-width: 164px;
        height: auto;
    }
}
@media(max-width: 768px) {
    header .header_inner {
        padding: 18px 12px 15px 12px;
    }
    /*---スマホナビ---*/
    header .header_inner nav {
        background: rgba(255 255 255 / .9);
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 300;
        width: 200px;
        transition: .2s;
        transform: translateX(100%);
        opacity: 0;
        padding-top: 80px;
        padding-bottom: 20px;
        border-radius: 0 0 0 7px;
    }
    header .header_inner nav.on {
        transform: translateX(0);
        opacity: 1;
    }
    header .header_inner nav ul {
        flex-direction: column;
    }
    header .header_inner nav a {
        display: none;
    }
    header .header_inner nav li a {
        padding: 16px;
    }
    header .header_inner nav li a::before {
        position: absolute;
        content: "";
        width: 100px;
        height: 1px;
        background: #ccc;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
    }
    header .header_inner nav li a:hover::before {
        width: 100px;
    }
    header .spNav {
        width: 34px;
        height: 34px;
        position: fixed;
        top: 27px;
        right: 15px;
        z-index: 400;
        background: rgba(255 255 255 / .8);
        display: block;
        border-radius: 3px;
    }
    header .spNav span {
        display: block;
        width: 80%;
        height: 2px;
        background: #333;
        position: absolute;
        inset: 0;
        margin: auto;
        transition: .3s;
    }
    header .spNav span:nth-child(1) {
        transform: rotate(0);
        inset: -10px 0 0 0;
    }
    header .spNav.on span:nth-child(1) {
        transform: rotate(45deg);
        inset: 0;
    }
    header .spNav.on span:nth-child(2) {
        opacity: 0;
    }
    header .spNav span:nth-child(3) {
        transform: rotate(0);
        inset: 0 0 -10px 0;
    }
    header .spNav.on span:nth-child(3) {
        transform: rotate(-45deg);
        inset: 0;
    }
}
/*---メインビジュアル---*/
.main_visual {
    position: relative;
    height: 75vh;
}
.main_visual img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    animation: main_img forwards 1s;
    opacity: 0;
}
@keyframes main_img {
    0% {
        opacity: 0;
    } 100% {
        opacity: 1;
    }
}
.main_visual_tit {
    position: absolute;
    top: 0;
    right: 15%;
    width: fit-content;
    height: 100%;
    background: rgba(255 255 255 / .9);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: main_tit forwards 1s;
    animation-delay: .2s;
    opacity: 0;
}
@keyframes main_tit {
    0% {
        opacity: 0;
    } 100% {
        opacity: 1;
    }
}
.main_visual_tit .main_visual_tit_t {
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-feature-settings: "palt";
    letter-spacing: 0.07em;
    font-weight: 600;
}
.main_visual_tit .main_visual_tit_stit {
    font-size: 1.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.main_visual_tit .main_visual_tit_stit span {
    position: relative;
    padding-right: 28px;
}
.main_visual_tit .main_visual_tit_stit span:not(:last-child):before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #999;
    right: 14px;
    top: 0;
}
.main_visual_tit_box p {
    font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-feature-settings: "palt";
    letter-spacing: 0.08em;
    line-height: 1.8;
    font-size: 1.5rem;
}
.main_visual_tit_box a {
    padding: 18px 22px;
    background: var(--orange);
    color: #fff;
    display: flex;
    margin-top: 20px;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border-radius: 7px;
}
.main_visual_tit_box a:hover {
    opacity: .8;
}
.main_visual_tit_box a span {
    background: rgba(255 255 255 / .9);
    color: var(--orange);
    padding: 5px 6px 6px 6px;
    font-weight: 600;
    display: block;
    margin-right: 10px;
    border-radius: 4px;
    line-height: 1;
    font-size: 1.7rem;
}
@media (max-width: 768px){
    .main_visual {
        height: auto;
    }
    .main_visual img {
        height: auto;
    }
    .main_visual_tit {
        position: static;
        padding: 30px 30px 0;
        margin: 0 auto;
        background: none;
    }
    .main_visual_tit .main_visual_tit_t {
        margin-bottom: 40px;
        position: absolute;
        top: 30px;
        left: 30px;
        font-size: 2rem;
        color: #fff;
        font-weight: bold;
    }
    .main_visual_tit .main_visual_tit_stit {
        font-size: 1.6rem;
        font-weight: bold;
    }
    .main_visual_tit_box {
        text-align: center;
    }
    .main_visual_tit_box a {
        padding: 18px 30px 19px 30px;
        font-size: 1.8rem;
        margin-right: auto;
        margin-left: auto;
        width: fit-content;
    }
    .main_visual_tit_box a span {
        padding: 5px;
        font-size: 1.5rem;
    }
}
/*---悩み---*/
.nayami {
    background: url(../img/lp2026-nayami-p.jpg) no-repeat bottom right;
    background-size: 60%;
    text-align: center;
    padding: 100px 0;
}
.nayami_inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 1300px){
    .nayami_inner {
        padding: 0 50px;
    }
}
.nayami h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 600;
}
.nayami ul {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.nayami li {
    background: rgba(40, 158, 150, 0.87);
    padding: 29px 30px 32px;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
    width: calc((100% - 60px) / 3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.nayami p {
    margin-bottom: 50px;
}
@media (max-width: 768px){
    .nayami {
        padding: 320px 0 50px 0;
        margin-top: -70px;
        background: url(../img/lp2026-nayami-psp.jpg) no-repeat top right;
        background-size: 90%;
    }
    .nayami h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        font-weight: bold;
    }
    .nayami_inner {
        width: 70%;
        margin: 0 auto;
        padding: 0 20px;
    }
    .nayami ul {
        flex-direction: column;
        gap: 15px;
    }
    .nayami li {
        width: 100%;
        font-size: 1.6rem;
        line-height: 1.7;
        padding: 25px 28px 28px 28px;
    }
    .nayami p {
        margin-bottom: 30px;
    }
}
@media (max-width: 500px){
    .nayami {
        padding: 200px 0 50px 0;
    }
    .nayami_inner {
        width: 96%;
    }
}
@media (max-width: 500px){
    .nayami {
        padding: 200px 0 50px 0;
    }
}
/*---解決---*/
.kaiketsu {
    background: url(../img/lp2026-kaiketsu-back.jpg) no-repeat top left #f3f1e9;
    text-align: center;
    padding: 100px 0;
}
.kaiketsu .common_tit_g {
    margin-bottom: 10px;
}
.kaiketsu h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 600;
}
.kaiketsu_stit {
    margin-bottom: 50px;
}
.kaiketsu ul {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.kaiketsu li {
    width: calc((100% - 60px) / 3);
}
.kaiketsu li h3 {
    font-size: 2.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--green);
    text-align: left;
    font-weight: 600;
}
.kaiketsu li .stit {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
    margin-left: 40px;
    width: fit-content;
    display: flex;
    align-items: center;
}
.kaiketsu li .stit::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    background: #666;
    top: 50%;
    left: -40px
}
.kaiketsu_text {
    text-align: left;
    letter-spacing: 0.08em;
    line-height: 1.8;
    font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
@media (max-width: 768px){
    .kaiketsu {
        padding: 50px 0;
    }
    .kaiketsu h2 {
        font-weight: bold;
    }
    .kaiketsu .common_inner > h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .kaiketsu_stit {
        margin-bottom: 30px;
    }
    .kaiketsu ul {
        flex-direction: column;
        gap: 50px;
    }
    .kaiketsu li {
        width: 100%;
    }
    .kaiketsu li h3 {
        font-size: 1.8rem;
        margin-top: 20px;
        font-weight: bold;
    }
    .kaiketsu li .stit {
        font-size: 1.6rem;
        margin-top: 15px;
    }
}
/*---ストーリー---*/
.story {
    text-align: center;
    padding: 100px 0;
}
.story_box {
    position: relative;
}
.story_box .photo img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}
.story_text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    max-width: 1200px;
    width: 100%;
}
.story_text h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    width: fit-content;
    padding: 5px 15px;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
}
.story_text h5 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--green);
    font-weight: 600;
}
.story_text p {
     font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.story_text_inner {
    background: rgba(255 255 255 / .95);
    width: 70%;
    text-align: left;
    padding: 50px 50px 70px;
    border-radius: 7px 7px 0 0;
}
@media (max-width: 768px) {
    .story {
        padding: 50px 0;
    }
    .story_box .photo img {
        height: 100%;
        width: 100%;
    }
    .story_text {
        position: static;
        transform: translateX(0);
    }
    .story_text h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .story_text h5 {
        font-size: 1.8rem;
        font-weight: bold;
    }
    .story_text_inner {
        background: rgba(255 255 255 / .95);
        width: 100%;
        text-align: left;
        padding: 40px 40px 50px;
    }
}
/*---専門プロデュースだからできること---*/
.produce {
    text-align: center;
    padding: 100px 0;
    background: var(--beige);
}
@media(max-width:768px){
    .produce {
            padding: 50px 0;
    }
}
/*---専門プロデュースだからできることテーブル---*/
.produce table {
    width: 100%;
    margin-bottom: 70px;
    border-collapse: collapse;
    border-spacing: 0;
}
.produce th {
    font-weight: 400;
}
.produce thead th {
    font-weight: 600;
}
.produce thead th:nth-child(2) {
    background: var(--green);
    color: #fff;
    padding: 20px;
    font-size: 2.2rem;
    border-radius: 7px 7px 0 0;
}
.produce thead th:nth-child(3) {
    vertical-align: bottom;
}
.produce thead th:nth-child(3) span {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px;
    background:#e8e8e8;
    color: #838383;
}
.produce td {
    padding: 20px;
    border: #ddd 1px solid;
    background: #fff;
}
.produce tbody th {
    border: #ddd 1px solid;
    background: #faf9f6;
    padding: 20px;
}
.produce .produce_tb_fontl {
    font-size: 2rem;
    color: var(--green);
    font-weight: 600;
    padding: 0 3px;
}
@media(max-width:768px){
    .produce thead th:nth-child(2) {
        padding: 10px;
        font-size: 1.5rem;
        line-height: 1.2;
    }
    .produce thead th:nth-child(3) span {
        font-size: 1.3rem;
        padding: 6px;
        line-height: 1.4;
    }
    .produce td {
        padding: 16px 8px;
        font-size: 1.5rem;
        font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
        line-height: 1.4;
    }
    .produce td:last-child {
        font-size: 1.3rem;
    }
    .produce tbody th {
        padding: 16px 8px;
        font-size: 1.3rem;
        font-weight: normal;
        line-height: 1.4;
        font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    }
    .produce th {
        font-size: 1.5rem;
    }
    .produce .produce_tb_fontl {
        font-size: 1.7rem;
        font-weight: bold;
    }
}
@media(max-width:500px){
    .produce td {
        padding: 13px 8px;
    }
    .produce td:last-child {
        font-size: 1.3rem;
    }
    .produce tbody th {
        padding: 13px 8px;
    }
}
/*---専門プロデュースだからできることホテル---*/
.produce_hotel .produce_hotel_stit {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.produce_hotel ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 30px;
}
.produce_hotel li {
    border: 1px solid #e2dfd3;
    background: #faf9f6;
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 7px;
}
.produce_hotel span {
    display: block;
}
.produce_hotel .hotel_ja {
    font-size: 1.7rem;
    line-height: 1.4;
}
.produce_hotel .hotel_en {
    font-size: 1.4rem;
    color: var(--green);
    font-family: "Garamond", "Apple Garamond", "Baskerville", "Times New Roman", serif;
    line-height: 1.2;
    margin-top: 3px;
}
.produce_hotel_other {
    font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
@media(max-width: 768px){
    .produce_hotel .produce_hotel_stit {
        font-size: 1.8rem;
        margin-bottom: 10px;
        font-weight: bold;
    }
    .produce_hotel ul {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        align-items: stretch;
        gap: 10px;
        margin-top: 30px;
    }
    .produce_hotel li {
        padding: 12px 8px;
    }
    .produce_hotel .hotel_ja {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .produce_hotel .hotel_en {
        font-size: 1.3rem;
    }
}
/*---専門プロデュースだからできること価格---*/
.produce_price .produce_price_stit {
    font-size: 2.2rem;
    margin-bottom: 40px;
    margin-top: 70px;
    font-weight: 600;
}
.produce_price ul {
    display: flex;
    gap: 30px;
}
.produce_price li {
    width: calc((100% - 60px) / 3);
}
.produce_price li .produce_price_num {
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--green);
    display: block;
}
.produce_price li .produce_price_detail {
    font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
@media(max-width: 768px){
    .produce_price .produce_price_stit {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: bold;
    }
    .produce_price ul {
        display: flex;
        flex-direction: column;
    }
    .produce_price li {
        width: 100%;
    }
    .produce_price li .produce_price_num {
        font-size: 1.8rem;
        margin-bottom: 5px;
        font-weight: bold;
    }
}
/*---スケジュール---*/
.schedule {
    text-align: center;
    padding: 100px 0;
}
.schedule ul {
    display: flex;
    gap: 40px
}
.schedule li {
    width: calc((100% - 90px) / 3);
    position: relative;
    text-align: left;
}
.schedule li p {
    font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.schedule_step {
    background: var(--green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: absolute;
    top: -20px;
    left: -20px;
    color: #fff;
    width: 60px;
    height: 60px;
    padding: 13px;
    letter-spacing: 0.05em;
}
.schedule li::before {
    content: "";
    background: url(../img/lp2026-schdule-allow.svg) no-repeat top left;
    background-size: 60%;
    width: 18px;
    height: 32px;
    top: 40%;
    right: -29px;
    transform: translateY(-50%);
    position: absolute;
}
.schedule li:last-child::before {
    content: none;
}
.schedule_step span {
    display: block;
    font-family: "Garamond", "Apple Garamond", "Baskerville", "Times New Roman", serif;
    font-style: italic;
}
.schedule h4 {
    font-size: 2.2rem;
    margin: 10px 0;
    color: var(--green);
    font-weight: 600;
}
.schedule_step01 {
    font-size: 1.4rem;
    line-height: 1;
}
.schedule_step02 {
    font-size: 3.5rem;
    line-height: 1;
}
@media(max-width: 768px){
    .schedule {
        padding: 50px 0;
    }
    .schedule ul {
        display: flex;
        flex-direction: column;
        gap: 60px
    }
    .schedule li {
        width: 100%;
    }
    .schedule_step {
        top: -20px;
        left: -15px;
        width: 58px;
        height: 58px;
    }
    .schedule li::before {
        top: auto;
        bottom: -50px;
        right: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
    .schedule h4 {
        font-size: 1.8rem;
        margin: 10px 0;
        font-weight: bold;
    }
    .schedule_step01 {
        font-size: 1.3rem;
        line-height: 1;
    }
    .schedule_step02 {
        font-size: 3.4rem;
        line-height: 1;
    }
}
/*---よくあるご質問---*/
.faq {
    text-align: center;
    padding: 100px 0;
    background: var(--beige);
}
.faq_open_inner {
    padding: 15px;
    display: flex;
}
.faq .faq_tit {
    background: #fff;
    width: 100%;
    padding: 20px 15px;
    text-align: left;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 1.8rem;
    border-radius: 7px;
}
.faq .faq_tit::before {
    position: absolute;
    content: "";
    width: 28px;
    height: 2px;
    background: #ccc;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.faq .faq_tit::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 28px;
    background: #ccc;
    right: 28px;
    top: 50%;
    transform: translate(50%, -50%);
    transition: .3s;
}
.faq .faq_tit.on::after {
    transform: translate(50%, -50%) rotate(90deg);
}
.faq .faq_tit_qa {
    display: block;
    margin-right: 20px;
    font-size: 2.2rem;
    font-family: "Garamond", "Apple Garamond", "Baskerville", "Times New Roman", serif;
    color: var(--green);
    line-height: 1;
}
.faq li {
    margin-bottom: 20px;
}
.faq_open {
    text-align: left;
    display: flex;
    align-items: flex-start;
    max-height: 0;
    overflow: hidden;
    transition: .5s;
    font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
@media(max-width: 768px){
    .faq {
        padding: 50px 0;
    }
    .faq .faq_tit {
        padding: 15px 35px 15px 15px;
        font-size: 1.6rem;
    }
    .faq .faq_tit::before {
        position: absolute;
        content: "";
        width: 16px;
        height: 2px;
        background: #ccc;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    .faq .faq_tit::after {
        position: absolute;
        content: "";
        width: 2px;
        height: 16px;
        background: #ccc;
        right: 18px;
        top: 50%;
        transform: translate(50%, -50%);
        transition: .3s;
    }
}
/*---無料相談フォーム---*/
.contact {
    text-align: center;
    padding: 100px 0;
}
.contact table {
    width: 100%;
    text-align: left;
    font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.contact .text_red {
    color: #ff0000;
}
.contact th {
    width: 30%;
    font-weight: normal;
    padding: 20px;
}
.contact td {
    width: 70%;
    padding: 20px;
}
.contact input[type=text],.contact input[type=email],.contact input[type=tel],.contact textarea {
    width:100%;
    padding:10px;
    border: 1px solid #ccc;
    background: #efefef;
    border-radius: 7px;
}
.contact input[type=checkbox]{
    accent-color: var(--green);
}
.contact .privacy-policy-text {
    width:100%;
    height: 200px;
    overflow-y: scroll;
    padding: 30px;
    text-align: left;
    border: 1px solid #ccc;
    font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    border-radius: 7px 0 0 7px;
}
.contact .privacy-policy-title {
    font-size: 2rem;
    margin: 50px 0 30px;
    font-weight: 600;
}
.contact .btnArea {
    text-align: center;
}
.contact button[type=button] {
    background: var(--green);
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: .3s;
    border: none;
    cursor: pointer;
    margin: 0 auto;
    border-radius: 7px;
}
.contact button[type=button].disabled {
    background: #ccc;
    cursor: default;
    border-radius: 7px;
}
.contact .checkbox-btns {
    margin: 40px 0;
}
.contact .require {
    background: var(--orange);
    border-radius: 3px;
    padding: 3px 6px;
    color: #fff;
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1;
    margin-left: 10px;
}
.contact .formError .formErrorContent {
    background: none;
    color: #ff0000;
    font-size: 1.5rem;
    width: 100%;
}
.contact .checkbox-label {
    font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
@media(max-width: 768px){
    .contact {
        padding: 50px 0;
    }
    .contact table, 
    .contact tbody, 
    .contact th, 
    .contact td, 
    .contact tr {
        display: block;
        width: 100%;
    }
    .contact th {
        padding: 0 0 10px 0;
    }
    .contact td {
        padding: 0 0 30px 0;
    }
    .contact tr:last-child td:last-child {
        padding: 0;
    }
    .contact .privacy-policy-title {
        font-size: 1.8rem;
        margin: 30px 0 20px;
        font-weight: bold;
    }
    .contact .privacy-policy-text {
        padding: 20px;
    }
}
/*---無料相談フォーム送信完了---*/
.complete {
    margin: 100px 0;
    text-align: center;
}
.complete h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--green);
}
.complete p {
    margin-bottom: 20px;
    font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.complete_image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.complete .back_btn {
    background: var(--green);
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: .3s;
    border: none;
    cursor: pointer;
    margin: 30px auto 0 auto;
    width: fit-content;
    border-radius: 7px;
}
@media (max-width: 768px){
    .complete {
        margin: 40px 0;
    }
    .complete h2 {
        font-size: 1.8rem;
    }
}
/*---フッター---*/
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
}
@media(max-width:768px){
    footer {
        padding: 10px;
    }
}
/*---swiper---*/
.swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    margin: 0 8px !important;
}
.swiper-pagination-bullet-active {
    background: var(--green);
}
.swiper {
    --swiper-navigation-color: rgba(255 255 255 / .7); 
}
@media(max-width:768px){
    .swiper {
        --swiper-navigation-color: var(--green);
    }
    .swiper-button-next,
    .swiper-button-prev {
        --swiper-navigation-size: 20px; 
        width: 20px;
        height: 20px;
        top: auto!important;
        bottom: 35%;
    }
}