html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    color: #434343;
    font-size: 1.6rem;
    font-family: "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", noto-sans-cjk-jp, "ＭＳ Ｐゴシック", sans-serif;
    ;
    font-feature-settings: "palt";
    letter-spacing: 0.1rem;
}

img {
    min-width: 100%;
    height: auto;
}

.pc {
    display: block;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #eee;
    text-align: center;
    color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg {
    width: 300px;
}

/*=============== SVGアニメーション内の指定 =================*/

/*アニメーション前の指定*/
#mask path {
    fill-opacity: 0;
    /*最初は透過0で見えない状態*/
    transition: fill-opacity .5s;
    /*カラーがつく際のアニメーション0.5秒で変化*/
    fill: none;
    /*塗りがない状態*/
    stroke: #333;
    /*線の色*/
}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path {
    fill: #333;
    /*塗りの色*/
    fill-opacity: 1;
    /*透過1で見える状態*/
    stroke: none;
    /*線の色なし*/
}

.inner {
    max-width: 1040px;
    margin: 0 auto;
}

.p130 {
    padding: 100px 20px 30px;
}

.p110 {
    padding: 80px 20px 30px;
}

a {
    cursor: pointer;
}

a:hover {
    transition: 0.5s;
}

.tc {
    text-align: center;
}

header {
    width: 100%;
    position: fixed;
    background-color: #FFE5DE;
    z-index: 10;
    height: 80px;
}

.header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}

.header p {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 0;
    font-size: 1.4rem;
    line-height: 1.3;
    left: 2%;
}

.header p span:last-of-type {
    font-size: 2rem;
    font-weight: 600;
}

.logo {
    width: 160px;
    height: auto;
}

.hamburger {
    position: absolute;
    right: 0;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 30px;
    height: 1px;
    background: #333;
    border-radius: 2px;
    display: block;
    position: absolute;
    transition: all 0.3s;
}

.hamburger .bar-top {
    transform: translate(0, -10px);
}

.hamburger .bar-bottom {
    transform: translate(0, 10px);
}

.checkbox:checked~.hamburger .bar-middle {
    opacity: 0;
}

.checkbox:checked~.hamburger .bar-top {
    transform: translate(0, 0) rotate(45deg);
}

.checkbox:checked~.hamburger .bar-bottom {
    transform: translate(0, 0) rotate(-45deg);
}

.checkbox {
    display: none;
}

.nav-menu {
    font-family: montserrat;
    position: fixed;
    width: 280px;
    height: 100%;
    background: #000;
    opacity: 0.8;
    color: #fff;
    top: 0;
    left: -100%;
    transition: all 0.5s;
}

.nav-menu ul {
    margin-top: 100px;
}

.nav-menu li {
    margin-bottom: 30px;
}

.nav-menu a {
    text-align: center;
    font-size: 30px;
}

.checkbox:checked~.nav-menu {
    left: 0;
}

@media (max-width:480px) {
    header {
        height: 60px;
    }

    .header p {
        display: none;
    }

    .logo {
        width: 120px;
    }
}

.slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slider-1 24s linear infinite;
}

.slide-image:nth-child(1) {
    background-image: url(../images/top-mv01.jpg);
    animation-delay: -2s;
}

.slide-image:nth-child(2) {
    background-image: url(../images/top-mv03.jpg);
    animation-delay: 6s;
}

.slide-image:nth-child(3) {
    background-image: url(../images/top-mv02.jpg);
    animation-delay: 14s;
}

@keyframes slider-1 {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    4.16% {
        opacity: 1;
    }

    33.33% {
        opacity: 1;
    }

    41.66% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}

h1 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.4rem;
    color: #fff;
    font-weight: 300;
    text-shadow: 2px 2px 1px rgba(255 162 162);
    min-width: 300px;
}

@media (max-width:480px) {
    .slide-image:nth-child(3) {
        background-position: right;
    }

    h1 {
        bottom: 2%;
        font-size: 2rem;
    }
}

h2 {
    font-family: montserrat;
    font-weight: 500;
    text-align: center;
    font-size: 2.4rem;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.2em;
    text-align: center;
}

h2 span {
    font-size: 1.8rem;
    font-weight: 100;
}

.concept-list h2 {
    text-align: left;
}

.concept-item {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0 80px;
    margin-top: 80px;
}


.concept-item:first-of-type {
    background-image: url(../images/concept-bg01.png);
}

.concept-item:last-of-type {
    background-image: url(../images/concept-bg02.png);
}

.concept-list {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    padding: 0 20px 60px;
}

.concept-list div {
    width: 60%;
}

.concept-list p {
    margin-top: 24px;
    line-height: 2;
}

.concept-text {
    padding: 50px 30px;
}

/* 下から上に移動しながらフェードイン */
.fadeInUp {
    opacity: 0;
    transform: translateY(100px);
}

/* 上から下に移動しながらフェードイン */
.fadeInDown {
    opacity: 0;
    transform: translateY(-100px);
}

/* 右から左に移動しながらフェードイン */
.fadeInLeft {
    opacity: 0;
    transform: translate(-100px, 0);
}

/* 左から右に移動しながらフェードイン */
.fadeInRight {
    opacity: 0;
    transform: translateX(100px);
}

/* フェードインアニメーション */
@keyframes fadeIn {
    0% {}

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

/* フェードインさせるクラス */
.fadeIn {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

/* モーダルを開くボタン */
.modal-open {
    float: right;
    font-size: 1.6rem;
    font-weight: bold;
    width: 300px;
    height: 60px;
    color: #fff;
    background: #21737c;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transform: translate(-80%, -50%);
}

.modal-open:hover {
    opacity: 0.5;
    transition: 0.8s;
}

/* モーダルと背景の指定 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 50%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
}

/* モーダルの擬似要素の指定 */
.modal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
    opacity: 1;
    visibility: visible;
}

/* モーダル内側の指定 */
.modal-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 600px;
    width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
    background: #fff;
    text-align: left;
    line-height: 1.8;
    border-radius: 3px;
    padding: 20px;
}

.modal-content p {
    margin: 1em 0;
}

.modal-content p span {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    padding-top: 8px;
}

@media (max-width: 968px) {
    .concept-list {
        display: block;
    }

    .concept-list div {
        width: 90%;
        margin: 0 auto;
        overflow: hidden;
    }

    .concept-text {
        padding: 0;
    }
}

@media (max-width:480px) {
    .concept-item:first-of-type {
        background-image: url(../images/concept-bg01_mb.png);
    }

    .concept-item:last-of-type {
        background-image: url(../images/concept-bg02_mb.png);
    }

    .modal {
        top: 40px;
    }

    .modal-open {
        transform: translate(-10%, -30%);
    }
}

#news {
    background-color: #FFC7C6;
    color: #fff;
    margin-top: -20px;
}

.news-nav {
    display: flex;
    justify-content: space-around;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.8rem;
    font-weight: 500;
}

#news ul li a:hover {
    color: #F58DBA;
}

.lead {
    text-align: center;
    margin: 32px 0;
}

.news-article {
    display: flex;
    justify-content: space-between;
    margin: 24px auto;
}

.news-article p {
    padding: 10px 20px 16px;
    line-height: 1.8;
    height: 150px;
}

.news-article li {
    width: 310px;
    margin: 0 auto;
    background-color: #fff;
    color: #434343;
    box-shadow: 10px 5px 5px rgb(227, 138, 138);
}

.news-article_title {
    padding: 20px 20px 0;
}

.news-article_title a {
    display: inline-block;
    width: auto;
    margin: 0 auto;
}

.news-article_title a:hover {
    opacity: 0, 5;
}

.loop_wrap {
    display: flex;
    width: 100vw;
    height: 150px;
    overflow: hidden;
}

.loop_wrap img {
    width: auto;
    height: 100px;
}

.loop_wrap img:first-child {
    animation: loop 50s -25s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

@media (max-width:480px) {
    .news-article {
        display: block;
        width: auto;
    }

    .news-article li {
        margin-bottom: 20px;
    }

    .lead {
        padding: 0 10px 0;
    }
}

.calendar-note {
    display: flex;
    align-items: center;
}

.calendar-note dt {
    border: solid 1px #000;
    width: 50px;
    height: 35px;
    background-color: #ffafac;
    margin-right: 5px;
}

.calendar-wrap {
    margin: 40px auto;
    max-width: 1110px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 968px) {
    .calendar-wrap {
        display: flex;
        flex-direction: column;
    }
}

.calendar {
    width: 100%;
    border-collapse: collapse;
}

.calendar th,
.calendar td {
    border: 1px solid #000;
    text-align: center;
    padding: 10px;
    font-size: 1.6rem;
    font-weight: bold;
}

.calendar th {
    padding: 6px 10px;
}

/* .calendar td {} */
@media (max-width: 968px) {

    .calendar th,
    .calendar td {
        padding: 6px;
        font-size: 12px;
    }

    .calendar th {
        padding: 3px 6px;
    }
}

.month {
    border: none !important;
}

.calendar .sun {
    color: #c15f5d;
    background-color: #ffafac;
}

.calendar .sat {
    color: #7ab6f3;
    background-color: #e7f6fd;
}

.calendar .mute {
    color: #c2c2c2;
}

.calendar .off {
    background-color: #ffafac;
}

.menu-item {
    display: flex;
}

.menu-item dl {
    margin-top: 16px;
    width: 100%;
    min-width: 320px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.menu-list {
    width: 50%;
}

.menu-list dl {
    display: flex;
    justify-content: space-between;
}

.list-l {
    padding-right: 50px;
}

.list-r {
    padding-left: 50px;
}

.menu-list_block {
    margin-top: 40px;
}

.menu-list_block h4 {
    margin-top: 20px;
}

.menu-list_block h3 span {
    display: block;
    font-size: 1.4rem;
}

h4 span {
    display: block;
    font-size: 1.4rem;
}

#menu ul {
    margin-top: 32px;
    font-size: 1.4rem;
    line-height: 2;
}

#menu ul li:last-of-type {
    font-size: 2rem;
    font-weight: bold;
}

@media (max-width: 968px) {
    .menu-item {
        display: block;
    }

    .menu-list {
        width: 90%;
        margin: 0 auto;
    }

    .list-l,
    .list-r {
        padding: 0;
    }
}

@media (max-width:480px) {
    #menu .p130 {
        padding: 100px 0 30px;
    }
}

#staff {
    background-image: url(../images/staff-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

#staff ul {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}

#staff ul li {
    width: 33.333%;
    padding: 20px;
}

.sample-img {
    cursor: pointer;
    max-width: 500px;
    position: relative;
    width: 100%;
  }
  .sample-img img {
    height: auto;
    width: 100%;
  }
  .hover-mask {
    align-items: center; /* テキストの中央揃え */
    background: rgba(0, 0, 0, .5); /* マスクの色(黒の50%) */
    bottom: 0;
    color: #fff; /* テキストの色 */
    display: flex; /* テキストの中央揃え */
    height: auto;
    justify-content: center; /* テキストの中央揃え */
    left: 0;
    opacity: 0; /* 最初は透明(非表示) */
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .6s ease; /* ゆっくりopacityのみへ変化させる */
    width: 100%;
    font-size:1rem;
  }
  .hover-mask:hover {
    opacity: 1; /* hoverしたら透過しない(表示させる) */
  }
  .hover-mask:active {
    opacity: 1; /* hoverしたら透過しない(表示させる) */
  }
  .hover-mask p {
    width: 80%; /* テキストを横幅いっぱいにならないようにする */
  }
  .hover-mask span{
    font-weight: 800;
  }
@media(max-width:968px) {
    #staff ul {
        display: block;
    }

    #staff ul li {
        width: 60%;
        margin: 0 auto 20px;
    }
}

@media (max-width:480px) {
    #staff {
        background-image: url(../images/staff-bg_mb.png);
    }

    #staff ul li {
        width: 90%;
    }
}

.g-map {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
}

.g-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
}

#access {
    background-image: url(../images/access-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.access-item {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
}

.access-item address {
    min-width: 550px
}

address {
    margin-top: 30px;
}

.address-name {
    font-size: 2rem;
    font-weight: 600;
}

.address-name span {
    display: block;
    font-size: 1.6rem;
}

.address-box {
    line-height: 2.5;
    margin-top: 40px;
}

.address-box span {
    font-size: 1.8rem;
    font-weight: 600;
}

@media (max-width: 968px) {
    .access-item {
        display: block;
        text-align: center;
    }
}

@media (max-width:480px) {
    .access-item address {
        min-width: initial;
    }
}

.insta-link {
    display: block;
    margin: 30px;
    /* cursor: pointer; */
}

.insta-imgs {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.insta-imgs li {
    padding: 0 30px;
}

#products {
    margin: 80px auto;
    padding-top: 50px;
}

.mobile {
    display: none;
}

footer {
    background: #FFE5DE;
}

footer nav ul {
    display: flex;
    justify-content: space-around;
    padding: 80px 50px;
}

footer nav ul li a:hover {
    color: #F58DBA;
}

.insta-icon {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.footer-sns {
    display: flex;
    justify-content: center;
    line-height: 3;
}

.footer-sns:hover {
    color: #f58dba;
}

small {
    display: block;
}

@media (max-width:480px) {
    #products {
        margin: 0 auto 40px;
        padding-top: 0;
    }

    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }

    .insta-imgs {
        flex-wrap: wrap;
    }

    .insta-imgs li {
        width: calc(50%);
        padding: 0px 10px 10px 10px;
    }

    footer nav ul {
        display: block;
    }

    footer nav ul li {
        margin-bottom: 10px;
    }
}

/* news 個別 */
.news-directory {
    padding-top: 200px;
}

.news-directory h2:after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #f58dba;
    margin: 10px auto;
}

.news-content {
    margin: 80px 10px;
    display: flex;
    justify-content: space-between;
}

.news-wrapper {
    width: 65%;
}

.news-wrapper p {
    padding: 40px 0;
    /* width: 70%; */
    line-height: 2;
}

.article-wrapper {
    width: 300px;
    margin: 0 auto;
    margin-top: 80px;
    line-height: 3;
}

.article-wrapper h3 {
    border-bottom: solid 1px #333;
}

.article-wrapper ul {
    margin-bottom: 40px;
}

.article-wrapper ul li {
    border-bottom: dashed 1px #333;
}

.news-article_images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
a.btn_01 {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 120px;
    font-weight: bold;
    border: 2px solid #f58dba;
    color: #f58dba;
    transition: 0.5s;
}

a.btn_01:hover {
    color: #fff;
    background: #f58dba;
}

@media (max-width:786px) {
    a.btn_01{
        margin-top: 20px;
    }
    .news-directory {
        padding-top: 100px;
    }

    .news-content {
        margin-top: 0;
        display: block;
    }

    .news-wrapper {
        width: 100%;
    }

    .news-wrapper p {
        width: 100%;
        padding: 10px;
    }
}

.article-content{
    display: flex;
}

.archives h3 {
    padding-bottom: 10px;
    border-bottom: solid 2px #505050;
    width: 90%;
    margin-bottom: 20px;
    font-size: 2rem;
}
.archives-img {
    width: 30%;
    margin-right: 40px;
}
.archives-article{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.archives li{
    margin-bottom: 80px;
}
.archives-article p{
    max-width: 450px;
}
@media (max-width:786px){
    .archives ul{
        padding: 20px 10px;
    }
    .article-content{
        display: block;
    }
    .archives-img{
        width: 100%;
    }
    .archives h3 {
        width: 100%;
    }
}