@charset "UTF-8";

html {
    font-size: 100%;
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, Osaka, "sans-serif";
    letter-spacing: 0.1em;
}

a {
    color: #333;
    text-decoration: none;

}

img {
    width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    padding: 10px 0 20px 0;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 300;
    position:relative;
    letter-spacing: 0.3rem;
    opacity: 0.9;
    position: relative;
}

/* ---------------------------
header
----------------------------- */
.header {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    letter-spacing: 0.4rem;
    margin-left: 40px;
    font-weight: 300;
}

.header-navi {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin: 20px 0;
}

.header-navi li {
    margin: 0 16px;
    text-align: center;
}

.header-navi a {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 8px;
    position: relative;
}

.header-navi a::after {
    content: "";
    width: 100%;
    height: 0.7px;
    background-color: #333;
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    transform: scale(0,1);
    transform-origin: left top;
    transition: transform 0.5s;
}

.header-navi a:hover::after {
    transform: scale(1,1);
}

.sub-name {
    display: block;
    font-size: 0.65rem;
    text-align: center;
    margin-top: 10px;
}

.sub-name span {
    text-align: center;
}

.hamburger {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    transition: all .5s;
    z-index: 30;
    display: none;
}


.hamburger span {
    width: 30px;
    height: 0.9px;
    border-radius: 5px;
    display: block;
    position: absolute;
    left: 0;
    transition: all .5s;
    background-color: #333;
}

.hamburger span:first-child {
    top:4px;
}

.hamburger span:nth-child(2) {
    top: 14px;
}

.hamburger span:last-child {
    bottom: 4px;
}

.hamburger.open span:nth-of-type(1) {
    top: 10px;
    transform: translateY(6px) rotate(-214deg);
}

.hamburger.open span:nth-of-type(2) {
    opacity: 0;
}

.hamburger.open span:nth-of-type(3) {
    top: 22px;
    transform: translateY(-6px) rotate(214deg);
}

#navi {
    width: 100%;
    height: 500px;
    padding-top: 16px;
    background-color: #FAF6F3;
    border-radius: 20px;
    position: fixed;
    top: -100%;
    visibility: hidden;
    display: flex;
    justify-content: center;
}

#navi.open {
    visibility: visible;
    transition: all 1s;
    top: 0;
    z-index: 20;
}

#navi ul {
    padding: 32px 24px;
    width: 50%;

}

.mask-ul li {
    width: 200px;
    font-size: 0.8rem;
    padding: 5px;
    margin: 0 auto 10px auto;
    display: block;
}

.mask-list{
    width: 100%;
    display: block;
    padding: 5px 0;
    margin-bottom: 6px;
    font-size: 0.9rem;
    position: relative;
}

.mask-list:hover::after {
    transform: scale(1, 1); 
}

.mask-list::after {
    content: "";
    display: block;
    width: 100px;
    height: 0.8px;
    background: #333;
    position: absolute;
    bottom: -20%;
    transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
}

.navi-img {
    width: 30%;
    margin-top: 150px;
    padding-left: 80px;
}

.navi-img img {
    width: 80%;
}

.contact_btn {
    background-color: #F6C6A2;
    border: 2px solid #F6C6A2;
    top: 30px;
    right: 30px;
    border-radius: 30px;
}

.contact_btn a {
    width: 140px;
    padding: 16px 24px;
    display: block;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 30px;
}

.contact_btn a:hover {
    background-color: #fff;
    color: #fe9b4f;
}

.subpage__header {
    width: 100%;
    height: 80px;
    background-color: #F6C6A2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.subpage__header-inner {
    text-align: center;
    font-size: 1.3rem;
}


@media (max-width: 1024px) {
.header {
    padding-top: 24px;
}
.logo {
    font-size: 1.2rem;
}
.header-navi {
    display: none;
}
.hamburger {
    display: block;
}
.title-logo {
    font-size: 2rem;
    left: 8%;
    top: 10%;
}
.contact_btn {
    display: none;
}
.contact_btn a {
    display: none;
}
}

@media (max-width: 780px) {
.navi-img {
    display: none;
}

#navi {
    display: block;
}

#navi ul {
    margin: 0 auto;
}
}

/* ---------------------------
main
----------------------------- */
.main-visual {
    overflow: hidden;
}

.main-visual img {
    width: 100%;
    padding-top: 180px;
}

.mainvisual-container {
    position: relative;

}

.main-logo {
    width: 320px;
    position: absolute;
    top: 24%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.main-logo img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
.main-visual img {
    height: 240px;
    object-fit: cover;
    object-position: 100% 100%;
    padding-top: 0;
}

.main-logo {
    width: 180px;
    top: 5%;
}
}

/* -------------------------
news
--------------------------- */
.single-page__container {
    margin-bottom: 160px;
    line-height: 2rem;
}

.single-page__container .news_list_date {
    margin: 40px;
}

.single-page__container p {
    margin-left: 40px;
    font-size: 1rem;
}

.single-page__container .news_title {
    margin: 40px;
    font-size: 1.2rem;
}

.news_flame {
    max-width: 800px;
    margin: 40px auto;
    border: 1px solid ;
    background-color: #fff;
    border-radius: 20px;
}

.news {
    padding: 50px 0;
    background-color: #FAF6F3;
}

.news_heading {
    padding: 40px 0;
    text-align: center;
}

.inner {
    width: 80%;
    background-color: #fff;
    margin: 0 auto;
    padding: 65px 0 100px;
}


.sub_ttl {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.news_list {
    margin: 0 5%;
}

.news_list_item {
    padding: 25px 0;
    border-bottom: 1px solid #E6E6E6;
}

.news_list_item:first-child {
    border-top: 1px solid #E6E6E6;
}
.news_list_item a {
    position: relative;
    display: flex;
    padding-right: 30px;
}

.news_list_date {
    font-size: 0.8rem;
    display: flex;
    margin-right: 40px;
    align-items: center;
}

.news_list_date time {
    padding: 0 8px;
    background-color: #F6C6A2;
}

.more {
    display: block;
    text-align: right;
    margin: 24px;
    font-size: 0.8rem;
}

.arrow {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: absolute;
    width: 1em;
    height: 0.1em;
    background: currentColor;
    top: 50%;
    right: 3%;
}

.arrow::after {
    content: '';
    width: 0.65em;
    height: 0.65em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: -0.05em;
    box-sizing: border-box;
}

/* -------------------------
page_top_btn
---------------------------- */

.page_top {
    cursor: pointer;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 22px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    border-radius: 50%;
    transition: .3s;
    background: #fff;
    opacity: 0;
    z-index: 20;
    font-size: 0.8rem;
}

.page_top:hover {
    box-shadow: 0 0 10px #B69C95;
}

@media (max-width: 1024px) {
.news_list_item a {
    display: block;
}

.news_wrapper {
    padding: 0 40px;
}
}

@media (max-width: 480px) {
.arrow {
    display: none;
}
.news_list_item a {
    padding-right: 0;
}
}


/* ----------------------
about
------------------------ */
.about {
    padding-top: 140px;
    margin-bottom: 40px;
    position: relative;
    display: flex;
    justify-content: center;
}

.about_img {
    max-width: 300px;
    margin: 60px auto;
    opacity: 0;
    transition: 2s;
}

.about_img.visible {
    opacity: 1;
}

.about_img img {
    width: 100%;
    object-fit: cover;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
}


.about_innner img {
    width: 100%;
}

.about_list {
    width: 55%;
    max-width: 500px;
    margin: 260px auto 24px auto;
    opacity: 0;
    transition: 1s;
    transform: translateY(30px);
}

.about_list.visible {
    opacity: 1;
    transform: translateY(0);
}

.about_title-container {
    width: 40%;
}

.about_title-img {
    width: 80%;
    margin: 130px auto 0 auto;
    opacity: 0.7;
}



.accordion  {
    margin: 0 auto 40px auto;
    opacity: 0;
    transition: 3s;
    transform: translateY(30px);
}

.accordion.visible {
    opacity: 1;
    transform: translateY(0);
}

.accordion:last-child {
    margin-bottom: 0 ;
}

.accordion_title {
    position: relative;
    border: none;
    display: block;
    list-style: none;
    cursor: pointer;
    background-color: #FAF6F3;
    border-radius: 20px ;
    border-bottom: 4px solid #F6C6A2;
    padding: 1.4rem 3rem;
    line-height: 1.6em;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

summary.accordion_title::-webkit-details-marker {
    display:none;
}

.accordion_title:after {
    content: "＋";
    position: absolute;
    top: calc(50% - 0.5em);
    right: 10%;
    line-height: 1;
    padding: 0;
    pointer-events: none;
}

.accordion::details-content {
    opacity: 0;
    block-size: 0;
    transition: .3s;
    transition-property: display, opacity, block-size, padding;
    transition-behavior: allow-discrete;
    line-height: 1.6em;
}

.accordion .accordion_contents {
    padding: 20px 40px;
    background-color: #FAF6F3;
    border-radius: 0 0 20px 20px;
}

.accordion .accordion_content > *:first-of-type {
    margin-top: 0;
}

.accordion .accordion_content > *:last-of-type {
    margin-bottom: 0;
}

.accordion[open]::details-content {
    opacity: 1;
    block-size: auto;
    block-size: calc-size(auto, size);
}

.accordion[open] .accordion_content {
    padding: 1.4em 2em 1.4em 3em;
}

.accordion[open] .accordion_title:after {
    content: "ー";
}

.title_box {
    width: 60%;
    margin: 20px 64px;
}

@media (max-width: 1024px) {
.about {
    display: block;
}
.about_list {
    width: 80%;
    margin-top: 80px;
}

.about_title-container {
    width: 100%;
}

.title_box {
    width: 60%;
    margin: 20px 64px;
}

.about_title-img {
    display: none;
}
}

/*--------------------------
menu
-----------------------------*/
.menu {
    background-color: #ffffff;
    padding: 120px 0 160px 0;
}
.menu_list ul {
    padding-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-img {
    width: 50%;
    text-align: center;
    opacity: 0;
    transition: 1s ease-in-out;
    transform: translateY(30px);
}

.menu-img.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-img img {
    width: 80%;
    height: 320px;
    object-fit: cover;
    border-radius: 30px;
}

.menu_list {
    margin: 0 auto;
} 

.menu_list li {
    display: flex;
    position: relative;
    z-index: 1;
    margin-bottom: 9rem;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto 100px auto;
}

.menu_list .left_start {
    flex-direction:row-reverse
}

.menu_list li::after {
    content: '';
    position: absolute;
    top: 50px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #fafaf8 0%, #fcf7ef 38%, #f9f1ec 100%);
    z-index: -2;
}

.menu_list_text {
    width: 50%;
    padding: 6rem 4rem 0 4rem ;
}

.menu_title {
    margin-bottom: 8px;
}

.menu-title-span {
    color: #fff;
    position: absolute;
    top: 10%;
    left: 50%;
    font-size: 8rem;
    opacity: 0.8;
    font-family: "Prata", serif;
    line-height: 1;
    z-index: -1;
    font-weight: normal;
    white-space: nowrap;
}
.menu-title-spanleft {
    color: #fff;
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 8rem;
    opacity: 0.8;
    font-family: "Prata", serif;
    line-height: 1;
    z-index: -1;
    font-weight: normal;
    white-space: nowrap;
}

.menu_price {
    margin-bottom: 24px;
    font-size: 0.8rem;
}

.menu-img.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
.menu_list ul {
    max-width: 800px;
}

.menu_list li {
    display: block; 
}
.menu-img {
    width: 70%;
    margin: 0 auto;
}
.menu-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.menu_list_text {
    width: 80%;
    margin: 0 auto;
    padding-top: 2rem;
}
.menu-title-span {
    top: 50%;
    left: 10%;
    font-size: 5rem;
}
}

@media (max-width: 480px) {
.menu-img {
    width: 90%;
}

.menu-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu_list_text {
    width: 100%;
    padding: 40px;
    font-size: 0.8rem;
}
.menu-title-span {
    font-size: 3rem;
}
}


/* -------------------------
gallery
----------------------------*/
.gallery {
    background-color: #FAF6F3;
    padding: 120px 0;
}
.gallery_imgs {
    display: flex;
    justify-content: center;
    text-align: center;
}

.gallery_img {
    width: 40%;
    opacity: 0;
    transition: 1s ease-in-out;
    transform: translateY(30px);
}

.gallery_img.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery_imgs img {
    width: 100%;
    padding-bottom: 10px;
    border-radius: 30px;
    opacity: 0.8;
}

.left-img {
    width: 400px;
    margin: 40px 60px;
}

.right-img {
    width: 400px;
    margin: 40px 60px;
}

.garaly_img p {
    text-align: center;
    margin-top: 16px;
}

@media (max-width: 780px) {
    .gallery_imgs {
    display: block;
    width: 80%;
    margin: 0 auto;
    }

.right-img,.left-img {
    width: 80%;
    margin: 24px;
}
}


/*-----------------------
feels
------------------------ */
.feels {
    padding: 120px 0;
}

.feels ul {
    padding-top: 100px;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    
}

.feels .feels-ul_lower {
    padding-top: 60px;
}

.feels_list {
    width: 280px;
    position: relative;
    opacity: 0;
    transition: 1s ease-in-out;
    transform: translateY(30px);
}

.feels_list.visible {
    opacity: 1;
    transform: translateY(0);
}

.feels_list:nth-child(2) {
    margin-top: 80px;
}

.feels_list:nth-child(3) {
    margin-top: 160px;
}

.feels .feels-img_last {
    margin-top: 20px;

}

.feels_num {
    width: 40px;
    margin-bottom: 5px;
    position: absolute;
    left: 5px;
    top: -60px;
    right: auto;
    bottom: auto;
    z-index: 5;
}

.feels-title {
    position: absolute;
    left: 80px;
    top: -40px;
    right: auto;
    bottom: auto;
    z-index: 5;
}

.feels_img {
    margin: 20px auto ;
    width: 200px;
}


.feels-desc {
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    line-height: 1.75;
    
}

h3 {
    font-size: 1.1rem; 
    padding-bottom: 30px; 
    text-align: center;
    font-weight: 400;
    position: relative;
    }

@media (max-width: 1024px) {
.feels ul { 
    grid-template-columns: repeat(1, 1fr);
}
.feels_list {
    width: 80%;
    margin: 60px auto 0 auto;
    padding-bottom: 60px;
}

.feels-desc {
    width: 80%;
    margin: 0 auto;
}

.feels_list:nth-child(2),.feels_list:nth-child(3) {
    margin-top: 60px;
}

.blog_img p {
    font-size: 0.8rem;
}

}
/* -----------------------
profile
-------------------------- */
.profile {
    background-color: #FAF6F3;
    padding: 120px 0;
}

.profile_flex {
    display: flex;
    max-width: 800px;
    margin: 0 auto 100px auto;
    justify-content: space-between;
}

.profile_text {
    max-width: 400px;
    margin: 0 auto;
    padding-top: 40px;
    font-size: 0.85rem;
}

.profile_img {
    width: 300px;
    margin: 0 auto;
    margin: 100px auto;
}

.profile_img img {
    width: 100%;
}

.blog_img {
    width: 60%;
    margin: 0 auto;
    padding: 40px 0;
    transition: 0.3s ease all;
}

.blog_img img {
    border-radius: 20px;
}

.blog_img_link:hover {
    transform: translateY(5px);
    opacity: 0.8;
}

.blog_img p {
    text-align: center;
    margin-top: 20px;
}


@keyframes hoverShake {
    0% {transform: skew(0deg,0deg);}
    25% {transform: skew(1deg, 1deg);}
    75% {transform: skew(-1deg, -1deg);}
    100% {transform: skew(0deg,0deg);}
}

@media (max-width:1024px) {
    .profile_flex {
    display: block;
}
.profile_img {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
}
.profile_text {
    max-width: none;
    width: 80%;
    margin: 0 auto;
}
}

/* ---------------------
footer
------------------------ */
.footer-menu {
    display: flex;
    justify-content: center;
}

.footer-menu ul {
    align-items: flex-end;
    margin-top: 120px;
    text-align: center;
}

.footer-menu .footer_ul ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 8px;
    position: relative;
}

.footer-menu a::after {
    content: "";
    width: 100%;
    height: 0.7px;
    background-color: #333;
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    transform: scale(0,1);
    transform-origin: left top;
    transition: transform 0.5s;
}

.footer-menu a:hover::after {
    transform: scale(1,1);
}


.footer-img {
    width: 300px;
    padding-top: 60px;
    margin-right: 60px;
    position: relative;
    vertical-align: bottom;
    
}

.footer_title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1.1rem;
    position: absolute;
    left: calc(50% - 82px);
    top: 50%;
}

.footer_title_supplement {
    font-size: 0.7rem;
    position: absolute;
    bottom: -7%;
    left: calc(50% - 120px);
    letter-spacing: .2rem;
}

.footer_title_sub {
    font-size: 0.8rem;
    position: absolute;
    top: 38%;
    left: calc(50% - 100px);
    letter-spacing: .3rem;
}
.footer__contact_btn {
    width: 200px;
    display: block;
    background-color: #F6C6A2;
    text-align: center;
    letter-spacing: 0.2rem;
    font-size: 1.1rem;
    margin: 64px auto 100px auto;
    border-radius: 30px;
    position:relative;
    cursor:pointer;
    transition: 0.3s ease all;
    outline:none;
    border: 2px solid #F6C6A2;
}

.footer__contact_btn a {
    width: 100%;
    display: block;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 30px;
    padding: 16px 12px;
}


.footer__contact_btn a:hover{
    background-color: #fff;
    color: #fe9b4f;
}

@media (max-width:1024px) {
.footer-menu {
    display: block;
}
.footer-img {
    width: 80%;
    margin: 0  auto;
}
.footer-menu .footer_ul ul {
    max-width: 350px;
    /* grid-template-columns: repeat(2,1fr); */
    gap: 16px;
    margin: 100px auto 0 auto;
}
}

/* -------------------------------
contact.html
--------------------------------- */

.contact-form {
    background-color: #FAF6F3;
    padding: 15px;
}

.contact_title {
    text-align: center;
    padding-top: 50px;
    font-size: 1.6rem;
    color: #333;
}

/* フォーム全体のスタイル */
.form {
    background-color: white;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    margin: 60px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

label {
    display: block;
    margin-top: 10px;
    color: #555;
}

input, textarea {
    width: 100%; 
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    resize: vertical;
    height: 120px;
}

.contactform_btn {
    background-color: #fe9b4f;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    margin-top: 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contactform_btn:hover {
    opacity: 0.7;
}

.copy_right {
    text-align: center;
    font-size: 0.7rem;
}