@charset "UTF-8";

::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: #ffffff;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 300;
    font-style: normal;
}

img {
    vertical-align: top;
    vertical-align: bottom;
}

.site-menu ul {
    padding-top: 30px;
    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: 25px 135px;
    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 {
    background-image: url(../img/top.jpg);
    max-width: 1200px;
    margin: 0 auto;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100px;
} */
.TOP {
    /* position: relative; */
    background-image: url(../img/bag2.jpg);
}
.top-inner{
    background-image: url(../img/header1.jpg);
    background-position: center center;
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
}

.top-img {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}
.top-inner h2{
    padding: 140px 0;
    text-align: center;
    font-size: 32px;
    letter-spacing: 2px;
    color: #fff;
}

main .title {
    color: #fff;
    font-size: 32px;
    /* position: absolute;
    right: 47%;
    top: 47%; */
}

/* ここから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;
}