@charset "UTF-8";

/*------ reset CSS ------*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: #362928;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*------ common CSS ------*/

html {
    scroll-behavior: smooth;
}

body .wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../images/bg-image.webp);
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
    background-color: #efefec;
    position: relative;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sp-only {
    display: none;
}

/* line-decoration */
.line-deco {
    display: block;
    width: 100%;
    height: 8px;
    background-color: #d2b47e;
    z-index: 999;
}

/* title-large */
.title-l_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.title-l_wrap .title-l-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.title-l_wrap .title-l-sub .icon {
    display: block;
}

.title-l_wrap .title-l-sub .eng {
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.2em;
}

.title-l_wrap .title-l-sub .eng::before {
    content: url(../images/title-deco-left-large.svg);
    display: block;
    width: 56px;
    margin-top: -2px;
}

.title-l_wrap .title-l-sub .eng::after {
    content: url(../images/title-deco-right-large.svg);
    display: block;
    width: 56px;
    margin-top: -2px;
}

.title-l_wrap .title-l_inner {
    border-top: 2px solid #362928;
    border-bottom: 2px solid #362928;
    padding: 3px 0;
}

.title-l_wrap .title-l {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.1em;
    border-top: solid 1px #362928;
    border-bottom: solid 1px #362928;
    padding: 0.3em 2em;
}

.title-l_wrap .title-l .small {
    font-size: 16px;
    letter-spacing: 0;
}

.title-l_wrap p {
    font-size: 14px;
    line-height: 1.4;
    text-indent: -1em;
    padding-left: 1em;
}

/* title-small */
.title-s_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.title-s_wrap .title-s-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.title-s_wrap .title-s-sub .icon {
    display: block;
}

.title-s_wrap .title-s-sub .eng {
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.3em;
}

.title-s_wrap .title-s-sub .eng::before {
    content: url(../images/title-deco-left-small.svg);
    display: block;
    width: 28px;
    margin-top: -2px;
}

.title-s_wrap .title-s-sub .eng::after {
    content: url(../images/title-deco-right-small.svg);
    display: block;
    width: 28px;
    margin-top: -2px;
}

.title-s_wrap .title-s {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.05em;
    border-top: solid 1px #362928;
    border-bottom: solid 1px #362928;
    padding: 0.3em 2em;
}

/* title-mini */
.title-mini {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    border-top: 1px solid #362928;
    border-bottom: 1px solid #362928;
    padding: 0.4em 2em;
}

/* line-background */
.background {
    width: 100%;
    background-color: #fff;
    border: 2px solid #362928;
}

.background .inner {
    border: 1px solid #362928;
    margin: 8px;
    padding: 50px;
}

/* white-background */
.contents .bg {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 40px;
    margin-top: 32px;
}

.contents .bg::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

/*------ CSS ------*/

/* header */

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    max-width: 530px;
    width: 100%;
    margin-top: 100px;
    padding: 0 73px;
}

/* .main-title {
    max-width: 532px;
    width: 100%;
    margin-top: 72px;
    padding: 0 26px;
} */

.main-title img {
    display: block;
    width: 100%;
    height: 100%;
}

nav {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
    padding: 0 40px;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 0.5em;
    border-top: 1px solid #362928;
    border-bottom: 1px solid #362928;
}

nav ul li {
    display: flex;
    align-items: center;
}

nav ul li a {
    display: flex;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.06em;
    align-items: center;
    justify-content: left;
    margin: 1em 0.5em;
    gap: 6px;
    transition: all .3s ease;
}

nav ul li a:hover {
    opacity: 0.5;
}

.nav-icon {
    display: block;
}

.nav-icon.about {
    width: clamp(1.25rem, 1.118rem + 0.563vw, 1.625rem);
}

.nav-icon.merit {
    width: clamp(1.125rem, 1.081rem + 0.188vw, 1.25rem);
}

.nav-icon.profile {
    width: clamp(0.75rem, 0.706rem + 0.188vw, 0.875rem);
}

.nav-icon.voice {
    width: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
}

.nav-icon.schedule {
    width: clamp(0.938rem, 0.871rem + 0.282vw, 1.125rem);
}

.nav-icon.mail {
    width: clamp(0.938rem, 0.893rem + 0.188vw, 1.063rem);
}

/* about */

#about {
    max-width: 900px;
    width: 100%;
    margin-top: 70px;
    padding: 0 24px;
}

#about .icon {
    width: 42px;
    margin-left: 8px;
}

#about .contents {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#about .contents p {
    text-align: justify;
    margin-top: 36px;
}

/* merit */

#merit {
    max-width: 1120px;
    width: 100%;
    margin-top: 62px;
    padding: 0 24px;
}

#merit .icon {
    width: 36px;
}

#merit .contents {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#merit .contents .merit-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 36px;
}

#merit .contents .merit-list li {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: start;
    gap: 0.6em;
    padding: 0.8em;
}

#merit .contents .merit-list li::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background-color: #362928;
    margin-top: 0.5em;
}

#merit .contents .merit-list li .column {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
}

#merit .contents .merit-list li .column span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 400;
}

#merit .contents .recommend .recommend-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    margin-top: 26px;
}

#merit .contents .recommend .recommend-list li {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: center;
    padding: 0.8em;
    border: 1px solid #362928;
    border-right: none;
    border-top: none;
}

#merit .contents .recommend .recommend-list li:nth-child(-n+2) {
    border-top: 1px solid #362928;
}

#merit .contents .recommend .recommend-list li:nth-child(even) {
    border-right: 1px solid #362928;
}

/* about-video */
.about-video {
    max-width: 1120px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px;
    padding: 0 24px;
}

.about-video video {
    max-width: 600px;
    width: 100%;
    aspect-ratio: 16 / 9;
}

/* profile */
#profile {
    max-width: 1120px;
    width: 100%;
    margin-top: 70px;
    padding: 0 24px;
}

#profile .icon {
    width: 19px;
}

#profile .contents {
    width: 100%;
    margin-top: 52px;
}

#profile .contents .profile_wrap {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 40px;
}

#profile .contents .profile_wrap .image_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 230px;
}

#profile .contents .profile_wrap .image_box img {
    display: block;
    width: 100%;
}

#profile .contents .profile_wrap .image_box .word {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #362928;
    margin-top: 20px;
    padding: 8px;
}

#profile .contents .profile_wrap .image_box .word h3 {
    width: 100%;
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    border-bottom: 1px solid #362928;
    padding-bottom: 8px;
}

#profile .contents .profile_wrap .image_box .word img {
    width: 88px;
    margin-top: 8px;
}

#profile .contents .profile_wrap .text_box .name {
    display: flex;
    flex-direction: column;
    align-items: start;
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1;
    gap: 8px;
}

#profile .contents .profile_wrap .text_box .name .eng {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.15em;
}

#profile .contents .profile_wrap .text_box .timeline {
    width: 100%;
    display: grid;
    grid-template-columns: 64px 1fr;
    font-size: 14px;
    text-align: justify;
    line-height: 1.6;
    border-top: 1px solid #362928;
    border-bottom: 1px solid #362928;
    padding: 1.8em 0;
    margin-top: 18px;
    column-gap: 0.5em;
    row-gap: 1em;
}

#profile .contents .profile_wrap .text_box .insta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
}

#profile .contents .profile_wrap .text_box .insta img {
    display: block;
    width: 36px;
}

#profile .contents .profile_wrap .text_box .insta p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

#profile .contents .profile_wrap .text_box .insta a {
    transition: all .3s ease;
    flex-shrink: 0;
}

#profile .contents .profile_wrap .text_box .insta a:hover {
    opacity: 0.5;
}

/* voice */

#voice {
    max-width: 1120px;
    width: 100%;
    margin-top: 70px;
    padding: 0 24px;
}

#voice .icon {
    width: 25px;
}

#voice .contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

#voice .contents .item {
    width: 100%;
    display: flex;
    align-items: start;
    border-top: 1px solid #362928;
    padding-top: 40px;
    gap: 40px;
}

#voice .contents .item:first-child {
    border-top: none;
    padding-top: 0;
}

#voice .contents .item .image_box {
    max-width: 230px;
    width: 100%;
}

#voice .contents .item .image_box img {
    width: 100%;
    height: 100%;
}

#voice .contents .item .text_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

#voice .contents .item .text_box .name_box {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#voice .contents .item .text_box .name_box .job-position {
    display: flex;
    flex-direction: column;
    align-items: start;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
    gap: 4px;
}

#voice .contents .item .text_box .name_box .name {
    display: flex;
    flex-direction: column;
    align-items: start;
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1;
    gap: 4px;
    margin-top: 14px;
}

#voice .contents .item .text_box .name .eng {
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    letter-spacing: 0.15em;
}

#voice .contents .item .text_box .sub-text {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: justify;
    margin-top: 12px;
}

#voice .contents .item .text_box .main-text {
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: justify;
    border-top: 1px solid #362928;
    padding: 1em 0 0;
    margin-top: 1em;
}

/* yoichi-camp */

#yoichi-camp {
    max-width: 1120px;
    width: 100%;
    margin-top: 70px;
    padding: 0 24px;
}

#yoichi-camp .contents .video_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#yoichi-camp .contents .video_box video {
    max-width: 600px;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 24px;
}

#yoichi-camp .contents .video_box p {
    font-size: 14px;
    margin-top: 12px;
    font-weight: 600;
    line-height: 1.4;
}

#yoichi-camp .contents .refund {
    margin-top: 32px;
}

#yoichi-camp .contents .refund .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#yoichi-camp .contents .refund .title_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    line-height: 1.4;
    gap: 6px;
    border-bottom: 1px solid #362928;
    padding: 6px 18px;
}

#yoichi-camp .contents .refund .title_wrap .sub-text {
    font-size: 14px;
    line-height: 1;
    background-color: #362928;
    color: #fff;
    padding: 0.4em 0.5em;
}

#yoichi-camp .contents .refund .title_wrap .main-text {
    font-size: 20px;
    letter-spacing: 0.08em;
}

#yoichi-camp .contents .refund .text {
    margin-top: 20px;
    text-align: justify;
}

#yoichi-camp .contents .refund .text .red-bold {
    color: #a02828;
    font-weight: 700;
}

/* schedule */

#schedule {
    max-width: 1120px;
    width: 100%;
    margin-top: 62px;
    padding: 0 24px;
}

#schedule .icon {
    width: 36px;
}

#schedule .contents {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#schedule .contents .times-text {
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin-top: 0.5em;
}

#schedule .contents .note {
    font-size: 14px;
    line-height: 1.4;
    text-indent: -1em;
    padding-left: 1em;
    margin-top: 0.5em;
}

/* schedule_list */

#schedule .contents .list_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1.25em;
}

#schedule .contents .list_wrap .list {
    width: 100%;
    display: grid;
    align-items: center;
}

#schedule .contents .lecture .list_wrap .list {
    grid-template-columns: 104px 1fr;
}

#schedule .contents .consul .list_wrap .list {
    grid-template-columns: 180px 1fr;
}

#schedule .contents .list_wrap .list dt,
#schedule .contents .list_wrap .list dd {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.4;
    border: 1px solid #362928;
}

#schedule .contents .list_wrap .list dt {
    color: #d2b47e;
    background-color: #362928;
    justify-content: center;
    border-top: 1px solid #6f5f57;
}

#schedule .contents .list_wrap .list dd {
    border-top: none;
}

#schedule .contents .list_wrap .list dt:first-of-type {
    border-top: none;
}

#schedule .contents .list_wrap .list dd:first-of-type {
    border-top: 1px solid #362922;
}

/* contents-detail*/

.contents .detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
}

.contents .detail .text_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contents .detail .text_box p {
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.contents .detail .image_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
    gap: 14px;
}

.contents .detail .image_box video {
    max-width: 600px;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.contents .detail .image_box p {
    font-weight: 600;
}



/* contact */

#contact {
    max-width: 788px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    margin-top: 70px;
}

#contact .icon {
    width: 26px;
}

#contact .text {
    width: 100%;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.4;
    border: 1px solid #362928;
    background-color: #fff;
    padding: 1em 1.5em;
    margin-top: 40px;
}

#contact .text .underline {
    display: inline;
    background: linear-gradient(transparent 94%, #b58c64 0%);
    padding-bottom: 0.1em;
}

form {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    margin-top: 40px;
}

form dl {
    width: 100%;
    display: grid;
    grid-template-columns: 214px 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 36px;
}

form dt {
    margin-top: 0.6em;
}

form dt label {
    display: flex;
    align-items: center;
    justify-content: start;
    font-weight: 500;
}

form dt .required {
    background-color: #a02828;
    color: #fff;
    font-size: 12px;
    padding: 0.35em 1em;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 600;
    border-radius: 2px;
    margin-right: 0.6em;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: 100% !important;
    padding: 0.5em;
    border: 1px solid #b4b4b4;
    border-radius: 4px;
    resize: vertical;
}

input[type="number"] {
    text-align: left !important;
}

textarea {
    height: auto !important;
}

.visually-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

form .agree {
    max-width: 280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 36px;
}

form .agree label {
    display: flex;
    align-items: start;
    line-height: 1;
}

form .agree label input {
    margin-right: 8px;
}

form .agree label a {
    border-bottom: 1px solid #362928;
    transition: all .3s ease;
    font-weight: 500;
}

form .agree label a:hover {
    opacity: 0.5;
}

form .submit {
    width: 100%;
    display: flex;
    justify-content: center;
}

form .submit button {
    border: 2px solid #362928;
    max-width: 280px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #362928;
    padding: 1em;
    background-color: #fff;
    transition: all .3s ease;
}

form .submit button:hover {
    background-color: #d2b47e;
}

/* footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1140px;
    padding: 0 40px;
    margin: 0 auto;
    margin-top: 106px;
    margin-bottom: 80px;
}

#company {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #362928;
    gap: 16px;
    padding-bottom: 26px;
}

#company h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
}

#company span {
    letter-spacing: 0.08em;
}

.copyright {
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-top: 26px;
}

/*------ THANKS CSS ------*/
#thanks {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 48px;
    margin-top: 60px;
}

#thanks h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-align: center;
}

#thanks p {
    margin-top: 24px;
    line-height: 1.8;
    text-align: justify;
}

#thanks .go-top-btn {
    max-width: 280px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
    border: 2px solid #362922;
    background-color: #fff;
    padding: 0.8em 2.4em;
    margin-top: 48px;
    transition: all .3s ease;
}

#thanks .go-top-btn:hover {
    background-color: #d2b47e;
}


/*------ responsive CSS ------*/

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

    .sp-only {
        display: block;
    }

    .line-deco {
        height: 6px;
    }

    /* title-large */
    .title-l_wrap .title-l-sub .eng {
        font-size: 14px;
    }

    .title-l_wrap .title-l-sub .eng::before {
        width: 40px;
    }

    .title-l_wrap .title-l-sub .eng::after {
        width: 40px;
    }

    .title-l_wrap .title-l {
        font-size: 18px;
    }

    .title-l_wrap p {
        font-size: 12px;
    }

    /* title-small */
    .title-s_wrap {
        gap: 8px;
    }

    .title-s_wrap .title-s-sub {
        gap: 8px;
    }

    .title-s_wrap .title-s-sub .eng {
        font-size: 14px;
    }

    .title-s_wrap .title-s-sub .eng::before {
        width: 24px;
    }

    .title-s_wrap .title-s-sub .eng::after {
        width: 24px;
    }

    .title-s_wrap .title-s {
        font-size: 18px;
    }

    /* title-mini */
    .title-mini {
        font-size: 16px;
    }

    /* line-background */
    .background .inner {
        margin: 6px;
        padding: 20px;
    }

    header {
        max-width: 600px;
    }

    .main-title {
        margin-top: 60px;
        max-width: 460px;
    }

    nav {
        padding: 0;
        margin-top: 40px;
    }

    nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-top: none;
        border-bottom: none;
        gap: 0;
    }

    nav ul li {
        border-bottom: 1px solid #362928;
    }

    nav ul li:nth-child(odd) {
        border-right: 1px solid #362928;
    }

    nav ul li:nth-child(-n+2) {
        border-top: 1px solid #362928;
    }

    nav ul a {
        width: 100%;
        margin: 0 !important;
        padding: 0.8em;
    }

    .nav-icon_wrap {
        display: flex;
        justify-content: center;
        width: 13%;
    }

    .nav-icon.about {
        transform: translateX(2px);
    }

    .nav-icon.merit {
        transform: translateX(2px);
    }

    .nav-text {
        width: 87%;
    }

    main {
        max-width: 600px;
    }

    /* about */

    #about {
        margin-top: 40px;
    }

    #about .icon {
        width: 30px;
    }

    #about .contents p {
        font-size: 14px;
        margin-top: 24px;
    }

    /* merit */

    #merit {
        margin-top: 26px;
    }

    #merit .icon {
        width: 28px;
    }

    #merit .contents .merit-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-top: 20px;
    }

    #merit .contents .merit-list li {
        font-size: 15px;
        padding: 0.4em;
    }

    #merit .contents .merit-list li::before {
        width: 6px;
        height: 6px;
    }

    #merit .contents .merit-list li .column span {
        font-size: 12px;
    }

    #merit .contents .recommend .recommend-list {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 20px;
    }

    #merit .contents .recommend .recommend-list li {
        font-size: 14px;
        padding: 0.8em;
    }

    #merit .contents .recommend .recommend-list li:nth-child(2) {
        border-top: none;
    }

    #merit .contents .recommend .recommend-list li:nth-child(odd) {
        border-right: 1px solid #362928;
    }

    /* about-video */
    .about-video {
        margin-top: 26px;
    }

    /* profile */

    #profile {
        margin-top: 26px;
    }

    #profile .icon {
        width: 14px;
    }

    #profile .contents {
        margin-top: 24px;
    }

    #profile .contents .profile_wrap {
        flex-direction: column;
        align-items: center;
        justify-content: start;
        gap: 20px;
    }

    #profile .contents .profile_wrap .image_box {
        max-width: 180px;
    }

    #profile .contents .profile_wrap .image_box .word {
        margin-top: 14px;
        padding: 6px;
    }

    #profile .contents .profile_wrap .image_box .word h3 {
        font-size: 11px;
        padding-bottom: 6px;
    }

    #profile .contents .profile_wrap .image_box .word img {
        width: 68px;
        margin-top: 8px;
    }

    #profile .contents .profile_wrap .text_box .name {
        align-items: center;
        font-size: 22px;
        gap: 8px;
    }

    #profile .contents .profile_wrap .text_box .timeline {
        grid-template-columns: 50px 1fr;
        font-size: 12px;
    }

    #profile .contents .profile_wrap .text_box .insta {
        gap: 20px;
        margin-top: 16px;
        padding: 0 13px;
    }

    #profile .contents .profile_wrap .text_box .insta img {
        display: block;
        width: 28px;
    }

    #profile .contents .profile_wrap .text_box .insta p {
        font-size: 12px;
    }

    /* voice */

    #voice {
        margin-top: 26px;
    }

    #voice .background .inner {
        padding: 0;
    }

    #voice .background .inner .title-s_wrap {
        padding: 20px 20px 0;
    }

    #voice .contents {
        margin-top: 30px;
        gap: 30px;
    }

    #voice .contents .item {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px 0px;
        gap: 20px;
    }

    #voice .contents .item:last-child {
        padding-bottom: 20px;
    }

    #voice .contents .item .image_box {
        max-width: 180px;
    }

    #voice .contents .item .text_box {
        align-items: center;
    }

    #voice .contents .item .text_box .name_box {
        align-items: center;
    }

    #voice .contents .item .text_box .name_box .name {
        align-items: center;
    }

    #voice .contents .item .text_box .sub-text {
        font-size: 12px;
    }

    #voice .contents .item .text_box .main-text {
        font-size: 14px;
    }

    /* yoichi-camp */
    #yoichi-camp {
        margin-top: 40px;
    }

    #yoichi-camp .contents .video_box video {
        margin-top: 18px;
    }

    #yoichi-camp .contents .video_box p {
        font-size: 14px;
        margin-top: 8px;
    }

    /* refund */
    #yoichi-camp .contents .refund {
        margin-top: 18px;
    }

    #yoichi-camp .contents .refund .title_wrap {
        width: 100%;
    }

    #yoichi-camp .contents .refund .title_wrap .sub-text {
        font-size: 12px;
    }

    #yoichi-camp .contents .refund .title_wrap .main-text {
        font-size: 18px;
    }

    #yoichi-camp .contents .refund .text {
        margin-top: 10px;
        font-size: 14px;
    }

    /* schedule */

    #schedule {
        margin-top: 40px;
    }

    #schedule .icon {
        width: 28px;
    }

    /* white-background */
    .contents .bg {
        padding: 28px 18px;
        margin-top: 18px;
    }

    #schedule .contents .times-text {
        font-size: 14px;
    }

    #schedule .contents .note {
        font-size: 12px;
    }

    #schedule .contents .list_wrap {
        flex-direction: column;
        margin-top: 14px;
    }

    #schedule .contents .lecture .list_wrap .list {
        grid-template-columns: 96px 1fr;
    }

    #schedule .contents .consul .list_wrap .list {
        grid-template-columns: 160px 1fr;
    }


    #schedule .contents .list_wrap .list dt,
    #schedule .contents .list_wrap .list dd {
        font-size: 14px;
    }

    #schedule .contents .list_wrap .list.right dt:first-of-type {
        border-top: 1px solid #6f5f57;
    }

    #schedule .contents .list_wrap .list.right dd:first-of-type {
        border-top: none;
    }

    /* contents-detail*/

    .contents .detail {
        margin-top: 14px;
    }

    .contents .detail .text_box {
        gap: 4px;
    }

    .contents .detail .text_box p {
        font-size: 14px;
    }

    .contents .detail .image_box {
        margin-top: 14px;
        gap: 7px;
    }

    .contents .detail .image_box p {
        font-size: 14px;
    }


    /* contact */

    #contact {
        margin-top: 40px;
    }

    #contact .icon {
        width: 20px;
    }

    #contact .text {
        font-size: 14px;
        margin-top: 20px;
        text-align: left;
    }

    form {
        font-size: 14px;
        margin-top: 20px;
    }

    form dl {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 20px;
    }

    form dt {
        margin-top: 0.4em;
    }

    input[type="text"],
    input[type="email"],
    input[type="number"],
    textarea {
        padding: 0.3em;
    }

    form .agree {
        margin-bottom: 32px;
    }

    form .submit button {
        font-size: 14px;
    }

    /* footer */
    footer {
        padding: 0 20px;
        margin-top: 60px;
        margin-bottom: 40px;
        max-width: 600px;
    }

    #company {
        gap: 10px;
        padding-bottom: 18px;
    }

    #company h2 {
        font-size: 16px;
    }

    #company span {
        font-size: 14px;
    }

    .copyright {
        font-size: 12px;
        margin-top: 20px;
    }

    /* THANKS */

    #thanks {
        margin-top: 48px;
    }

    #thanks h2 {
        font-size: 22px;
    }

    #thanks p {
        font-size: 14px;
        margin-top: 18px;
    }

    #thanks .go-top-btn {
        margin-top: 24px;
        font-size: 16px;
    }

    #thanks .go-top-btn:hover {
        background-color: #d2b47e;
    }


}