@charset "UTF-8";
/* CSS Document */
/*-- ローディング画面のためのCSS --*/
#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #F7F4EA;
    z-index: 99999;
    text-align: center;
    color: #fff;
}
#splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#splash-logo img {
    width: 80px;
}
/* fadeUpをするアイコンの動き */
.splash-logo-fadeup {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*-- nav --*/
@media(max-width:1024px) {
    #header-nav {
        position: fixed;
        z-index: -1;
        opacity: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(247, 244, 234, 0.9);
        transition: all 0.3s;
    }
    #header-nav.panelactive {
        opacity: 1;
        z-index: 999;
    }
    #header-nav.panelactive #header-nav-list {
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    #header-nav ul {
        display: none;
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #header-nav.panelactive ul {
        width: 260px;
        display: flex;
        flex-wrap: wrap;
    }
    #header-nav li {
        list-style: none;
        text-align: center;
    }
    #header-nav li a {
        width: 130px;
        color: #333;
        text-decoration: none;
        font-size: 1.4rem;
        padding: 23px;
        display: block;
    }
    .header_img_50 {
        height: 50px;
    }
    .header_img_40 {
        height: 40px;
    }
    /*-- ボタンのためのCSS --*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        top: 0;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }
    /*-- ×に変化 --*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        right: 13px;
        height: 3px;
        border-radius: 2px;
        background-color: #333;
        width: 50%;
    }
    .openbtn span:nth-of-type(1) {
        top: 13px;
    }
    .openbtn span:nth-of-type(2) {
        top: 24px;
    }
    .openbtn span:nth-of-type(3) {
        top: 35px;
    }
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        right: 15px;
        transform: translateY(6px) rotate(-45deg);
        width: 40%;
    }
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        right: 15px;
        transform: translateY(-6px) rotate(45deg);
        width: 40%;
    }
}
@media(min-width:1025px) {
    #header {
        display: none;
    }
    #header.fixed {
        display: block;
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 0;
        background: rgba(247, 244, 234, 0.85);
    }
    #header-nav-list ul {
        width: 800px;
        margin: 0 auto;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        list-style: none;
    }
    #header-nav-list a {
        text-decoration: none;
        color: #333;
        font-size: 1.4rem;
        cursor: pointer;
    }
    .header_img_50 {
        height: 40px;
        padding-bottom: 0px;
    }
    .header_img_40 {
        height: 30px;
        padding-bottom: 0px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}
/*main_section*/
.main {
    background-color: #fff;
    z-index: -100;
}
.section-top {
    margin-bottom: 80px;
}
.section-top_slider {
    width: 100%;
    height: 600px;
    position: relative;
}
.section-top_slider-list {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
    .section-top_slider {
        height: 300px;
    }
}
.section-top_slider-list:nth-child(1) {
    background-image: url("../images/top-01.webp");
}
.section-top_slider-list:nth-child(2) {
    background-image: url("../images/top-02.webp");
}
.section-top_slider-list:nth-child(3) {
    background-image: url("../images/top-03.webp");
}
.section-top_slider-list:nth-child(4) {
    background-image: url("../images/top-04.webp");
}
.section-top_slider-img {
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    margin: -1px;
    padding: 0;
    overflow: hidden;
    position: absolute;
}
@media(min-width:1025px) {
    .section-top {
        margin-bottom: 120px;
    }
}
.section_about {
    max-width: 340px;
    margin: 0 auto 80px;
}
.section_about_top-image {
    width: 340px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.section_about_description {
    width: 300px;
    font-size: 1.6rem;
    line-height: 3.0rem;
    text-align: left;
    margin: 0 auto 30px;
}
.section_about_gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    color: #333;
    padding-right: 40px;
}
.section_about_gallery-image {
    width: 35px;
    height: auto;
    padding-right: 10px;
}
@media(max-width:355px) {
    .section_about_top-image {
        width: 320px;
    }
}
@media(min-width:780px) {
    .section_about {
        max-width: 850px;
        margin: 0 auto 80px;
    }
    .section_about_content-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .section_about_content-wrapper_img {
        order: 1;
    }
    .section_about_top-image {
        width: 50vw;
        max-width: 525px;
        margin-bottom: 0;
    }
    .section_about_gallery {
        padding-right: 0;
    }
}
@media(min-width:1025px) {
    .section_about {
        position: relative;
        max-width: 1200px;
        margin-bottom: 120px;
    }
    .title.section_about_title {
        display: block;
        position: absolute;
        top: 0px;
        left: 2vw;
    }
    .title.section_about_title img {
        height: 50px;
        margin-right: 0;
        position: relative;
    }
    .section_about_title_text {
        position: absolute;
        bottom: -40px;
        left: -12px;
        transform: rotateZ(90deg);
        display: block;
        transform-origin: bottom left;
    }
    .title.section_about_title h2 {
        font-size: 4.5rem;
    }
    .title.section_about_title h2:after {
        left: -20px;
        top: 7px;
        width: 1px;
        height: 40px;
    }
    .title.section_about_title p {
        font-size: 1.4rem;
        padding-top: 15px;
    }
    .section_about_content-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section_about_content-wrapper_img {
        padding-left: 30px;
    }
    .section_about_description {
        margin: 0 auto 30px 70px;
    }
}
.section_menu {
    background-image: url("../images/menu_bg-re.jpg");
    background-size: contain;
    background-repeat: repeat-y;
    color: #F7F4EA;
    margin-bottom: 80px;
    padding: 50px 0 60px;
    text-align: left;
}
.title-menu {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.title-menu img {
    height: 60px;
    width: auto;
    margin-right: 25px;
}
.title-menu h2 {
    font-size: 3.0rem;
    font-weight: 300;
    text-align: left;
    position: relative;
}
.title-menu h2:after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: -13px;
    display: inline-block;
    width: 20px;
    height: 1px;
    transform: translateX(-50%);
    background-color: #F7F4EA;
}
.title-menu p {
    font-size: 1.6rem;
    text-align: left;
    padding-top: 20px;
}
.section_menu_illustration_01 .section_menu_illustration_02 .section_menu_illustration_03 .section_menu_illustration_04 {
    display: none;
}
.section_menu_contants-wrapper {
    width: 90vw;
    max-width: 900px;
    margin: 0 auto;
}
.section_menu_lunch_box {
    width: 90vw;
    max-width: 900px;
    margin: 0 auto;
}
.section_menu_title {
    width: 90vw;
    max-width: 900px;
    display: flex;
    align-items: center;
    margin: 50px 0 38px;
    position: relative;
}

.section_menu_title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #F7F4EA;
}
.section_menu_title h3 {
    font-size: 2.4rem;
    font-weight: 300;
    padding-right: 15px;
}
.section_menu_title_ill {
    height: 55px;
    width: auto;
}
.section_menu_title_bg-text {
    width: 200px;
    position: absolute;
    top: -60px;
    left: -45px;
}
.section_menu_lunch img {
    width: 100%;
    margin: 0 auto;
	border-radius: 8px;
}
.section_menu_lunch span {
    width: 90vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 5px 0 50px;
    position: relative;
}
.section_menu_lunch span::after {
    content: "";
    position: absolute;
    bottom: 30px;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #F7F4EA;
}
.section_menu_lunch_description {
    padding-bottom: 50px;
}
.slider.menu_lunch_slider {
    display: none;
}
.section_menu_cake {
    width: 90vw;
    max-width: 900px;
    margin-bottom: 20px;
}
.section_menu_cake ul {
    list-style: none;
}
.section_menu_cake ul li {
    padding-top: 20px;
}
.section_menu_cake ul li:first-child {
    padding-top: 0;
}
.section_menu_cake_title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding-bottom: 15px;
}
.section_menu_cake_title::after {
    content: "";
    position: absolute;
    bottom: 0px;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #F7F4EA;
}
.section_menu_cake_description {
    font-size: 1.4rem;
    font-weight: 100;
    line-height: 2.4rem;
}
.section_menu_cake_title h4 {
    flex: 8;
}
.section_menu_cake_title p {
    flex: 2;
    text-align: right;
}
.section_menu_instagram {
    text-decoration: none;
}
.section_menu_instagram p {
    font-size: 1.4rem;
    color: #F7F4EA;
    padding: 20px 56px;
    margin: 25px 0 40px;
    position: relative;
}
.section_menu_instagram p:after {
    position: absolute;
    top: -10px;
    left: 30px;
    content: url("../images/menu_instagram_fukidashi.png");
}
.section_menu_illustration_01 {
    display: none;
}
.section_menu_illustration_02 {
    display: none;
}
.section_menu_drink {
    width: 90vw;
    max-width: 900px;
}
.section_menu_drink_380 {
    padding: 0 0 20px;
    position: relative;
    list-style: none;
}
.section_menu_drink_380 span {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section_menu_drink_450 {
    padding: 20px 0;
    position: relative;
    list-style: none;
    line-height: 2.8rem;
}
.section_menu_drink_450:before {
    content: "";
    position: absolute;
    bottom: -10px;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #F7F4EA;
}
.section_menu_drink_450:after {
    content: "";
    position: absolute;
    bottom: -10px;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #F7F4EA;
}
.section_menu_drink_450 span {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section_menu_illustration_03 {
    display: none;
}
.section_menu_illustration_04 {
    display: none;
}
@media(min-width:834px) {
    .section_menu_lunch_box_wrapper {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }
    .section_menu_lunch {
        width: 100%;
    }
    .section_menu_lunch img {
        display: none;
    }
    .section_menu_lunch span {
        padding: 0 0 60px;
        width: 100%;
    }
    .section_menu_lunch span::after {
        bottom: 30px;
    }
    .slider.menu_lunch_slider {
        display: inline-block;
        margin-left: 20px;
    }
    .slider.slider.menu_lunch_slider {
        width: 376px;
    }
    .slider.slider.menu_lunch_slider img {
        width: 100%;
        height: auto;
        padding: 0 5px;
		border-radius: 8px;
    }
    .slider.menu_lunch_slider .slick-dots {
        height: 0;
    }
    .slider.menu_lunch_slider .slick-dots li {
        padding: 82px 0 0;
        position: relative;
    }
    .slider.menu_lunch_slider .slick-dots button {
        color: transparent;
        outline: none;
        border: 0;
        width: 500px;
        height: 80px;
        display: block;
        background: transparent;
        position: absolute;
        cursor: pointer;
        top: -244px;
        left: -500px;
        z-index: 999;
    }
    .section_menu_title.menu_title_pc1 {
        width: 100%;
    }
    .section_menu_title.menu_title_pc2 {
        width: 355px;
    }
    .section_menu_title_bg-text {
        width: 320px;
        top: -115px;
        left: -75px;
    }
    .section_menu_box {
        display: flex;
        justify-content: space-between;
    }
    .section_menu_box-drink {
        width: 376px;
        margin-left: 20px;
    }
    .section_menu_cake {
        width: 100%;
    }
    .section_menu_drink {
        width: 100%;
    }
}
@media(min-width:1025px) {
	  .section_menu {
    padding: 80px 0 80px;
    margin-bottom: 120px;
  }
  .title-menu-box {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .title-menu {
    display: block;
    position: absolute;
    top: 0;
    left: 2vw;
  }
  .title-menu img {
    height: 50px;
    padding-left: 5px;
    margin-right: 0;
    position: relative;
  }
  .section_menu_title_text {
    position: absolute;
    bottom: -40px;
    left: -14px;
    display: block;
    transform: rotateZ(90deg);
    transform-origin: bottom left;
  }
  .title-menu h2 {
    font-size: 4.5rem;
  }
  .title-menu h2:after {
    left: -20px;
    top: 7px;
    width: 1px;
    height: 40px;
  }
  .title-menu p {
  font-size: 1.4rem;
  padding-top: 15px;
}
    .section_menu_title.menu_title_pc1 {
        width: 430px;
    }
    .section_menu_title.menu_title_pc2 {
        width: 430px;
    }
    .section_menu_box-drink {
        width: 430px;
        margin-left: 0;
    }
    .section_menu_cake {
        width: 430px;
    }
    .section_menu_instagram_box {
        position: relative;
    }
    .section_menu_illustration_01 {
        display: block;
        position: absolute;
        bottom: -70px;
        right: 40px;
    }
    .section_menu_illustration_01 img {
        height: 75px;
    }
    .section_menu_illustration_02 {
        display: block;
        position: absolute;
        bottom: -100px;
        right: 90px;
    }
    .section_menu_illustration_02 img {
        height: 55px;
        transform: rotateY(180deg)
    }
    .section_menu_drink {
        position: relative;
    }
    .section_menu_illustration_03 {
        display: block;
        position: absolute;
        bottom: 300px;
        right: 50px;
        width: 0;
        height: 0;
    }
    .section_menu_illustration_03 img {
        height: 75px;
    }
    .section_menu_illustration_04 {
        display: block;
        position: absolute;
        bottom: 0;
        right: 80px;
    }
    .section_menu_illustration_04 img {
        height: 50px;
    }
}
.section_info {
    margin-bottom: 80px;
}
.section_info table {
    width: 375px;
    text-align: left;
    border-top: 1px solid #777;
    border-bottom: 1px solid #777;
    border-collapse: collapse;
    margin: 0 auto 40px;
}
.section_info table td, th {
    border-bottom: 1px solid #777;
    padding: 15px;
    font-size: 1.6rem;
    font-weight: 100;
}
.section_info table a {
    color: #333;
    text-decoration: none;
}
.section_info_g-map {
    width: 90%;
    max-width: 500px;
    height: 225px;
    margin: 0 auto 40px;
}
.section_info_g-map iframe {
    width: 100%;
    height: 225px;
    border-radius: 10px;
}
.section_info_request {
    background-color: #F7F4EA;
    width: 80%;
    max-width: 920px;
    border-radius: 10px;
    text-align: left;
    padding: 47px 0 47px;
    margin: 0 auto;
}
.section_info_request h3 {
    font-size: 1.8rem;
    font-weight: 100;
    width: 80%;
    max-width: 650px;
    margin: 0 auto 30px;
}
.section_info_request p {
    width: 80%;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 2.7rem;
}
.section_info_request_illustration {
    display: none;
}
@media(max-width:355px) {
    .section_info table {
        width: 320px;
    }
    .section_info table td, th {
        padding: 15px 5px;
    }
}
@media(min-width:780px) {
    .section_info_box {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 60px;
    }
    .section_info table {
        width: 355px;
        margin: 0 20px 0 0;
    }
    .section_info_g-map {
        width: 40vw;
        height: 347px;
        margin: 0;
    }
    .section_info_g-map iframe {
        height: 100%;
    }
}
@media(min-width:1025px) {
    .section_info {
        max-width: 1200px;
        margin: 0 auto 120px;
        position: relative;
    }
    .title.section_info_title {
        display: block;
        position: absolute;
        top: 0;
        left: 2vw;
    }
    .title.section_info_title img {
        height: 50px;
        padding-left: 15px;
        margin-right: 0;
        position: relative;
    }
    .section_info_title_text {
        position: absolute;
        bottom: -40px;
        left: -10px;
        display: block;
        transform: rotateZ(90deg);
        transform-origin: bottom left;
    }
    .title.section_info_title h2 {
        font-size: 4.5rem;
    }
    .title.section_info_title h2:after {
        left: -20px;
        top: 7px;
        width: 1px;
        height: 40px;
    }
    .title.section_info_title p {
        font-size: 1.4rem;
        padding-top: 15px;
    }
    .section_info_box {
        justify-content: center;
    }
    .section_info table {
        margin-right: 60px;
    }
    .section_info_request {
        position: relative;
    }
    .section_info_request_illustration {
        display: block;
        position: absolute;
        bottom: 10px;
        right: 25px;
    }
    .section_info_request_illustration img {
        height: 70px;
    }
}
.section_contact {
    background-image: url("../images/contact_bg.jpg");
    padding: 50px 0 40px;
    margin-bottom: 80px;
}
.section_contact_illustration {
    display: none;
}
.section_contact_description {
    width: 90%;
    max-width: 562px;
    text-align: left;
    margin: 0 auto 30px;
}
.section_contact address {
    background-color: #fff;
    width: 355px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}
.section_contact address img {
    width: 75px;
    height: auto;
    margin-right: 35px;
}
.section_contact address a {
    font-size: 3.0rem;
    text-decoration: none;
    color: #333;
}
.section_contact_booking {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 40px 20px 20px;
    width: 80%;
    max-width: 920px;
    margin: 0 auto;
}
.section_contact_booking h3 {
    max-width: 690px;
    margin: 0 auto 30px;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 100;
}
.section_contact_booking ul {
    width: 95%;
    max-width: 655px;
    margin: 0 auto;
    text-align: left;
}
.section_contact_booking ul li {
    padding-bottom: 20px;
    position: relative;
}
.section_contact_booking ul li:before {
    content: "◆";
    font-size: 1.0rem;
    position: absolute;
    top: 0px;
    left: -13px;
}
@media(max-width:355px) {
    .section_contact address {
        width: 320px;
    }
    .section_contact address img {
        width: 60px;
        margin-right: 30px;
    }
}
@media(min-width:1025px) {
    .section_contact {
        padding: 80px 10px 80px;
        margin-bottom: 120px;
    }
    .title-contact-box {
        display: block;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }
    .title.section_contact_title {
        display: block;
        position: absolute;
        top: 0;
        left: 2vw;
    }
    .title.section_contact_title img {
        height: 50px;
        margin-right: 0;
        position: relative;
    }
    .section_contact_title_text {
        position: absolute;
        bottom: -40px;
        left: -12px;
        display: block;
        transform: rotateZ(90deg);
        transform-origin: bottom left;
    }
    .title.section_contact_title h2 {
        font-size: 4.5rem;
    }
    .title.section_contact_title h2:after {
        left: -20px;
        top: 7px;
        width: 1px;
        height: 40px;
    }
    .title.section_contact_title p {
        font-size: 1.4rem;
        padding-top: 15px;
    }
    .section_contact_booking {
        position: relative;
    }
    .section_contact_illustration {
        display: block;
        position: absolute;
        bottom: 0;
        right: -100px;
    }
    .section_contact_illustration img {
        height: 80px;
    }
}
.section_items {
    margin-bottom: 90px;
}
.section_items_slider {
    height: 260px;
    width: 100%;
}
.section_items_slider_items {
    list-style: none;
}
.section_items_slider_items li {
    width: 355px;
    margin: 0 auto;
    position: relative;
}
.section_items_slider_items li img {
    width: 355px;
    padding: 0 15px;
}
.section_items_text {
    width: 355px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: left;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 15px;
}
.section_items_text p {
    font-size: 1.4rem;
}
.section_items_sake {
    font-size: 1.6rem;
    font-weight: 100;
    padding-top: 15px;
}
.section_items_slider_items .slick-slide {
    transition: all .5s;
    opacity: 0.4;
}
.section_items_slider_items .slick-center {
    opacity: 1;
}
.section_items_slider_items .slick-dots {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.section_items_slider_items .slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 15px;
    padding: 0;
    cursor: pointer;
}
.section_items_slider_items .slick-dots li:last-child {
    margin-right: 0;
}
.section_items_slider_items .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.section_items_slider_items .slick-dots li button:before {
    font-size: 3.8rem;
    line-height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '•';
    text-align: center;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.section_items_slider_items .slick-dots li.slick-active button:before {
    color: #F7F4EA;
}
@media(max-width:355px) {
    .section_items_slider_items li {
        width: 320px;
    }
    .section_items_slider_items li img {
        width: 320px;
    }
    .section_items_text {
        width: 320px;
    }
}
@media(min-width:1025px) {
    .section_items {
        max-width: 1200px;
        margin: 0 auto 130px;
        position: relative;
    }
    .title.section_items_title {
        z-index: 10;
        display: block;
        position: absolute;
        top: 0;
        left: 2vw;
    }
    .title.section_items_title img {
        height: 60px;
        padding-left: 20px;
        margin-right: 0;
        position: relative;
    }
    .section_items_title_text {
        position: absolute;
        bottom: -40px;
        left: -6px;
        display: block;
        transform: rotateZ(90deg);
        transform-origin: bottom left;
    }
    .title.section_items_title h2 {
        font-size: 4.5rem;
    }
    .title.section_items_title h2:after {
        left: -20px;
        top: 7px;
        width: 1px;
        height: 40px;
    }
    .title.section_items_title p {
        font-size: 1.4rem;
        padding-top: 15px;
    }
    .section_items_slider {
        height: 460px;
    }
    .section_items_slider_items li {
        width: 600px;
    }
    .section_items_slider_items li img {
        width: 600px;
    }
    .section_items_text {
        width: 600px;
        height: 80px;
        padding: 15px;
    }
}
/*-- footer --*/
.footer {
    background-color: #F7F4EA;
    padding: 50px 0 50px;
}
.footer_logo {
    width: auto;
    height: 90px;
    margin: 0 auto 50px;
}
.footer_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 230px;
    margin: 0 auto 45px;
}
.footer_nav ul li {
    margin-bottom: 15px;
    list-style: none;
    text-align: left;
}
.footer_nav ul li a {
    text-decoration: none;
    color: #333;
}
.footer small {
    font-size: 1.4rem;
    text-align: center;
}
@media(min-width:1025px) {
    .footer {
        height: 260px;
        padding: 40px 0 30px;
        position: relative;
    }
    .footer_box {
        width: 80%;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }
    .footer_logo {
        position: absolute;
        top: 0;
        left: 0;
        width: auto;
        height: 90px;
        margin: 0;
    }
    .footer_nav {
        width: 300px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer small {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
}