@charset "utf-8";
/* CSS Document */
/*===================================
home
===================================*/
.home-mv {
    display: flex;
    flex-wrap: wrap;
    height: auto;
}
.home-mv-box {
    position: relative;
    flex: 1 1 480px;
    height: 50vh;
}
.home-mv-box::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.home-mv-box img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: top right;
    overflow: hidden;
}
.home-mv-text {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 55%;
    left: 50%;
    padding: 4%;
    width: min(375px, 80%);
    color: #fff;
    font-weight: 700;
    z-index: 2;
    border: 3px solid #fff;
    text-align: center;
}
.home-mv-text .TextTyping {
    font-size: .5em;
    font-weight: 500;
    letter-spacing: .5em;
}
.personal-side::after {
    background-color: rgb(0 0 0 / .6);
}
.diet-side::after {
    background-color: rgb(0 0 0 / .6);
}
.home-mv-text .title {
    font-size: clamp(16px, 6vw, 21px);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}
@media (min-width: 960px) {
    .home-mv-box {
        height: 90vh;
        top: 0;
    }
    .diet-side {
        margin-bottom: 0;
    }
    .home-mv-box img {
        height: 90vh;
    }
    .personal-side::after {
        background-color: rgb(255 138 23 / .8);
        transition: .5s all;
    }
    .diet-side::after {
        background-color: rgb(255 42 0 / .8);
        transition: .5s all;
    }
    .personal-side:hover::after {
        background-color: rgb(0 0 0 / .3);
    }
    .diet-side:hover::after {
        background-color: rgb(0 0 0 / .3);
    }
}
/*===================================
MV
===================================*/
.mv {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 50px;
}
.mv figure.img {
    margin-left: auto;
}
.mv-body {
    position: relative;
    z-index: 1;
    margin-top: -60px;
    padding: 4%;
    background: #fff;
}
.mv-body .ttl {
    position: relative;
    font-size: clamp(24px, 6vw, 36px);
    text-align: center;
}
.mv-body .ttl span {
    display: block;
    font-size: .5em;
}
._d_color {
    color: var(--d-main-color);
}
._p_color {
    color: var(--p-main-color);
}
.mv-logo {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.mv-logo .logo, .mv-logo .title {
    filter: drop-shadow(1px 1px 5px #222);
}
.mv-logo .title {
    color: #fff;
    font-size: clamp(21px, 6vw, 36px);
    text-align: center;
}
.mv-logo .title span {
    display: block;
    font-size: .5em;
}
.mv-text-box {
    background: #fff;
    width: 62.5%;
    padding: 80px;
    padding-left: calc((100vw - 1200px) / 2 + 15px);
    z-index: 2;
}
.mv-logo img.logo {
    height: clamp(100px, 6vw, 200px);
    margin: 0 auto;
    object-fit: cover;
}
.mv-ph {
    width: 100%;
}
.mv-ph img {
    height: 80vh;
    object-fit: cover;
}
@media (min-width: 1200px) {
    .mv figure.img {
        margin-top: -200px;
        box-shadow: -10px 10px 25px #ccc;
    }
    .mv-body {
        margin-top: -90px;
        margin-right: 0;
        width: 62.5%;
        padding: 80px;
        padding-left: calc((100vw - 1200px) / 2 + 15px);
    }
    .mv-body .ttl {
        text-align: left;
    }
    .mv-ph picture img {
        max-width: none;
        width: 80%;
        max-height: 940px;
        object-fit: cover;
        object-position: left top;
    }
}
.scrolldown {
    position: absolute;
    bottom: 10%;
    left: 50%;
}
.scrolldown:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    animation:
        circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove {
    0% {
        bottom: 150px;
    }
    100% {
        bottom: -5px;
    }
}
@keyframes cirlemovehide {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}
.scrolldown:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 150px;
    background: #fff;
}
@media (max-width: 768px) {
	.mv-logo img.logo {
		height: clamp(70px, 6vw, 200px);
	}
}
/*===================================
accordion
===================================*/
.accordion {
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
}
.accordion li {
    margin: 10px 0;
    background: #fff;
}
.accordion_box {
    border: 1px solid #222;
}
.accordion_title {
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}
.accordion_title::before, .accordion_title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #333;
}
.accordion_title::before {
    top: 48%;
    transform: rotate(0deg);
}
.accordion_title::after {
    top: 48%;
    transform: rotate(90deg);
}
.accordion_title.close::before {
    transform: rotate(45deg);
}
.accordion_title.close::after {
    transform: rotate(-45deg);
}
.accordion_text {
    display: none;
    background: #f0f0f0;
    margin: 0 3% 3% 3%;
    padding: 3%;
}
/*===================================
form
===================================*/
.form p._describe {
    margin-top: 30px;
    text-align: left;
}
.form ._describe br {
    display: none;
}
.form-item {
    padding: 16px 0;
}
.form-label.is-msg {
    margin-top: 8px;
    margin-bottom: auto;
}
.any, .required {
    border-radius: 6px;
    margin-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 48px;
    display: inline-block;
    text-align: center;
    background: #b90000;
    color: #fff;
    font-size: c 14px;
}
.any {
    background: #545454;
}
.submit-btn, .back-btn {
    padding: 20px 0;
    width: min(100%, 300px);
    display: block;
    letter-spacing: 0.05em;
    background: #222;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    transition: .3s all;
}
.submit-btn:hover, .back-btn:hover {
    background: var(--p-main-color);
    color: #fff;
}
.submit-btn_blue, .back-btn {
    padding: 20px 0;
    width: min(100%, 300px);
    display: block;
    letter-spacing: 0.05em;
    background: #137;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    transition: .3s all;
}
.submit-btn_blue:hover, .back-btn:hover {
    background: var(--p-main-color);
    color: #fff;
}
.back-btn {
    background: #222;
}
.g-recaptcha > div {
    margin: 0 auto;
}
.form #warning {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}
.form-label.is-msg {
    margin-top: 0;
}
.any, .required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
}
.form-btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
}
.form._container {
    width: min(100%, 800px);
    margin: 0 auto;
    padding: 0 4%;
}
.form-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.form-item .date_time {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
.form-label {
    width: 100%;
    font-size: 16px;
    min-height: 0;
    letter-spacing: 0.05em;
    font-weight: bold;
    flex-shrink: 0;
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.form-label span {
    margin-left: 5px;
}
.input-item {
    font-size: 16px;
    border: 1px solid #ddd;
    padding: 5px 1em;
    width: 100%;
    background: #ececec;
    border-radius: 0;
    height: 3em;
}
.form .notes {
    font-size: 16px;
    color: #858585;
    margin-top: 10px;
    text-align: right;
}
.notes-area + * {
    margin-top: 20px;
}
.form-item-textarea {
    font-size: 16px;
    border: 1px solid #ddd;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    height: 200px;
    background: #ececec;
}
@media (min-width: 768px) {
    .form p._describe {
        text-align: center;
    }
    .form ._describe br {
        display: block;
    }
    .form_body {
        padding: 20px;
    }
    .form-item {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    .form-label {
        width: 35%;
        border-right: 1px solid #ccc;
    }
    .form-label span {
        margin-left: auto;
    }
}
.placeholder::before {
    content: attr(placeholder);
    color: rgb(117, 117, 117);
}
.placeholder::-webkit-datetime-edit-fields-wrapper {
    display: none;
}
.placeholder::-webkit-calendar-picker-indicator {
    display: none;
}
/*===================================
confirm
===================================*/
.confirm p br {
    display: none;
}
.confirm-body {
    width: min(100%, 800px);
    margin: 50px auto;
}
@media (min-width: 768px) {
    .confirm p {
        text-align: center;
    }
    .confirm p br {
        display: block;
    }
}
/*===================================
thanks
===================================*/
.thanks p br {
    display: none;
}
@media (min-width: 768px) {
    .thanks p {
        text-align: center;
    }
    .thanks p br {
        display: block;
    }
}
/*===================================
404
===================================*/
.error p {
    text-align: center;
}