@charset "UTF-8";
*,
img,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    color: #595250;
    line-height: 1;
    background-color: #fff;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 300;
    font-style: normal;
}

img {
    max-width: 100%;
    vertical-align: top;
    vertical-align: bottom;
}

.site-menu ul {
    display: block;
    text-align: center;
}

.site-menu ul li {
    margin-top: 20px;
    font-size: 24px;
    letter-spacing: 1.5px;
}
.site-menu ul li a:hover {
    border-bottom: solid #fff 3px;
  }


.atrmenu {
    width: 40%;
    margin: 0 auto;
}

.header {
    max-width: 1200px;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    /* 重なり順のこと */
    z-index: 9999999;
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #fff; */
    padding: 20px 60px;
    height: 100%;
    /* 子要素でabsolute */
    position: relative;
}

.header-logo {
    color: #fff;
    font-size: 24px;
    letter-spacing: 2px;
}

.header-menu {
    color: #fff;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 400;
}

.manu-flex {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-site-menu {
    position: absolute;
    /* 親要素の１番下につく */
    top: 1%;
    left: 0;
    right: 0;
    color: #fff;
    background-color: #fdb0ad;
    padding: 30px 0 1000px;
    /* 表示にする */
    /* ボタンを押す前は非表示 */
    /* display: none; */
    /* 縦方向の移動 */
    /* transform: translateY(-100%); */
    transition: all 1s;
    /* 重なり順後ろに */
    z-index: -1;
    clip-path: inset(0 0 100% 0%);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-top: 100px;
}

/* .is-showを持っている場合 */
.header-site-menu.is-show {
    clip-path: inset(0 0 0 0);
}

/* ハンバーガーメニュー */
.toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
}

.btn {
    display: block;
    width: 70%;
    height: 3px;
    background-color: #fff;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s;
    /* border-radius: 3px; */
}

.btn::after,
.btn::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
    /* border-radius: 3px; */
}

.btn::before {
    top: -10px;
}

.btn::after {
    top: 10px;
}

.toggle-menu-button.is-show .btn {
    background-color: transparent;
}

.toggle-menu-button.is-show .btn::before {
    top: 0;
    transform: rotate(45deg);
}

.toggle-menu-button.is-show .btn::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ここからmain */
.TOP {
    position: relative;
}

.top-img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.top-text img {
    flex-shrink: 0;
    padding: 0 10px;
    width: 100%;
    transform: translateX(-100%);
    animation: ltor 10s linear infinite;
}
/* アニメーション */
@keyframes ltor {
    100% {
        transform: translateX(0);
    }
}

.top-text {
    position: absolute;
    bottom: 3%;
    /* top: 650px;
    right: 0;
    left: 0;
    max-width: 1200px; */
    margin: 0 auto;
    display: flex;
    gap: 10px;
    overflow: hidden;
}

/* ピンクの線 */
.border{
    border-bottom: solid #f49ab6 3px;
    width: 200px;
    padding-top: 15px;
}
/* .border{
    animation: fadein 1s infinite linear;
}
@keyframes fadein {
    0% {
       opacity: 0;
       transform: translateX(0);
    }
    100% {
       opacity: 1;
       transform: translateX(20px);
    }
  } */
.kaiten {
    animation: rotation 7s infinite linear; /* 2秒で1回転、無限に繰り返す */
  }
  
  @keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }


/* ここからメイン about*/
.about{
    padding: 100px 0;

    background-color: #edeae3;
}
.about h2 span {
    display: block;
    font-size: 24px;
}
/* aboutのタイトル */
.about h2 {
    max-width: 480px;
    margin: 0 auto;
    font-size: 32px;
    text-align: center;
    letter-spacing: 4px;
    line-height: 2;
    padding-bottom: 30px;
}
.about-flex{
    display: flex;
    max-width: 1120px;
    gap: 80px;
    padding: 0 108px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}
.about-img{
    width: 380px;
    height: 450px;
}
.about-a{
    font-size: 16px;
    line-height: 2.5;
    letter-spacing: 1.5px;
    padding-top: 50px;
}
.p-span{
    display: block;
    padding-top: 60px;
}
/* 回転するところ */
.kaiten-box{
    position: relative;
    flex-shrink: 0;
}
.kaiten{
    display: block;
    width: 280px;
    position: absolute;
    bottom: -17%;
    padding-left: 32px;
    left: -32%;
}
/* ここからMENULIST */
.menulist {
    background-color: #edeae3;
}
.button-menu{
    display: flex;
    justify-content: center;
}
.bag{
    background-color: #edeae3;
}
.menu-title {
    font-size: 32px;
    letter-spacing: 1.5px;
    text-align: center;
    color: #f49ab6;
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 170px;
}
.menu-flex{
    max-width: 1200px;
    padding: 0 60px;
    padding-bottom: 100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    justify-content: space-around;
}
.menu-flex img {
    margin-top: -105px;
    width: 50%;
    flex-shrink: 0;
    object-fit: cover;
    /* height: 720px; */
}
/* ここはmenu-faceのテキスト */
.menu-face{
    padding-top: 80px;
}
.menu-face h3 {
    font-size: 32px;
    letter-spacing: 2px;
    line-height: 2;
    /* 横線 */
    /* border-bottom: solid #fdb0ad 3px; */
}
.menu-face h3 span {
    font-size: 24px;
    display: flex;
}
.menu-face p {
    padding-top: 60px;
}
.menu-face p {
    font-size: 16px;
    line-height: 2.5;
    letter-spacing: 1.5px;
    padding-bottom: 30px;
}
/* ここからボタン */
.button-menu a{
    display: inline-block;
    width: 75%;
    border-radius: 25px;
    padding: 30px;
    color: #fff;
    letter-spacing: 2px;
    background-image: linear-gradient(to top,#fac4ba,#ffa5a5);
    text-align: center;
    font-weight: 400;
}
.button-menu a::after{
    content: "";
    display: inline-block;
    left: 4px;
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 8px solid transparent;
    border-left: 15px solid #fff;
    margin-left: 30px;
}



.button-menu a:hover {
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
  }

  .size a{
    width: 100%;
  }
   







.img-box{
    flex-shrink: 0;
}

/* ここからメニューボディー */
.menu-flex-b{
    display: flex;
    max-width: 1200px;
    padding: 0 60px;
    padding-bottom: 60px;
    margin: 0 auto;
    gap: 80px;
    justify-content: space-between;
    align-items: center;
}
.body{
    width: 60%;
    object-fit: cover;
    /* height: 470px; */
}

/* ここからバナー */
.banner-flex{
    background-color: #edeae3;
    display: flex;
    max-width: 1080px;
    padding: 0 20px;
    padding-bottom: 60px;
    margin: 0 auto;
    gap: 80px;
    justify-content: space-between;
}
.banner-flex p {
    padding-top: 20px;
    font-size: 16px;
    letter-spacing: 2px;
}
/* バナーの矢印 */
.banner-a p::after{
    content: "";
    display: inline-block;
    left: 4px;
	box-sizing: border-box;
	width: 4px;
	height: 4px;
	border: 5px solid transparent;
	border-left: 10px solid #595250;
    margin-left: 30px;
}

.banner-b p::after{
    content: "";
    display: inline-block;
    left: 4px;
	box-sizing: border-box;
	width: 4px;
	height: 4px;
	border: 5px solid transparent;
	border-left: 10px solid #595250;
    margin-left: 30px;
}










/* ここからfooter */
footer{
    padding-top: 60px;
    margin-top: 60px;
    background-color: #fdb0ad;
    width: 100%;
    margin: 0 auto;
}
.footerbox{
    display: flex;
    color: #fff;
    max-width: 400px;
    margin:  0 auto;
    justify-content: space-between;
    padding-bottom: 30px;
}
.footerbox h2 {
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 400;
}
.footerbox p {
    font-size: 16px;
    letter-spacing: 1.5px;
    line-height: 1.5;
    font-weight: 400;
}
footer ul{
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    margin:  0 auto;
    color: #fff;
    padding-bottom: 30px;
    font-weight: 400;
}
.footerbox ul li {
    font-size: 16px;
    letter-spacing: 1.5px;
}
footer ul li a:hover{
    border-bottom: solid #fff 2px;
}
small{
    font-size: 10px;
    display: block;
    text-align: center;
    color: #fff;
    padding-bottom: 20px;
}

/* ここからスマホ1000px */
@media(max-width:1000px){
    .about-flex{
        display: block;
        padding: 0 60px;
        max-width: 600px;
        margin: 0 auto;
    }
    .about-img {
        width: 100%;
        height: 570px;
    }
    .about-a{
        padding-top: 110px;
    }
    .menu-flex{
        gap: 50px;
    }
    .menu-flex-b{
        gap: 50px;
    }
    .menu-face p {
        padding-top: 30px;
    }
    .body{
        width: 55%;
        height: 570px;
    }
}

/* ここからスマホ 700px*/
@media(max-width:700px){
.about-a{
    padding-top: 110px;
}
.about h2{
    font-size: 24px;
}
.about h2 span {
    font-size: 18px;
}
.about-flex{
    display: block;
    padding: 0 60px;
}
.about-img{
    height: auto;
}
.kaiten-box {
    width: 70%;
    margin: 0 auto;
}
/* ここからメニュースマホ700px*/
.menu-title{
    font-size: 24px;
}
.menu-flex{
    display: block;
}
.menu-flex img{
    width: 100%;
}
.menu-flex-b{
    flex-direction: column-reverse;
    gap: 0;
}
.body{
    width: 100%;
    height: 400px;
}
.button-menu a{
    width: 65%;
}
.size a{
    width: 65%;
}
.banner-flex p {
    font-size: 12px;
    letter-spacing: 1px;
    padding-top: 10px;
}
.banner-b p::after{
    margin-left: 10px;
    border: 4px solid transparent;
    border-left: 8px solid #595250;
}
.banner-a p::after {
    margin-left: 10px;
    border: 4px solid transparent;
    border-left: 8px solid #595250;
}
}
 /* ここからスマホ535px */
 @media(max-width:535px){
    .button-menu a{
        width: 85%;
        padding: 25px;
    }
    .size a{
        width: 85%;
        padding: 25px;
    }
 }

/* ここからスマホ428px */
@media(max-width:428px){
    .header-inner{
        padding: 20px 30px;
    }
    .toggle-menu-button{
        width: 35px;
    }
    .header-menu  {
        font-size: 18px;
    }
   .header-logo{
    font-size: 18px;
   }
    .about{
        padding: 60px 0;
    }
    .about-flex{
        padding: 0 35px;
    }
    .about-a{
        font-size: 14px;
        line-height: 2.0;
    }
    .kaiten-box {
        width: 70%;
        margin: 0 auto;
    }
    .menu-face{
        padding-top: 60px;
    }
    .menu-face h3{
        font-size: 24px;
        line-height: 1.5;
    }
    .menu-face h3 span {
        font-size: 18px;
    }
    .menu-face p {
        font-size: 14px;
        line-height: 2.0;
        padding-top: 30px;
    }

    .button-menu a{
        width: 100%;
        padding: 25px;
    }
    .size a{
        width: 100%;
        padding: 25px;
    }
    .banner-a{
        padding-bottom: 30px;
    }
    .banner-flex p {
        padding-top: 5px;
    }
    .banner-flex{
        display: block;
        padding: 0 45px 60px 45px;
    }
    /* ここからfooter428px */
    footer {
        padding-top: 30px;
    }
    .footerbox {
        max-width: 350px;
        padding: 0 20px 10px 20px;
    }
    .footerbox h2 {
        font-size: 18px;
    }
    .footerbox p {
        font-size: 14px;
    }
    footer ul {
        max-width: 350px;
        padding: 0 20px;
        display: block;
        line-height: 1.5;
        padding-bottom: 20px;
    }
    
}

/* jsアニメーション */
.scroll{
    transform: translateY(30px);
    opacity: 0;
    transition: all 2s;
}
.scroll.on{
    transform: translateY(0px);
    opacity: 1;
}
/* 横からアニメーション */
.scrolle {
    opacity: 0;
    transform: translateX(-50px); /* 横ずれ */
    transition: all 1s ease-out;
}

.scrolle.on {
    opacity: 1;
    transform: translateX(0);
}
.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 30px; height: 30px;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
  
    /* ペールカラーグラデーション */
    background: linear-gradient(135deg, 
                #f8e6e0, /* ペールピンク */
                #e0f0f8  /* ペールブルー */
              );
    box-shadow: 0 0 8px rgba(224, 240, 248, 0.7); /* ふんわり光らせる */
  }
  