@charset "utf-8";

html {
    text-decoration: none;
    font-family: roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #222;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 23px;
}

body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    background: #fff;
}

main {
    margin: 0 auto;
}

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

img {
    max-width: 100%;
}

a,
button {
    text-decoration: none;
    cursor: pointer;
    color: #222;
}

main,
div,
p,
span,
footer,
header,
main,
nav,
section {
    display: block;
    margin: 0 auto;
}

p {
    font-size: 15px;
    line-height: 2em;
}

br.spc {
    display: block;
    content: "";
    margin: 7px 0;
}

@media screen and (min-width: 768px) {
    .pc {
        display: block;
    }

    .sp {
        display: none;
    }

}

/* ------------------------------------------------------
  　animation
  ------------------------------------------------------ */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

/* ------------------------------------------------------
    sp-view
  ------------------------------------------------------ */
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    p {
        font-size: 14px;
        line-height: 1.8em;
    }


}

/*===============
　header
    ===============*/
header {
    width: 100%;
    padding: 1.5rem 20px;
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 3;
    height: 35px;
}

.hd_nav {
    display: flex;
    margin-bottom: 20px;
}

.hd_nav_logo {
    position: relative;
    text-align: center;
    top: -15px;
    left: 0;
}

.hd_nav_logo p {
    font-size: 10px;
}

ul {
    padding-bottom: 10px;
    margin-top: 0px;
}

ul.pc,
.hd_link {
    display: inline-flex;
}

ul.pc {
    margin-left: 30px;
}

ul.pc li {
    margin: 0 15px;
    font-size: 12px;
}

.hd_link {
    text-align: right;
    margin-right: 40px;
}

.hd_link li {
    display: inline-block;
    width: 38px;
    height: 45px;
}

.hd_link ul {
    margin-top: 10px;
}


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

    ul.pc,
    .hd_link li {
        display: none;
    }

    #header {
        padding-left: 0;
    }

    .hd_nav {
        display: block;
    }

    .hd_nav_logo {
        top: -10px;
    }

    a.hd_logo img {
        max-width: 200px;
        display: block;
        margin: 0 auto;
    }

    .describe {
        margin-bottom: 10px;
    }
}

/*===============
        ハンバーガーボタン　
        ===============*/
.hamburger {
    display: none;
    position: relative;
    position: fixed;
    z-index: 300;
    left: 5px;
    top: 20px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    text-align: center;
    padding: 7px;
    z-index: 100;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 27px;
    height: 3px;
    left: 13px;
    border-radius: 50px;
    background: #222;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 16px;
}

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

.hamburger span:nth-child(3) {
    top: 30px;
}

/* --------------------------
    ナビゲーションドロップダウンの指定 
    ----------------------------*/
nav ul ul {
    display: block;
    margin: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    text-decoration: none;
    padding: 10px 0px;
    transition: all .3s;

}

nav ul li a:hover,
.has-child a:hover {
    color: #D0D5D4;
}

/* menu/price横の矢印 */
nav ul li.has-child::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 15px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(135deg);
}

/*下の階層を持っているulの指定*/
nav li.has-child ul {
    /*絶対配置で位置を指定*/
    position: absolute;
    left: 0;
    top: 20px;
    z-index: 4;
    /*形状を指定*/
    background: rgba(255, 255, 255, 0.8);
    width: 120px;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all .3s;
    /* padding: 10px 0; */
    text-align: center;
    margin-top: 20px;
    padding: 0;
    margin: 20px 0 0 0;
}

nav li.has-child ul li {
    border: 1px solid #D0D5D4;
}

/*hoverしたら表示*/
nav li.has-child:hover>ul,
nav li.has-child ul li:hover>ul,
nav li.has-child:active>ul,
nav li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 1;
}

nav li.has-child ul li {
    margin: 0;
}

nav li.has-child ul li a {
    color: #222;
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

nav li.has-child ul li:last-child a {
    border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
    /* background: #D0D5D4; */
    background: #fff;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul li a {
        padding: 0;
        font-size: 13px;
    }

    nav li.has-child ul,
    nav li.has-child ul ul {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        visibility: visible;
        /*JSで制御するため一旦表示*/
        opacity: 1;
        /*JSで制御するため一旦表示*/
        display: none;
        /*JSのslidetoggleで表示させるため非表示に*/
        transition: none;
        /*JSで制御するためCSSのアニメーションを切る*/
        background-color: #D0D5D4;
    }

    nav li.has-child ul li {
        border: 1px solid #fff;
    }

    nav li.has-child ul li a {
        border-bottom: none;
    }

    nav li.has-child ul li a:hover,
    .has-child a:hover {
        color: #D0D5D4;
    }

    /*矢印の位置と向き*/

    nav ul li.has-child::before {
        left: 90px;
        top: 25px;
    }

    nav ul ul li.has-child::before {
        transform: rotate(135deg);
        left: 20px;
    }

    nav ul li.has-child.active::before {
        transform: rotate(-45deg);
    }
}

/* ==============
    sp_menu
    =================*/
.sp_menu_wrap {
    position: fixed;
    z-index: 2;
    left: 0;
    top: 74px;
    background-color: #fff;
    width: 80%;
}

.globalMenuSp {
    text-align: center;
}

.globalMenuSp ul {
    margin-top: 0;
}

.globalMenuSp ul li {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid #E2E2E2;
}

.globalMenuSp ul li:first-child {
    border-top: 1px solid #E2E2E2;
}

.globalMenuSp ul li:last-child {
    border-bottom: none;
}

.hd_link_sp {
    margin-bottom: 30px;
}

.hd_link_sp ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.hd_link_sp ul li a {
    display: block;
    padding: 20px 15px;
}

.btn_close {
    display: flex;
    text-align: center;
    height: 60px;
    background-color: #D0D5D4;
}

.btn_close p {
    margin: 0 auto;
    font-size: 19px;
    line-height: 60px;
    margin-left: 0;
}

.btn_close .cross {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    background-color: #D0D5D4;
    color: #222;
    margin-top: 2px;
    margin-right: 1px;
    left: -5px;
}

.btn_close .cross::before,
.btn_close .cross::after {
    content: "";
    display: block;
    width: 70%;
    height: 5px;
    transform: rotate(45deg);
    transform-origin: 0% 200%;
    position: absolute;
    background-color: #02040A;
}

.btn_close .cross::after {
    transform: rotate(-45deg);
    transform-origin: 100% 200%;
    left: auto;
    right: 14%;
}

.globalMenuSp ul li a:hover,
.globalMenuSp .has-child a:hover {
    color: #999;
}

/* -------------------
  *アニメーション部分
----------------------*/
.sp_menu_wrap {
    transform: translateX(-100%);
    transition: all .5s ease-in-out;
}

.sp_menu_wrap.is-active {
    transform: translateX(0);
}


/*==================================================
ふわっ
===================================*/

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    width: 70%;
}

@media screen and (max-width: 768px) {
    .fadeUp {
        width: 100%;
    }
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    h3 {
        font-size: 17px;
        padding: 10px 0;
    }

    h2 img {
        height: 145px;
        width: 100%;
    }

    h2 .text1,
    h2 .text2 {
        font-size: 26px;
    }

    h2 .text2 {
        -webkit-text-stroke: 1px #fff;
    }

    .menu-box {
        margin: 32px 5% 70px;
    }

    .menu-image {
        flex-direction: column;
    }

    .menu-image img {
        margin: 0 auto;
        height: 224px;
        width: 100%;
        margin-bottom: 13px;
    }

    .notice {
        margin: 100px 5% 80px;
    }

    .inquiry {
        text-align: center;
    }

    .inquiry ul {
        display: block;
    }

    .inquiry ul li.contact-btn {
        margin: 0 70px;
    }

    .contact-btn {
        padding: 7px 20px 9px;
    }

    .contact-btn p {
        font-size: 24px;
    }

    .icon {
        display: flex;
        margin: 50px 40px;
        justify-content: space-around;
    }

}

.gallery,
.choice-btn {
    width: 100%;
}

.gallery img {
    width: 100%;
    margin: 0 auto;
}

.choice-btn img {
    width: 100%;
    /* 横幅を揃える（必要に応じて調整） */
    height: 200px;
    /* ✅ 縦サイズを固定 */
    object-fit: cover;
    /* ✅ はみ出す部分は中央から切り取り */
    display: block;
}


/*===============
　footer
===============*/
footer {
    display: block;
    width: 100%;
    font-size: 12px;
}

.foot_wrap {
    display: flex;
    margin: 0 auto;
    max-width: 90%;
    padding-bottom: 50px;
}

.foot_wrap div,
.foot_wrap ul {
    margin: 0 auto;
}

.fw_left,
.fw_center,
.fw_right {
    padding: 0 25px;
}

.fw_left {
    width: 20%;
}

.foot_wrap .ft_logo img {
    display: block;
    width: 100%;
}

.foot_wrap .ft_sns {
    margin: 0;
}

.foot_wrap .ft_sns ul {
    display: flex;
}

.foot_wrap .ft_sns li {
    display: inline-flex;
    margin: 0 auto;
    justify-content: space-evenly;
    align-items: center;
    width: 40px;
}

.foot_wrap .ft_sns li {
    font-size: 30px;
}

.foot_wrap ul.ft_ns {
    column-count: 2;
    font-size: 15px;
}

.ft_ns li {
    padding-bottom: 10px;
}

p.cpl {
    text-align: center;
    font-size: 11px;
    padding-bottom: 2rem;
}

@media screen and (min-width:768px) {
    footer {
        padding-top: 7rem;
        margin-top: 10rem;
    }

    .foot_wrap .ft_sns {
        margin: 0;
    }
}

@media screen and (max-width: 768px) {
    footer {
        font-size: 11px;
        line-height: 1.2rem;
        margin-top: 6rem;
    }

    footer p {
        font-size: 11px;
        line-height: 1.8em;
    }

    .foot_wrap {
        display: block;
    }

    .foot_wrap .ft_sns {
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }

    .foot_wrap .ft_logo img {
        width: 100%;
        display: block;
    }

    .foot_wrap ul.ft_ns li {
        margin: 0;
        display: inline-flex;
        justify-content: space-between;
        width: 100%;
        font-size: 13px;
        padding-bottom: 5px;
    }

    .fw_center,
    .fw_right {
        padding-top: 35px;
    }

    .fw_left {
        width: 70%;
        height: auto;
        padding-top: 10px;
    }

    main {
        width: 90%;
    }
}

@media screen and(min-width:768px) {

    .foot_wrap,
    .ft_logo img {
        padding-bottom: 3.5rem;
    }

}

.main_sns {
    width: 60%;
    height: auto;
    margin: 80px auto;
}

.main_sns ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.main_sns ul li a {
    padding: 20px 15px;
}

/*top明朝体
  .top_wrap_a p , .top_wrap_b p {
    font-family: serif;
  }
  */
/*トップテキスト*/
.introduction {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 30px;
}
