@charset "utf-8";
/* ======================================
First view
====================================== */
.vid_contents {
    background: var(--primary-beige, #E1D8C7);
}

.video__sp {
    width: 100%;
    min-height: 850px;
    object-fit: cover;
}

.video__pc {
    display: none;
}

/* First view pc */
@media screen and (min-width: 1120px) {
    .container {
        display: grid;
        grid-template-columns: 46.1% 375px 27.7%;
        grid-template-rows: 100vh;
    }
    
    .vid_contents {
        grid-column: 1/2;
        grid-row: 1/2;
        background: var(--primary-beige, #E1D8C7);
        height:100%;
        position: relative;
    }

    .video__pc {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video__sp {
        display: none;
    }

    .main {
        grid-column: 2/3;
        grid-row: 1/2;
        display: flex;
        height: 100vh;
        overflow-y: auto;
        flex-direction: column;
    }

    .header {
        grid-column: 3/4;
        grid-row: 1/2;
        height: 100%;
    }
}

/* ======================================
 fadeIn
====================================== */
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}

/* ======================================
Article header
====================================== */
.article__header {
    padding: 25px 5.3% 50px;
    overflow: hidden;
    background: var(--primary-beige, #E1D8C7);
}

.header__pc {
    display: none;
}

.mainVisual {
    text-align: center;
}

/* Article header pc */
@media screen and (min-width: 1120px) {
    .article__header {
        height: 100vh;
        position: relative;
        padding: 0 0 0 20px;
    }

    .mainVisual {
        padding: 0 5.3%;
    }

    .mainVisual img {
        width: auto;
        height: 750px;
        position: absolute;
        top:  0;           
        bottom:  0;        
        left:  0;          
        right:  -15px; 
        margin: auto;
    }
}

/* ======================================
About
====================================== */
.section--about {
    margin: 35px 0;
    overflow: hidden;
}

.subTopic--about,
.topic--about{
    text-align: left;
    padding-left: 5.3%;
}

.concept{
    margin: 20px 0 0 5.3%;
}

.concept__title {
    color: #AA9488;
    font-size: 2rem;
    font-weight: 900;
}

.concept__txt {
    display: block;
    width: 188px;
    background: #AA9488;
    padding-left: 8px;
    margin-top: 5px;
    color: var(--primary-white, #FFFFFF);
    text-align: left;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 2.1;
}

.concept__txt:nth-of-type(2) {
    width: 293px;
}

.concept__txt p {
    display: inline-block;
    background: #AA9488;
    padding: 0 8px;
    margin-top: 5px;
    color: var(--primary-white, #FFFFFF);
    text-align: center;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 2.1;
}

.mainCaption {
    width: var(--contentWidth);
    margin: 20px auto 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.mainCaption__txt{
    margin-top: 21px;
}

.mainCaption__txt:first-of-type {
    margin-top: 0;
}

/* ======================================
Staff
====================================== */
.topic__staff {
    margin-top: 70px;
}

.owner__item {
    margin-top: 20px;
    background-image: url(../images/staff-background.jpg);
    background-repeat: no-repeat;
    position: relative;
}

.owner__item img {
    margin-top: 30px;
}

.staff__photo {
    overflow: hidden;
}


/* 動きが変わる写真 */
.owner__photo {
    width: 35%;
    height: auto;
    position: absolute;
    top: 29.4%;
    left: auto;
    right: -6px;
}

/* 自己紹介 */
.introduce__title {
    margin-top: 9.21px;
    padding-left: 5.3%;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2.5;
    letter-spacing: 1.2px;
}

.introduce__title::after {
    content: '';
    display: block;
    width: 89.3%;
    height: 0.5px;
    background: var(--primary-black, #696969);
}

.introduce__txt {
    padding-left: 5.2%;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
}

.introduce__sns {
    margin-top: 10px;
    padding-left: 5.2%;
}

.introduce__sns img {
    margin: 0 6px 0 0;
}

/* スライドショー */
@keyframes horizontal-animation {
  from {
    transform: translateX(0);
  }

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

.slider-container {
  display: flex;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  animation: horizontal-animation 30s linear infinite;
}

.slide {
  width: 160px;
  margin-right: 10px;
}

.slide img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (hover: hover) {
  .slider-container:hover .slider-wrapper {
    animation-play-state: paused;
  }
}

/* Assistant */
.assistant__item {
    margin-top: 50px;
    background-image: url(../images/staff-background.jpg);
    background-repeat: no-repeat;
    position: relative;
}

.assistant__item img {
    margin-top: 20px;
}

/* 動きが変わる写真 */
.assistant__photo {
    width: 35%;
    height: auto;
    position: absolute;
    top: 31.7%;
    left: auto;
    right: 11px;
}

/* 自己紹介 */
.introduce__sns img {
    margin-top: 0;
}

.slide-wrapper img {
    margin-top: 0;
}

/* ======================================
Photo Studio
====================================== */
.topic__photoStudio {
    margin-top: 70px;
}

.studio {
    margin-top: 15px;
}

.studio__seal {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -15px;
    left: 51%;
    transform: translateX(-51%);
    z-index: 20;
}

/* フェードイン */
.studio__photoSlider {
  position: relative;
  overflow: hidden;
  width: 82.9%;
  margin: 0 auto;
  border: 5px solid #FFF;
  box-shadow: 2px 3px 3px 0 #999;
}

.studio__photoSlider::before {
    content: "";
    display: block;
    padding-top: 66%;
}

.studio__photo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    animation: studio__photoSlider 24s infinite;
}

.studio__photo:nth-of-type(2) {
  animation-delay: 6s;
}
.studio__photo:nth-of-type(3) {
  animation-delay: 12s;
}
.studio__photo:nth-of-type(4) {
  animation-delay: 18s;
}

@keyframes studio__photoSlider {
	0%{
		opacity: 0;
		transform: scale(1.2);
	}

	12.5%{
		opacity: 1;
	}

	25%{
		opacity: 1;
	}

	37.5%{
		opacity: 0;
		transform: scale(1);
	}

	100%{
		opacity: 0;
	}
}

.studio__txt {
    margin: 21px 5.3% 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ======================================
Cafe
====================================== */
.topic__cafe {
    margin-top: 40px;
}

.cafe {
    margin-top: 15px;
}

.cafe__seal {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -15px;
    left: 51%;
    transform: translateX(-51%);
    z-index: 20;
}

/* フェードイン */
.cafe__photoSlider {
    position: relative;
	overflow: hidden;
	width: 82.9%;
    margin: 0 auto;
    border: 5px solid #FFF;
    box-shadow: 2px 3px 3px 0 #999;
}

.cafe__photoSlider::before {
    content: "";
	display: block;
	padding-top: 66%;
}

.cafe__photo {
    position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	opacity: 0;
	animation: cafe__photoSlider 30s infinite;
}

.cafe__photo:nth-of-type(2){
	animation-delay: 6s;
}
.cafe__photo:nth-of-type(3){
	animation-delay: 12s;
}
.cafe__photo:nth-of-type(4){
	animation-delay: 18s;
}
.cafe__photo:nth-of-type(5){
	animation-delay: 24s;
}

@keyframes cafe__photoSlider{
	0%{
		opacity: 0;
		transform: scale(1.2);
	}

	10%{
		opacity: 1;
	}

	20%{
		opacity: 1;
	}

	30%{
		opacity: 0;
		transform: scale(1);
	}

	100%{
		opacity: 0;
	}
}

.cafe__txt {
    margin: 21px 5.3% 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
}

/* menu */
.cafeMenu {
    margin-top: 40px;
}

.subTopic__menu {
    color: var(--primary-brown, #A18A7E);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto;
}

.topic__menu {
    color: var(--primary-brown, #A18A7E);
    text-align: center;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #A18A7E;
    font-family: "Oooh Baby";
    font-size: 3.2rem;
    margin: -8px auto 0;
}

.cafeMenu__item img {
    height: 157px;
}

.cafeMenu__list {
    text-align: center;
    margin-top: 10px;
}

.cafeMenu__item {
    display: inline-block;
    width: 157px;
    height: 220px;
    margin-right: 21px;
}

.cafeMenu__item--space {
    margin-right: 0;
}

.cafeMenu__txt {
    color: #696969;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 7px;
}

.cafe__sns {
    margin: 40px auto 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.90);
    width: 85.3%;
    padding: 27px 0px 25px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cafe__sns img {
    width: 45px;
    height: 45px;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
}

.sns__txt {
    color: var(--primary-darkBrown, #805E4D);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 5px;
}

.sns__title {
    color: #FFF;
    -webkit-text-stroke-width: 1.7px;
    -webkit-text-stroke-color: var(--primary-darkBrown, #805E4D);
    font-family: Poetsen One;
    font-size: 3rem;
    margin-top: -10px;
}

.sns__titleTxt {
    color: var(--primary-darkBrown, #805E4D);
    -webkit-text-stroke-width: 0px;
    font-family: "Zen Maru Gothic";
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 3px;
}

.btn--cafe {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* ======================================
 Gallery
====================================== */
.topic__gallery {
    margin-top: 70px;
}

.gallery {
    display: flex;
    width: 89%;
    padding: 25px 0px 30px 0px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    border: 1px solid #696969;
    background: #FFF;
    margin: 25px auto 30px;
}

.gallery__title {
    font-family: "Zen Antique Soft";
    font-size: 2rem;
    line-height: 1.75;
}

.gallery__title::after {
    content: '';
    display: block;
    width: 43px;
    height: 1px;
    background: var(--primary-black, #696969);
    margin: 10px auto;
}

.gallery__profile  {
    margin: 0 auto 0 4.8px;
    display: flex;
}

.gallery__profile img {
    width: 50px;
    height: 50px;
    margin-right: 8px;
}

.gallery__profile span {
    font-family: "Zen Antique Soft";
    font-size: 2rem;
    line-height: 2.3;
}

/* フェードイン */
.gallery__slider {
    position: relative;
	overflow: hidden;
	width: 100%;
    aspect-ratio: 2 / 3;
    margin-top: 13px;
}

.gallery__slider:before{
	content: "";
	display: block;
	padding-top: 66%;
}

.gallery__photo {
    position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	opacity: 0;
	animation: gallery__slider 30s infinite;
}

.gallery__photo:nth-of-type(2){
	animation-delay: 6s;
}
.gallery__photo:nth-of-type(3){
	animation-delay: 12s;
}
.gallery__photo:nth-of-type(4){
	animation-delay: 18s;
}
.gallery__photo:nth-of-type(5){
	animation-delay: 24s;
}

@keyframes gallery__slider{
	0%{
		opacity: 0;
		transform: scale(1.2);
	}

	10%{
		opacity: 1;
	}

	20%{
		opacity: 1;
	}

	30%{
		opacity: 0;
		transform: scale(1);
	}

	100%{
		opacity: 0;
	}
}

.gallery__reaction {
    width: 89%;
    margin-top: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reaction__heart,
.reaction__message {
    margin-right: 7px;
}

.gallery__caption {
    width: 96%;
    margin-top: 13px;
}

.gallery__txt {
    font-family: "Zen Antique Soft";
    font-size: 1.3rem;
}

.gallery__hashtag {
    margin-top: 13px;
    font-family: "Zen Antique Soft";
    font-size: 1.4rem;
}

.btn--gallery {
    width: 52%;
    display: flex;
    justify-content: center;
    margin: 30px auto;
}

/* ======================================
Column
====================================== */

.section--column {
    background: var(--primary-white, #FFFFFF);
    padding: 35px 0;
    margin-top: 40px;
    border-radius: 200px 200px 0 0;
    flex-direction: column;
    align-items: center;
}

.column__caption img {
    display: block;
    margin: 0 auto;
}

.column__title {
    width: 200px;
    height: auto;
}

.column__mainPhoto {
    width: 100%;
    height: auto;
    margin-top: 35px;
}

.column__gallery {
    width: 90.1%;
    margin: 20px auto 0;
}

.column__gallery img {
    width: 100%;
    height: auto;
}

/* ======================================
 Plan
====================================== */
.topic__plan {
    margin-top: 30px;
}

.swiper-container {
    margin-top: 30x;
}

.card-wrapper {
    width: 100%;
    height: auto;
    margin: 25px auto;
    padding: 0 9.3%;
    overflow: hidden;
}

.plan__item {
    user-select: none;
    margin: 0 auto 30px;
    display: flex;
    width: 80%;
    max-width: auto;
    padding: 8.3%;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    border: 1px solid #696969;
    background: #FFF;
}

.plan__item img {
    width: 100%;
    height: auto;
}

.plan__list .plan__ittem {
    cursor: grabbing;
}

.plan__title {
    margin: 15px 0 7px;
    color: var(--primary-darkBrown, #805E4D);
    font-family: "Zen Antique Soft";
    font-size: 1.8rem;
}

.plan_txt {
    width: 250px;
    font-size: 1.5rem;
    font-weight: 700;
}

.btn--plan {
    margin-top: 20px;
}

.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5s;
    background: #A18A7E;
}

/* ======================================
 Flow
====================================== */
.topic__flow {
  margin-top: 70px;
}

.steps {
  margin: 30px auto 0;
  position: relative;
  padding-left: 75px;
  max-width: 600px;
}

.steps::before {
  position: absolute;
  content: '';
  top: 6px;
  left: 51px;
  width: 2.5px;
  height: 80%;
  background: var(--primary-brown);
  z-index: 1;
}

.step {
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
}

.step::before {
  content: attr(data-count);
  position: absolute;
  left: -38px;
  top: 4px;
  width: 30px;
  height: 30px;
  background-color: var(--primary-brown);
  color: var(--primary-whiteBeige);
  border-radius: 50%;
  text-align: center;
  font-size: 1.6rem;
  line-height: 30px;
  font-weight: 700;
  z-index: 2;
}

.step h4 {
  color: var(--primary-brown);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
}

/* ======================================
 Contact
====================================== */
.topic__contact {
    margin-top: 70px;
    margin-bottom: 15px;
}

.postCard {
    background: var(--primary-white, #FFFFFF);
    padding: 25px 0;
    position: relative;
}

.postCard::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--primary-black, #696969);
    position: absolute;
    top: 0;
}

.postCard::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--primary-black, #696969);
    position: absolute;
    bottom: 0;
}

.contact__message {
    margin: 46px auto 0;
    width: 80%;
    height: auto;
}

.access {
    margin: 39px 8% 0;
}

.access__topic {
    font-size: 2.3rem;
    font-weight: 700;
}

.access__address {
    margin-top: 15px;
    font-size: 1.6rem;
    font-weight: 700;
}

.access__address::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--primary-black, #696969);
    margin: 3px auto;
}

.access__list {
    margin: 15px 8% 0;
}

.access__item {
    font-size: 1.5rem;
    font-weight: 700;
}

.access__item:nth-child(2) {
    margin-top: 15px;
}

.map {
    width: 84%;
    height: auto;
    margin: 15px auto;
}

.contact__tel {
    margin: 0 auto;
    text-align: center;
}

.contact__title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-top: 20px;
}

.contact__number {
    color: var(--primary-darkBrown, #805E4D);
    font-size: 2.8rem;
    font-weight: 700;
}

.btn--contact {
    width: 52%;
    display: block;
    text-align: center;
    font-size: 1.2rem;
    margin: 15px auto 30px;
}

/* ======================================
Loding
====================================== */
.loading-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #FEFBF2;
}

.loading-5 span {
    display: inline-block;
    color: #89604c;
    font-weight: 600;
    font-size: 4rem;
    animation: animation-loading-5 1s infinite;
}

.loading-5 span:nth-of-type(2) {
    animation-delay: .1s;
}

.loading-5 span:nth-of-type(3) {
    animation-delay: .2s;
}

.loading-5 span:nth-of-type(4) {
    animation-delay: .3s;
}

.loading-5 span:nth-of-type(5) {
    animation-delay: .4s;
}

.loading-5 span:nth-of-type(6) {
    animation-delay: .5s;
}

.loading-5 span:nth-of-type(7) {
    animation-delay: .6s;
}

.loading-5 span:nth-of-type(8) {
    animation-delay: .7s;
}

.loading-5 span:nth-of-type(9) {
    animation-delay: .8s;
}

.loading-5 span:nth-of-type(10) {
    animation-delay: .9s;
}

/* animation */
@keyframes animation-loading-5 {
    50% {
        transform: translateY(10px);
    }
}

/* end of loding */
.loaded {
    display: none;
}

/* fade in container */
.container {
    display: none;
}

/* 変更点 */
.container.open {
    display: block;
}

@media screen and (min-width: 1120px) {
    .container.open {
        display: grid;
    }
}