@charset "UTF-8";

/*PCサイズ(960-1200)レスポンシブ*/
@media(min-width:960px)  and (max-width:1200px)
{
/* 共通 */
body {
    min-width: 960px;
    max-width: 1200px;
    background-color: #F7EDDA;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.section-wrap {
    margin: 20px 0 150px 0;
    width: 100%;
}

h1 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

.openbtn {
    display: none;
}

nav {
    display: none;
}

.sp-name {
    display: none;
}
 
/*========= 
ハンバーガーメニュー
ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #999;
    /*動き*/
    transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/
#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* =========================
ヘッダー
========================= */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.header-img {
    width: 20%;
}

.header-logo {
    width: 100%;
}

.gnavi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vw;
}

/* =========================
キービジュアル
=========================== */
.kv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.kv h1 {
    width: 65%;
    font-size: 56px;
    line-height: 100px;
    color: #DAA095;
    letter-spacing: 4px;
}

#pc-kv1920 {
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
}

#tabsp-kv {
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
    display: none;
}

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
    height: 100vw;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 45vh;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

.pc-kv1920 video {
    width: 80vw;
    object-fit: scale-down;
    margin-left: 0;
}

.sp-kv video {
    width: 100vw;
    object-fit: scale-down;
    margin-left: 0;
    display: none;
}

#sp-container{
    background: #F7EDDA;
	padding:50px 0;
}

/*===========================
スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:10%;
  right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
  position: absolute;
  left:-20px;
  bottom:120px;
    /*テキストの形状*/
  color: #63534A;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 120px;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #63534A;
    transform: skewX(-31deg);
}

.scrolldown4:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:120px;
  right:0;
    /*矢印の形状*/
  width:1px;
  height: 50px;
  background:#63534A;
}



/* ＝＝＝＝＝＝======================================
WORKS */
.works {
    width: 100%;
    display: flex;
    position: relative;
    margin-top: 40px;
}

.works-ttl {
    width: 100%;
    transform: rotate(90deg) translateX(-90px);
    transform-origin: left top;
    /* font-size: 32px; */
    position: absolute;
    top: 0px;
    left: 100%;
}

.works-ttl:hover {
    font-size: 40px;
    width: fit-content;
    cursor: pointer;
}

.works-ttl a {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    width: 300px;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.text-en {
    color: #F7EDDA;
    font-size: 4vw;
    font-family: 'Quicksand', sans-serif;
}

.text-c {
    color: #63534A;
}

.text-ja {
    color: #F7EDDA;
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.works1 {
    width: 94%;
    height: 400px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
}

.works-menu {
    padding-left: 15px;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 100%;
    margin: 0 auto;
    /* margin-left: 20px;
    margin-top: 50px; */
}

.slide-wrap {
    max-width: 23vw;
    overflow: hidden;
}

.slider img {
    max-width: none;
    width: auto;
    /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: 360px;
}

.slider .slick-slide {
    margin:0 20px;
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:6px;/*ドットボタンのサイズ*/
    height:6px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
    border: none;
}

.slick-dots .slick-active button{
    background:#DAA095;/*ドットボタンの現在地表示の色*/
}

.works2 {
    background-color: #DAA095;
    width: 139px;
    height: 286px;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    top: -10%;
    right: 0%;
    border: none;
}

.works-item {
    color: #fff;
    list-style: none;
    margin: 10px 0;
    transition: all 0.3s ease 0s;
}

.works-item:hover {
    color: #C89566;
    font-size: 18px;
    border-bottom: 2px solid #F7EDDA;
    width: fit-content;
    cursor: pointer;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 100%;
    margin: 0 auto;
    /* margin-left: 20px;
    margin-top: 50px; */
}

.slide-wrap {
    max-width: 23vw;
    overflow: hidden;
}

.slider img {
    max-width: none;
    width: auto;
    /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: 360px;
}

.slider .slick-slide {
    margin:0 20px;
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:6px;/*ドットボタンのサイズ*/
    height:6px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
    border: none;
}

.slick-dots .slick-active button{
    background:#DAA095;/*ドットボタンの現在地表示の色*/
}

.works2 {
    background-color: #DAA095;
    width: 139px;
    height: 286px;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    top: -10%;
    right: 0%;
    border: none;
}

.works-item {
    color: #fff;
    list-style: none;
    margin: 10px 0;
    transition: all 0.3s ease 0s;
}

.works-item:hover {
    color: #C89566;
    font-size: 18px;
    border-bottom: 2px solid #F7EDDA;
    width: fit-content;
    cursor: pointer;
}

/* ==============================
サービス */
.service-ttl-detail {
    background-color: #DAA095;
    width: 38vw;
    height: 5vw;
    margin-bottom: 10px;
    position: absolute;
    margin-left: 10px;
}

.service-ttl {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    top: -2vw;
    left: -1.2vw;
}

.service-content {
    width: 100%;
    padding: 8vw 0 60px 10px;
    position: relative;
}

.service-menu {
    background-color: #fff;
    width: 30%;
    height: 25vw;
    position: relative;
}

.service-item img {
    width: 50%;
    display: block;
    position: absolute;
    top: 25%;
    right: 25%;
}

.item2 img {
    width: 50%;
    display: block;
    position: absolute;
    top: 25%;
    right: 25%;
}

.service-item-ttl p {
    font-size: 1.5vw;
    margin: 0;
    padding: 5px 0;
}

.service-item-ttl {
    background-color: #F7D3C7;
    padding: 5px;
    text-align: center;
    width: 80%;
    height: 3vh;
}

.service1 {
    position: absolute;
    top: 3%;
    left: 25%;
}

.service2 {
    position: absolute;
    bottom: 3%;
    left: 25%;
}

.service3 {
    position: absolute;
    top: 3%;
    right: 25%;
}

.service-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.smenu2 {
    position: absolute;
    top: 32%;
    right: 34.5%;
}


/* ホバー１ */
.service-item .caption1 {
	font-size: 1.5vw;
	color: #fff;
	padding: 80px 40px;
}
.service-item .mask1 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color: #C89566;
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition: all 0.6s ease;
}
.service-item:hover .mask1 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* ホバー２ */
.service-item .caption2 {
	font-size: 1.5vw;
	color: #fff;
	padding: 80px 40px;
}
.service-item .mask2 {
	width: 100%;
	height:	100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color:	#C89566;
	-webkit-transform:	rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:	all 0.6s ease;
}
.service-item:hover .mask2 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* ホバー３ */
.service-item .caption3 {
	font-size: 1.5vw;
	color: #fff;
	padding: 80px 40px;
}
.service-item .mask3 {
	width: 100%;
	height:	100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color:	#C89566;
	-webkit-transform:	rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:	all 0.6s ease;
}
.service-item:hover .mask3 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* プロフィール */
.about__container {
    width: 100%;
    display: flex;
    position: relative;
}

.about {
    background-color: #DAA095;
    width: 8%;
    height: 350px;
    z-index: 3;
}
.about-ttl {
    transform: rotate(90deg);
    transform-origin: left top;
    font-size: 32px;
    position: absolute;
    top: -12%;
    left: 45px;
}

.about-ttl:hover {
    font-size: 40px;
    width: fit-content;
    cursor: pointer;
}

.about-ttl a {
    position: relative;
    display: flex;
    padding: 10px 0;
    width: 300px;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.about-pf {
    background-color: #fff;
    width: 80%;
    height: 350px;
    margin-top: 20px;
    position: absolute;
    top: 10px;
    left: 40px;
    padding: 40px 0px 0px 0px;
}

.about-detail {
    width: 82%;
    display: flex;
    justify-content: center;
}

.profile {
    background-image: url("../img/profile.jpg");  /* 表示する画像 */
    width:  220px;       /* ※縦横を同値に */
    height: 220px;       /* ※縦横を同値に */
    border-radius: 50%;  /* 角丸半径を50%にする(=円形にする) */
    background-size: cover;
    background-position: 100% 100%;  /* 横長画像の左上を基準に表示 */
}

.name {
    margin: 160px 0 0 10px;
}

.about-detail2 {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.max {
    display: none;
}

.txt {
    margin-left: 13%;
}

.about-link {
    width: 170px;
    transform: rotate(90deg);
    transform-origin: left top;
    position: absolute;
    top: 0px;
    left: 100%;
    background-color: #F7D3C7;
    padding: 40px 60px 60px;
    font-size: 20px;
}

.about-link a:hover {
    color: #C89566;
    background-color: #fff;
    font-size: 22px;
    border-bottom: 2px solid #F7EDDA;
    width: fit-content;
    cursor: pointer;
}

/* View Moreボタン */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn,
a.btn,
button.btn {
  font-size: 12px;
  font-weight: 500;
  position: relative;
  padding: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #333;
  border-radius: 0.2rem;
  margin-right: 40px;
}

/*その他と主な共通部分は省略*/

a.btn-border {
  border-radius: 0;
}

a.btn-border:before,
a.btn-border:after {
  position: absolute;

  width: 100%;
  height: 2px;

  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;

  background: #000;
}

a.btn-border:before {
  top: 0;
  left: 0;
}

a.btn-border:after {
  right: 0;
  bottom: 0;
}

a.btn-border:hover:before,
a.btn-border:hover:after {
  width: 0;
}


/* ==============================-
お問い合わせ */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin-left: 150px;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}

/* フッター */
/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:#63534A;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
  }
  
  #page-top a:hover{
    background: #777;
  }
  
  /*リンクを右下に固定*/
  #page-top {
    position: fixed;
    right: 10px;
    bottom:10px;
    z-index: 2;
      /*はじめは非表示*/
    opacity: 0;
    transform: translateX(100px);
  }
  
  /*　左の動き　*/
  
  #page-top.LeftMove{
    animation: LeftAnime 0.5s forwards;
  }
  
  @keyframes LeftAnime{
    from {
      opacity: 0;
    transform: translateX(100px);
    }
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
  /*　右の動き　*/
  
  #page-top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
    from {
      opacity: 1;
    transform: translateX(0);
    }
    to {
      opacity: 1;
    transform: translateX(100px);
    }
}

.footer {
    color: #000;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.footer-navi {
    display: flex;
    /* justify-content: center; */
    gap: 30px;
    margin-left: 150px;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
}

.fmenu a {
    color: #000;
}


}


/*PCサイズ(1201-)レスポンシブ*/
@media(min-width:1201px)
{
/* 共通 */
body {
    min-width: 1201px;
    background-color: #F7EDDA;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.section-wrap {
    margin: 20px 0 150px 0;
    width: 100%;
}

h1 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

.openbtn {
    display: none;
}

nav {
    display: none;
}

.sp-name {
    display: none;
}
 
/*========= 
ハンバーガーメニュー
ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #999;
    /*動き*/
    transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/
#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* =========================
ヘッダー
========================= */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.header-img {
    width: 20%;
}

.header-logo {
    width: 100%;
}

.gnavi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vw;
}

/* =========================
キービジュアル
=========================== */
.kv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.kv h1 {
    width: 65%;
    font-size: 56px;
    line-height: 100px;
    color: #DAA095;
    letter-spacing: 4px;
}

#pc-kv1920 {
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
}

#tabsp-kv {
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
    display: none;
}

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
    height: 100vw;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 49vh;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

.pc-kv1920 video {
    width: 80vw;
    object-fit: scale-down;
    margin-left: 0;
}

.sp-kv video {
    width: 100vw;
    object-fit: scale-down;
    margin-left: 0;
    display: none;
}

#sp-container{
    background: #F7EDDA;
	padding:50px 0;
}

/*===========================
スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:10%;
  right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
  position: absolute;
  left:-20px;
  bottom:120px;
    /*テキストの形状*/
  color: #63534A;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 120px;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #63534A;
    transform: skewX(-31deg);
}

.scrolldown4:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:120px;
  right:0;
    /*矢印の形状*/
  width:1px;
  height: 50px;
  background:#63534A;
}



/* ＝＝＝＝＝＝======================================
WORKS */
.works {
    width: 100%;
    display: flex;
    position: relative;
    margin-top: 40px;
}

.works-ttl {
    width: 100%;
    transform: rotate(90deg) translateX(-90px);
    transform-origin: left top;
    /* font-size: 32px; */
    position: absolute;
    top: 0px;
    left: 100%;
}

.works-ttl:hover {
    font-size: 40px;
    width: fit-content;
    cursor: pointer;
}

.works-ttl a {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    width: 300px;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.text-en {
    color: #F7EDDA;
    font-size: 4vw;
    font-family: 'Quicksand', sans-serif;
}

.text-c {
    color: #63534A;
}

.text-ja {
    color: #F7EDDA;
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.works1 {
    width: 94%;
    height: 400px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
}

.works-menu {
    padding-left: 15px;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 100%;
    margin: 0 auto;
    /* margin-left: 20px;
    margin-top: 50px; */
}

.slide-wrap {
    max-width: 23vw;
    overflow: hidden;
}

.slider img {
    max-width: none;
    width: auto;
    /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: 360px;
}

.slider .slick-slide {
    margin:0 20px;
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:6px;/*ドットボタンのサイズ*/
    height:6px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
    border: none;
}

.slick-dots .slick-active button{
    background:#DAA095;/*ドットボタンの現在地表示の色*/
}

.works2 {
    background-color: #DAA095;
    width: 139px;
    height: 286px;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    top: -10%;
    right: 0%;
    border: none;
}

.works-item {
    color: #fff;
    list-style: none;
    margin: 10px 0;
    transition: all 0.3s ease 0s;
}

.works-item:hover {
    color: #C89566;
    font-size: 18px;
    border-bottom: 2px solid #F7EDDA;
    width: fit-content;
    cursor: pointer;
}

/* ==============================
サービス */
.service-ttl-detail {
    background-color: #DAA095;
    width: 30vw;
    height: 5vw;
    margin-bottom: 10px;
    position: absolute;
    margin-left: 10px;
}

.service-ttl {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    top: -0.5vw;
    left: -1.2vw;
}

.service-content {
    width: 100%;
    padding: 8vw 0 60px 10px;
    position: relative;
}

.service-menu {
    background-color: #fff;
    width: 30%;
    height: 25vw;
    position: relative;
}

.service-item img {
    width: 50%;
    display: block;
    position: absolute;
    top: 25%;
    right: 25%;
}

.item2 img {
    width: 50%;
    display: block;
    position: absolute;
    top: 25%;
    right: 25%;
}

.service-item-ttl p {
    font-size: 1.5vw;
    margin: 0;
    padding: 5px 0;
}

.service-item-ttl {
    background-color: #F7D3C7;
    padding: 5px;
    text-align: center;
    width: 80%;
    height: 3vh;
}

.service1 {
    position: absolute;
    top: 3%;
    left: 25%;
}

.service2 {
    position: absolute;
    bottom: 3%;
    left: 25%;
}

.service3 {
    position: absolute;
    top: 3%;
    right: 25%;
}

.service-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.smenu2 {
    position: absolute;
    top: 32%;
    right: 34.5%;
}


/* ホバー１ */
.service-item .caption1 {
	font-size: 1.5vw;
	color: #fff;
	padding: 80px 40px;
}
.service-item .mask1 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color: #C89566;
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition: all 0.6s ease;
}
.service-item:hover .mask1 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* ホバー２ */
.service-item .caption2 {
	font-size: 1.5vw;
	color: #fff;
	padding: 80px 40px;
}
.service-item .mask2 {
	width: 100%;
	height:	100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color:	#C89566;
	-webkit-transform:	rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:	all 0.6s ease;
}
.service-item:hover .mask2 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* ホバー３ */
.service-item .caption3 {
	font-size: 1.5vw;
	color: #fff;
	padding: 80px 40px;
}
.service-item .mask3 {
	width: 100%;
	height:	100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color:	#C89566;
	-webkit-transform:	rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:	all 0.6s ease;
}
.service-item:hover .mask3 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* プロフィール */
.about__container {
    width: 100%;
    display: flex;
    position: relative;
}

.about {
    background-color: #DAA095;
    width: 5vw;
    height: 350px;
    z-index: 3;
}
.about-ttl {
    transform: rotate(90deg);
    transform-origin: left top;
    font-size: 32px;
    position: absolute;
    top: -12%;
    left: 5vw;
}

.about-ttl:hover {
    font-size: 40px;
    width: fit-content;
    cursor: pointer;
}

.about-ttl a {
    position: relative;
    display: flex;
    padding: 10px 0;
    width: 300px;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.about-pf {
    background-color: #fff;
    width: 90%;
    height: 25vw;
    margin-top: 20px;
    position: absolute;
    top: 10px;
    left: 40px;
    padding: 40px 0px 40px 0px;
}

.about-detail {
    width: 50%;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
}

.profile {
    background-image: url("../img/profile.jpg");  /* 表示する画像 */
    width:  15vw;       /* ※縦横を同値に */
    height: 15vw;       /* ※縦横を同値に */
    border-radius: 50%;  /* 角丸半径を50%にする(=円形にする) */
    background-size: cover;
    background-position: 100% 100%;  /* 横長画像の左上を基準に表示 */
    margin-top: 2vh;
    margin-right: 20px;
}

.name {
    margin: 10vw 0 0 0px;
    font-size: 1vw;
}

.about-detail2 {
    margin-top: 40px;
    /* display: flex;
    justify-content: space-between;
    align-items: flex-end; */
    text-align: center;
}

.max {
    font-size: 1vw;
}

.txt {
    margin-left: 13%;
    display: none;
}

.about-link {
    /* width: 170px; */
    transform: rotate(90deg);
    transform-origin: left top;
    position: absolute;
    top: 0px;
    left: 100%;
    background-color: #F7D3C7;
    padding: 40px 60px 60px;
    font-size: 20px;
}

.about-link a:hover {
    color: #C89566;
    background-color: #fff;
    font-size: 22px;
    border-bottom: 2px solid #F7EDDA;
    width: fit-content;
    cursor: pointer;
}

/* View Moreボタン */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn,
a.btn,
button.btn {
  font-size: 1.5vw;
  font-weight: 500;
  position: relative;
  padding: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #333;
  border-radius: 0.2rem;
  margin-right: 40px;
}

/*その他と主な共通部分は省略*/

a.btn-border {
  border-radius: 0;
}

a.btn-border:before,
a.btn-border:after {
  position: absolute;

  width: 100%;
  height: 2px;

  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;

  background: #000;
}

a.btn-border:before {
  top: 0;
  left: 0;
}

a.btn-border:after {
  right: 0;
  bottom: 0;
}

a.btn-border:hover:before,
a.btn-border:hover:after {
  width: 0;
}


/* ==============================-
お問い合わせ */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin-left: 150px;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}

/* フッター */
/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:#63534A;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
  }
  
  #page-top a:hover{
    background: #777;
  }
  
  /*リンクを右下に固定*/
  #page-top {
    position: fixed;
    right: 10px;
    bottom:10px;
    z-index: 2;
      /*はじめは非表示*/
    opacity: 0;
    transform: translateX(100px);
  }
  
  /*　左の動き　*/
  
  #page-top.LeftMove{
    animation: LeftAnime 0.5s forwards;
  }
  
  @keyframes LeftAnime{
    from {
      opacity: 0;
    transform: translateX(100px);
    }
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
  /*　右の動き　*/
  
  #page-top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
    from {
      opacity: 1;
    transform: translateX(0);
    }
    to {
      opacity: 1;
    transform: translateX(100px);
    }
}

.footer {
    color: #000;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.footer-navi {
    display: flex;
    /* justify-content: center; */
    gap: 30px;
    margin-left: 150px;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
}

.fmenu a {
    color: #000;
}

}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ipadサイズレスポンシブ*/
@media(min-width:800px) and (max-width:959px) {
body {
    min-width: 800px;
    max-width: 959px;
    background-color: #F7EDDA;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 85%;
    margin: 0 auto;
}

/* 共通 */
.section-wrap {
    margin: 20px 0 150px 0;
    width: 100%;
}

h1 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

.openbtn {
    display: none;
}

nav {
    display: none;
}

.sp-name {
    display: none;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #999;
    /*動き*/
    transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* ================================
ヘッダー
================================ */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.header-img {
    width: 20%; 
}

.header-logo {
    width: 100%;
}

.gnavi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3vw;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vh;
}

/* ====================================
キービジュアル */
#pc-kv1920 {
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
}

#tabsp-kv {
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
    display: none;
}

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
    height: 100vw;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 40vw;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 63.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

.sp-kv video {
    width: 100vw;
    object-fit: scale-down;
    margin-left: 0;
}

#sp-container{
    background: #F7EDDA;
	padding:80px 0;
}

/*===========================
スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:10%;
  right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
  position: absolute;
  left:-20px;
  bottom:110px;
    /*テキストの形状*/
  color: #63534A;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 110px;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #63534A;
    transform: skewX(-31deg);
}

.scrolldown4:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:110px;
  right:0;
    /*矢印の形状*/
  width:1px;
  height: 50px;
  background:#63534A;
}


/* ＝＝＝＝＝＝======================================
WORKS */
.works {
    width: 100%;
    display: flex;
    position: relative;
    margin-top: 40px;
}

.works-ttl {
    width: 100%;
    transform: rotate(90deg) translateX(-90px);
    transform-origin: left top;
    /* font-size: 32px; */
    position: absolute;
    top: 0px;
    left: 100%;
}

.works-ttl:hover {
    font-size: 40px;
    width: fit-content;
    cursor: pointer;
}

.works-ttl a {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    width: 300px;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.text-en {
    color: #F7EDDA;
    font-size: 4vw;
    font-family: 'Quicksand', sans-serif;
}

.text-c {
    color: #63534A;
    font-size: 4vw;
}

.text-ja {
    color: #F7EDDA;
    font-size: 16px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.works1 {
    width: 94%;
    height: 400px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
}

.works-menu {
    padding-left: 15px;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 100%;
    margin: 0 auto;
    /* margin-left: 20px;
    margin-top: 50px; */
}

.slide-wrap {
    max-width: 23vw;
    overflow: hidden;
}

.slider img {
    max-width: none;
    width: auto;
    /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: 360px;
}

.slider .slick-slide {
    margin:0 20px;
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:6px;/*ドットボタンのサイズ*/
    height:6px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
    border: none;
}

.slick-dots .slick-active button{
    background:#DAA095;/*ドットボタンの現在地表示の色*/
}

.works2 {
    background-color: #DAA095;
    width: 139px;
    height: 286px;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    top: -10%;
    right: 0%;
    border: none;
}

.works-item {
    color: #fff;
    list-style: none;
    margin: 10px 0;
    transition: all 0.3s ease 0s;
}

.works-item:hover {
    color: #C89566;
    font-size: 18px;
    border-bottom: 2px solid #F7EDDA;
    width: fit-content;
    cursor: pointer;
}

/* サービス --------------------------------------------------------*/
.service-ttl-detail {
    background-color: #DAA095;
    width: 38vw;
    height: 5vw;
    margin-bottom: 10px;
    position: absolute;
    margin-left: 10px;
}

.service-ttl {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    top: -2vw;
    left: -1.2vw;
}

.service-content {
    width: 100%;
    padding: 8vw 0 60px 10px;
    position: relative;
}

.service-menu {
    background-color: #fff;
    width: 30%;
    height: 25vw;
    position: relative;
}

.service-item img {
    width: 50%;
    display: block;
    position: absolute;
    top: 25%;
    right: 25%;
}

.item2 img {
    width: 50%;
    display: block;
    position: absolute;
    top: 25%;
    right: 25%;
}

.service-item-ttl p {
    font-size: 1.5vw;
    margin: 0;
    padding: 5px 0;
}

.service-item-ttl {
    background-color: #F7D3C7;
    padding: 5px;
    text-align: center;
    width: 80%;
    height: 3vh;
}

.service1 {
    position: absolute;
    top: 3%;
    left: 25%;
}

.service2 {
    position: absolute;
    bottom: 3%;
    left: 25%;
}

.service3 {
    position: absolute;
    top: 3%;
    right: 25%;
}

.service-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.smenu2 {
    position: absolute;
    top: 32%;
    right: 34.5%;
}


/* ホバー１ */
.service-item .caption1 {
	font-size: 1.5vw;
	color: #fff;
	padding: 80px 40px;
}
.service-item .mask1 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color: #C89566;
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition: all 0.6s ease;
}
.service-item:hover .mask1 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* ホバー２ */
.service-item .caption2 {
	font-size: 1.5vw;
	color: #fff;
	padding: 80px 40px;
}
.service-item .mask2 {
	width: 100%;
	height:	100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color:	#C89566;
	-webkit-transform:	rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:	all 0.6s ease;
}
.service-item:hover .mask2 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* ホバー３ */
.service-item .caption3 {
	font-size: 1.5vw;
	color: #fff;
	padding: 80px 40px;
}
.service-item .mask3 {
	width: 100%;
	height:	100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color:	#C89566;
	-webkit-transform:	rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:	all 0.6s ease;
}
.service-item:hover .mask3 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* ===========================---
プロフィール */
.about__container {
    width: 100%;
    display: flex;
    position: relative;
}

.about {
    background-color: #DAA095;
    width: 7vw;
    height: 350px;
    z-index: 3;
}
.about-ttl {
    transform: rotate(90deg);
    transform-origin: left top;
    font-size: 32px;
    position: absolute;
    top: -12%;
    left: 45px;
}
.about-ttl:hover {
    font-size: 40px;
    width: fit-content;
    cursor: pointer;
}

.about-ttl a {
    position: relative;
    display: flex;
    padding: 10px 0;
    width: 300px;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.about-pf {
    background-color: #fff;
    width: 80%;
    height: 350px;
    margin-top: 20px;
    position: absolute;
    top: 10px;
    left: 40px;
    padding: 40px 0px 0px 25px;
}

.about-detail {
    width: 80%;
    display: flex;
    justify-content: center;
}

.profile {
    background-image: url("../img/profile.jpg");  /* 表示する画像 */
    width:  220px;       /* ※縦横を同値に */
    height: 220px;       /* ※縦横を同値に */
    border-radius: 50%;  /* 角丸半径を50%にする(=円形にする) */
    background-size: cover;
    background-position: 100% 100%;  /* 横長画像の左上を基準に表示 */
}

.name {
    margin: 160px 0 0 0;
    font-size: 14px;
}

.about-detail2 {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.max {
    display: none;
}

.txt {
    width: 70%;
    margin-left: 60px;
}

.btn-wrap {
    width: 20%;
}
.about-link {
    width: 171px;
    transform: rotate(90deg);
    transform-origin: left top;
    position: absolute;
    top: 0px;
    left: 100%;
    background-color: #F7D3C7;
    padding: 10px 80px 30px 30px;
    font-size: 18px;
}

.about-link a:hover {
    color: #C89566;
    background-color: #fff;
    font-size: 22px;
    border-bottom: 2px solid #F7EDDA;
    width: fit-content;
    cursor: pointer;
}

/* View Moreボタン */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn,
a.btn,
button.btn {
  font-size: 12px;
  font-weight: 500;
  position: relative;
  padding: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #333;
  border-radius: 0.2rem;
}

/*その他と主な共通部分は省略*/

a.btn-border {
  border-radius: 0;
}

a.btn-border:before,
a.btn-border:after {
  position: absolute;

  width: 100%;
  height: 2px;

  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;

  background: #000;
}

a.btn-border:before {
  top: 0;
  left: 0;
}

a.btn-border:after {
  right: 0;
  bottom: 0;
}

a.btn-border:hover:before,
a.btn-border:hover:after {
  width: 0;
}
/* お問い合わせ */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin-left: 10vw;
    font-family: 'Quicksand', sans-serif;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}

/* フッター */
/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:#63534A;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
  }
  
  #page-top a:hover{
    background: #777;
  }
  
  /*リンクを右下に固定*/
  #page-top {
    position: fixed;
    right: 10px;
    bottom:10px;
    z-index: 2;
      /*はじめは非表示*/
    opacity: 0;
    transform: translateX(100px);
  }
  
  /*　左の動き　*/
  
  #page-top.LeftMove{
    animation: LeftAnime 0.5s forwards;
  }
  
  @keyframes LeftAnime{
    from {
      opacity: 0;
    transform: translateX(100px);
    }
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
  /*　右の動き　*/
  
  #page-top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
    from {
      opacity: 1;
    transform: translateX(0);
    }
    to {
      opacity: 1;
    transform: translateX(100px);
    }
}
.footer {
    color: #000;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.footer-navi {
    display: flex;
    /* justify-content: center; */
    gap: 30px;
    margin-left: 10vw;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
}

.fmenu a {
    color: #000;
}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ipadサイズレスポンシブ*/
@media(min-width:630px) and (max-width:799px) {
body {
    min-width: 630px;
    max-width: 799px;
    background-color: #F7EDDA;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 85%;
    margin: 0 auto;
}

/* 共通 */
.section-wrap {
    margin: 20px 0 150px 0;
    width: 100%;
}

h1 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

.openbtn {
    display: none;
}

nav {
    display: none;
}



/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #999;
    /*動き*/
    transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* ================================
ヘッダー
================================ */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.header-img {
    width: 20%; 
}

.header-logo {
    width: 100%;
}

.gnavi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3vw;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vh;
}

/* ====================================
キービジュアル
=================================== */
#pc-kv1920 {
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
}

#tabsp-kv {
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
    display: none;
}

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
    height: 100vw;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 48vh;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 63.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

.sp-kv video {
    width: 100vw;
    object-fit: scale-down;
    margin-left: 0;
}

#sp-container{
    background: #F7EDDA;
	padding:80px 0;
}

/*===========================
スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:10%;
  right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
  position: absolute;
  left:-20px;
  bottom:110px;
    /*テキストの形状*/
  color: #63534A;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 110px;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #63534A;
    transform: skewX(-31deg);
}

.scrolldown4:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:110px;
  right:0;
    /*矢印の形状*/
  width:1px;
  height: 50px;
  background:#63534A;
}


/* ========================
WORKS
======================== */
.works {
    width: 100%;
    display: flex;
    position: relative;
    margin-top: 40px;
}

.works-ttl {
    width: 100%;
    transform: rotate(90deg) translateX(-90px);
    transform-origin: left top;
    /* font-size: 32px; */
    position: absolute;
    top: 0px;
    left: 100%;
}

.works-ttl:hover {
    font-size: 40px;
    width: fit-content;
    cursor: pointer;
}

.works-ttl a {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    width: 300px;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.text-en {
    color: #F7EDDA;
    font-size: 4vw;
    font-family: 'Quicksand', sans-serif;
}

.text-c {
    color: #63534A;
    font-size: 4vw;
}

.text-ja {
    color: #F7EDDA;
    font-size: 16px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.works1 {
    width: 94%;
    height: 400px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
}

.works-menu {
    padding-left: 15px;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 100%;
    margin: 0 auto;
    /* margin-left: 20px;
    margin-top: 50px; */
}

.slide-wrap {
    max-width: 23vw;
    overflow: hidden;
}

.slider img {
    max-width: none;
    width: auto;
    /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: 360px;
}

.slider .slick-slide {
    margin:0 20px;
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:6px;/*ドットボタンのサイズ*/
    height:6px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
    border: none;
}

.slick-dots .slick-active button{
    background:#DAA095;/*ドットボタンの現在地表示の色*/
}

.works2 {
    background-color: #DAA095;
    width: 139px;
    height: 286px;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    top: -10%;
    right: 0%;
    border: none;
}

.works-item {
    color: #fff;
    list-style: none;
    margin: 10px 0;
    transition: all 0.3s ease 0s;
}

.works-item:hover {
    color: #C89566;
    font-size: 18px;
    border-bottom: 2px solid #F7EDDA;
    width: fit-content;
    cursor: pointer;
}


/* ====================================
サービス
====================================== */
.service-ttl-detail {
    background-color: #DAA095;
    width: 38vw;
    height: 5vw;
    margin-bottom: 10px;
    position: absolute;
    margin-left: 10px;
}

.service-ttl {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    top: -2vw;
    left: -1.2vw;
}

.service-content {
    width: 100%;
    padding: 90px 0 60px 10px;
    position: relative;
}

.service-menu {
    background-color: #fff;
    width: 60%;
    height: 35vh;
    position: relative;
    margin: auto;
    margin-bottom: 20px;
}

.service-item img {
    width: 20vw;
    display: block;
    position: absolute;
    top: 25%;
    right: 30%;
}

.service-item-ttl p {
    margin: 0;
    padding: 5px 0;
}

.service-item-ttl {
    background-color: #F7D3C7;
    padding: 5px;
    text-align: center;
    width: 80%;
    height: 30px;
}

.service1 ,.service3 {
    position: absolute;
    top: 3%;
    left: 25%;
}

.service2 {
    position: absolute;
    top: 3%;
    right: 25%;
}

/* ホバー１ */
.service-item .caption1 {
	font-size: 100%;
	color: #fff;
	text-align: center;
	padding: 80px 40px;
}
.service-item .mask1 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color: #C89566;
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition: all 0.6s ease;
}
.service-item:hover .mask1 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* ホバー２ */
.service-item .caption2 {
	font-size: 100%;
	color: #fff;
	text-align: center;
	padding: 80px 40px;
}
.service-item .mask2 {
	width: 100%;
	height:	100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color:	#C89566;
	-webkit-transform:	rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:	all 0.6s ease;
}
.service-item:hover .mask2 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* ホバー３ */
.service-item .caption3 {
	font-size: 100%;
	color: #fff;
	text-align: center;
	padding: 80px 40px;
}
.service-item .mask3 {
	width: 100%;
	height:	100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color:	#C89566;
	-webkit-transform:	rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:	all 0.6s ease;
}
.service-item:hover .mask3 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* =====================
プロフィール
====================== */
.about__container {
    width: 100%;
    display: flex;
    position: relative;
}

.about {
    background-color: #DAA095;
    width: 7vw;
    height: 350px;
    z-index: 3;
}
.about-ttl {
    transform: rotate(90deg);
    transform-origin: left top;
    font-size: 32px;
    position: absolute;
    top: -12%;
    left: 45px;
}
.about-ttl:hover {
    font-size: 40px;
    width: fit-content;
    cursor: pointer;
}

.about-ttl a {
    position: relative;
    display: flex;
    padding: 10px 0;
    width: 300px;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.about-pf {
    background-color: #fff;
    width: 80%;
    height: 350px;
    margin-top: 20px;
    position: absolute;
    top: 10px;
    left: 5vw;
    padding: 5vh 0 5vh 4vw;
}

.about-detail {
    display: flex;
    justify-content: center;
}

.profile {
    background-image: url("../img/profile.jpg");  /* 表示する画像 */
    width:  220px;       /* ※縦横を同値に */
    height: 220px;       /* ※縦横を同値に */
    border-radius: 50%;  /* 角丸半径を50%にする(=円形にする) */
    background-size: cover;
    background-position: 100% 100%;  /* 横長画像の左上を基準に表示 */
}

.name {
    margin: 160px 0 0 0;
    font-size: 14px;
    display: none;
}

.sp-name {
    margin: 160px 0 0 0;
    font-size: 2vw
}

.about-detail2 {
    margin-top: 20px;
    text-align: center;
}

.txt {
    font-size: 2.5vw;
}

.max {
    display: none;
}

.btn-wrap {
    margin-top: 32px;
}
.about-link {
    transform: rotate(90deg);
    transform-origin: left top;
    position: absolute;
    top: 0px;
    left: 100%;
    background-color: #F7D3C7;
    padding: 10px 40px 30px 30px;
}

.about-link a:hover {
    color: #C89566;
    background-color: #fff;
    font-size: 18px;
    border-bottom: 2px solid #F7EDDA;
    width: fit-content;
    cursor: pointer;
}

/* View Moreボタン */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn,
a.btn,
button.btn {
  font-size: 12px;
  font-weight: 500;
  position: relative;
  padding: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #333;
  border-radius: 0.2rem;
}

/*その他と主な共通部分は省略*/

a.btn-border {
  border-radius: 0;
}

a.btn-border:before,
a.btn-border:after {
  position: absolute;

  width: 100%;
  height: 2px;

  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;

  background: #000;
}

a.btn-border:before {
  top: 0;
  left: 0;
}

a.btn-border:after {
  right: 0;
  bottom: 0;
}

a.btn-border:hover:before,
a.btn-border:hover:after {
  width: 0;
}

/* =============================
お問い合わせ
=============================== */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin-left: 10vw;
    font-family: 'Quicksand', sans-serif;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}

/* フッター */
/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:#63534A;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
  }
  
  #page-top a:hover{
    background: #777;
  }
  
  /*リンクを右下に固定*/
  #page-top {
    position: fixed;
    right: 10px;
    bottom:10px;
    z-index: 2;
      /*はじめは非表示*/
    opacity: 0;
    transform: translateX(100px);
  }
  
  /*　左の動き　*/
  
  #page-top.LeftMove{
    animation: LeftAnime 0.5s forwards;
  }
  
  @keyframes LeftAnime{
    from {
      opacity: 0;
    transform: translateX(100px);
    }
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
  /*　右の動き　*/
  
  #page-top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
    from {
      opacity: 1;
    transform: translateX(0);
    }
    to {
      opacity: 1;
    transform: translateX(100px);
    }
}

.footer {
    color: #000;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
    background-color: #F7EDDA;
}

.footer-navi {
    display: flex;
    /* justify-content: center; */
    gap: 30px;
    margin-left: 10vw;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
}

.fmenu a {
    color: #000;
}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SPサイズレスポンシブ*/
@media(min-width:500px) and (max-width:629px) {
body {
    min-width: 500px;
    max-width: 629px;
    background-color: #F7EDDA;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* 共通 */
.section-wrap {
    margin: 20px 0 150px 0;
    width: 100%;
}

h1 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #fff;
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #999;
    /*動き*/
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* ====================================
ヘッダー
==================================== */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.header-img {
    width: 20vw; 
}

.header-logo {
    width: 100%;
}

.gnavi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3vw;
}

.navi-menu {
    text-align: center;
}

.navi-menu li {
    list-style: none;
}

.navi-menu a {
    text-decoration: none;
    color: #000;
}

.navi-icon {
    height: 4vh;
}

.header ul {
    display: none;
}

/* キービジュアル */
#pc-kv1920 {
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
}

#tabsp-kv {
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
    display: none;
}

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
    height: 100vw;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 45vw;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 63.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

.sp-kv video {
    width: 100vw;
    object-fit: scale-down;
    margin-left: 0;
}

#sp-container{
    background: #F7EDDA;
	padding:50px 0;
}

/*===========================
スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:10%;
  right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
  position: absolute;
  left:-20px;
  bottom:150px;
    /*テキストの形状*/
  color: #63534A;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 150px;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #63534A;
    transform: skewX(-31deg);
}

.scrolldown4:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:150px;
  right:0;
    /*矢印の形状*/
  width:1px;
  height: 50px;
  background:#63534A;
}

/* =============================
WORKS
-============================== */
.works {
    width: 100%;
    display: flex;
    position: relative;
    margin-top: 40px;
}

.works-ttl {
    width: 100%;
    transform: rotate(90deg) translateX(-90px);
    transform-origin: left top;
    font-size: 32px;
    position: absolute;
    top: 0px;
    left: 100%;
}

.works-ttl a {
    position: relative;
    display: flex;
    padding: 10px 0;
    width: 300px;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.text-en {
    color: #F7EDDA;
    font-size: 32px;
    font-family: 'Quicksand', sans-serif;
}
.text-c {
    color: #63534A;
    font-size: 32px;
}

.text-ja {
    color: #F7EDDA;
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.works1 {
    width: 94%;
    height: 400px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
}

.works-menu {
    padding-left: 0px;
    padding-right: 20px;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 100%;
    margin: 0 auto;
    /* margin-left: 20px;
    margin-top: 50px; */
}

.slide-wrap {
    max-width: 23vw;
    overflow: hidden;
}

.slider img {
    max-width: none;
    width: auto;
    /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: 360px;
}

.slider .slick-slide {
    margin:0 20px;
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:1px;/*ドットボタンのサイズ*/
    height:6px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
    border: none;
}

.slick-dots .slick-active button{
    background:#DAA095;/*ドットボタンの現在地表示の色*/
}

#sp {
    display:none;
}

.works2 {
    background-color: #DAA095;
    width: 50px;
    height: 286px;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    top: -10%;
    right: 0%;
    border: none;
}

.works-item {
    color: #fff;
    list-style: none;
    margin: 10px 0;
    transition: all 0.3s ease 0s;
}

.works-item:hover {
    color: #C89566;
    font-size: 18px;
    border-bottom: 2px solid #F7EDDA;
    width: fit-content;
    cursor: pointer;
}


/* =================================
サービス
================================== */

.service {
    background:#F7EDDA;
}
.service-ttl-detail {
    background-color: #DAA095;
    width: 350px;
    height: 50px;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    margin-left: 10px;
}

.service-ttl {
    position: relative;
    display: flex;
    /* padding: 10px 0; */
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    top: -15px;
    left: -25px;
}

.service-content {
    width: 100%;
    padding: 90px 0 60px 10px;
    position: relative;
}

.service-menu {
    background-color: #fff;
    width: 60vw;
    height: 40vw;
    position: relative;
    margin: auto;
    margin-bottom: 20px;
}

.service-item img {
    width: 40%;
    display: block;
    position: absolute;
    top: 25%;
    right: 30%;
}

.service-item-ttl p {
    margin: 0;
    padding: 5px 0;
}

.service-item-ttl {
    background-color: #F7D3C7;
    padding: 5px;
    text-align: center;
    width: 80%;
    height: 30px;
}

.service1 ,.service3 {
    position: absolute;
    top: 3%;
    left: 25%;
}

.service2 {
    position: absolute;
    top: 3%;
    right: 25%;
}

/* ホバー１ */
.service-item .caption1 {
	font-size: 3vw;
	color: #fff;
	text-align: center;
	padding: 12vw 5vw;
}
.service-item .mask1 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color: #C89566;
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition: all 0.6s ease;
}
.service-item:hover .mask1 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* ホバー２ */
.service-item .caption2 {
	font-size: 3vw;
	color: #fff;
	text-align: center;
	padding: 12vw 5vw;
}
.service-item .mask2 {
	width: 100%;
	height:	100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color:	#C89566;
	-webkit-transform:	rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:	all 0.6s ease;
}
.service-item:hover .mask2 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* ホバー３ */
.service-item .caption3 {
	font-size: 3vw;
	color: #fff;
	text-align: center;
	padding: 12vw 5vw;
}
.service-item .mask3 {
	width: 100%;
	height:	100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* 表示させない */
	background-color:	#C89566;
	-webkit-transform:	rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:	all 0.6s ease;
}
.service-item:hover .mask3 {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;	/* ホバーで表示する */
}

/* =============================
プロフィール
============================= */
.about__container {
    width: 100%;
    display: flex;
    position: relative;
}

.about {
    background-color: #DAA095;
    width: 10vw;
    height: 350px;
    z-index: 3;
}
.about-ttl {
    transform: rotate(90deg);
    transform-origin: left top;
    font-size: 32px;
    position: absolute;
    top: -8vw;
    left: 45px;
}

.about-ttl:hover {
    font-size: 40px;
    width: fit-content;
    cursor: pointer;
}

.about-ttl a {
    position: relative;
    display: flex;
    padding: 10px 0;
    width: 300px;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.about-pf {
    background-color: #fff;
    width: 80%;
    height: 350px;
    margin-top: 20px;
    position: absolute;
    top: 10px;
    left: 40px;
    padding: 40px 0px 0px 25px;
}

.about-detail {
    width: 70vw;
    display: flex;
    justify-content: center;
}

.profile {
    background-image: url("../img/profile.jpg");  /* 表示する画像 */
    width:  40vw;       /* ※縦横を同値に */
    height: 40vw;       /* ※縦横を同値に */
    border-radius: 50%;  /* 角丸半径を50%にする(=円形にする) */
    background-size: cover;
    background-position: 100% 100%;  /* 横長画像の左上を基準に表示 */
    z-index: 3;
}

.name {
    margin: 160px 0 0 0;
    font-size: 14px;
    display: none;
}

.sp-name {
    margin: 160px 0 0 0;
    font-size: 2vw
}

.about-detail2 {
    margin-top: 20px;
    text-align: center;
}

.max {
    display: none;
}

.txt {
    font-size: 2.5vw;
}

.btn-wrap {
    margin-top: 32px;
}
.about-link {
    transform: rotate(90deg);
    transform-origin: left top;
    position: absolute;
    top: 0px;
    left: 100%;
    background-color: #F7D3C7;
    padding: 10px 40px 30px 30px;
}

.about-link a:hover {
    color: #C89566;
    background-color: #fff;
    font-size: 18px;
    border-bottom: 2px solid #F7EDDA;
    width: fit-content;
    cursor: pointer;
}

/* View Moreボタン */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn,
a.btn,
button.btn {
  font-size: 12px;
  font-weight: 500;
  position: relative;
  padding: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #333;
  border-radius: 0.2rem;
}

/*その他と主な共通部分は省略*/

a.btn-border {
  border-radius: 0;
}

a.btn-border:before,
a.btn-border:after {
  position: absolute;

  width: 100%;
  height: 2px;

  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;

  background: #000;
}

a.btn-border:before {
  top: 0;
  left: 0;
}

a.btn-border:after {
  right: 0;
  bottom: 0;
}

a.btn-border:hover:before,
a.btn-border:hover:after {
  width: 0;
}
/* ==============================
お問い合わせ
============================== */
.contact {
    background-color: #DAA095;
    padding: 20px 0;
}

.contact-wrap {
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-en {
    border: 0.75px solid #fff;
    padding: 20px;
    margin: 0 auto;
}

.contact-ja {
    display: none;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}
.contact-en:hover  a{
    color: #DAA095;
}

.contact-en:hover {
    background-color: #fff;
    color: #DAA095;
}

.contact-en:hover  a{
    color: #DAA095;
}

/* ======================
フッター */
/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:#63534A;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
  }
  
  #page-top a:hover{
    background: #777;
  }
  
  /*リンクを右下に固定*/
  #page-top {
    position: fixed;
    right: 10px;
    bottom:10px;
    z-index: 2;
      /*はじめは非表示*/
    opacity: 0;
    transform: translateX(100px);
  }
  
  /*　左の動き　*/
  
  #page-top.LeftMove{
    animation: LeftAnime 0.5s forwards;
  }
  
  @keyframes LeftAnime{
    from {
      opacity: 0;
    transform: translateX(100px);
    }
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
  /*　右の動き　*/
  
  #page-top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
    from {
      opacity: 1;
    transform: translateX(0);
    }
    to {
      opacity: 1;
    transform: translateX(100px);
    }
}

.footer {
    color: #000;
    width: 100%;
    align-items: center;
}


.footer-navi {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-left: 0;
}

.fmenu {
    list-style: none;
    color: #000;
    font-family: 'Mochiy Pop One', sans-serif;
font-family: 'Quicksand', sans-serif;
}

.fmenu a {
    color: #000;
}
small {
    display: block;
    text-align: center;
    padding: 10px;
}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SPサイズレスポンシブ*/
@media(max-width:499px) {
    body {
        max-width: 629px;
        background-color: #F7EDDA;
        font-family: 'Quicksand', sans-serif;
        font-family: 'Zen Maru Gothic', sans-serif;
    }
    
    .container {
        width: 90%;
        margin: 0 auto;
    }
    
    /* 共通 */
    .section-wrap {
        margin: 20px 0 100px 0;
        width: 100%;
    }
    
    h1 {
        margin: 0;
    }
    
    a {
        text-decoration: none;
        color: #fff;
    }
    
    
    /*========= ナビゲーションのためのCSS ===============*/
    
    #g-nav {
        /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
        position: fixed;
        z-index: -1;
        opacity: 0;
        /*はじめは透過0*/
        /*ナビの位置と形状*/
        top: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: #999;
        /*動き*/
        transition: all 0.3s;
        font-family: 'Quicksand', sans-serif;
    }
    
    /*アクティブクラスがついたら透過なしにして最前面へ*/
    #g-nav.panelactive {
        opacity: 1;
        z-index: 999;
    }
    
    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /*ナビゲーション*/
    #g-nav ul {
        display: none;
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    #g-nav.panelactive ul {
        display: block;
    }
    
    /*リストのレイアウト設定*/
    
    #g-nav li {
        list-style: none;
        text-align: center;
    }
    
    #g-nav li a {
        color: #333;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }
    
    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }
    
    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #666;
        width: 45%;
    }
    
    .openbtn span:nth-of-type(1) {
        top: 15px;
    }
    
    .openbtn span:nth-of-type(2) {
        top: 23px;
    }
    
    .openbtn span:nth-of-type(3) {
        top: 31px;
    }
    
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    
    /* ====================================
    ヘッダー
    ==================================== */
    .header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'Quicksand', sans-serif;
    }
    
    .header-img {
        width: 20vw; 
    }
    
    .header-logo {
        width: 100%;
    }
    
    .gnavi {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 3vw;
    }
    
    .navi-menu {
        text-align: center;
    }
    
    .navi-menu li {
        list-style: none;
    }
    
    .navi-menu a {
        text-decoration: none;
        color: #000;
    }
    
    .navi-icon {
        height: 4vh;
    }
    
    .header ul {
        display: none;
    }
    
    /* キービジュアル */
    #pc-kv1920 {
        position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
        height: 100vh;/*高さを全画面にあわせる*/
    }
    
    #tabsp-kv {
        position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
        height: 100vh;/*高さを全画面にあわせる*/
        display: none;
    }
    
    #video-area{
        position: fixed;
        z-index: -1;/*最背面に設定*/
        top: 0;
        right:0;
        left:0;
        bottom:0;
        overflow: hidden;
        height: 100vw;
    }
    
    #video {
        /*天地中央配置*/
        position: absolute;
        z-index: -1;
        top: 45vw;
        left: 50%;
        transform: translate(-50%, -50%);
        /*縦横幅指定*/
        width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
        height: 63.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
        min-height: 100%;
        min-width: 100%;
    }
    
    .sp-kv video {
        width: 100vw;
        object-fit: scale-down;
        margin-left: 0;
    }
    
    #sp-container{
        background: #F7EDDA;
        padding:50px 0;
    }
    
    /*===========================
    スクロールダウン全体の場所*/
    .scrolldown4{
        /*描画位置※位置は適宜調整してください*/
      position:absolute;
      bottom:10%;
      right:50%;
        /*矢印の動き1秒かけて永遠にループ*/
      animation: arrowmove 1s ease-in-out infinite;
    }
    
    /*下からの距離が変化して全体が下→上→下に動く*/
    @keyframes arrowmove{
          0%{bottom:1%;}
          50%{bottom:3%;}
         100%{bottom:1%;}
     }
    
    /*Scrollテキストの描写*/
    .scrolldown4 span{
        /*描画位置*/
      position: absolute;
      left:-20px;
      bottom:150px;
        /*テキストの形状*/
      color: #63534A;
      font-size: 0.7rem;
      letter-spacing: 0.05em;
      /*縦書き設定*/
      -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }
    
    /* 矢印の描写 */
    .scrolldown4:before {
        content: "";
        /*描画位置*/
        position: absolute;
        bottom: 150px;
        right: -6px;
        /*矢印の形状*/
        width: 1px;
        height: 20px;
        background: #63534A;
        transform: skewX(-31deg);
    }
    
    .scrolldown4:after{
      content:"";
        /*描画位置*/
      position: absolute;
      bottom:150px;
      right:0;
        /*矢印の形状*/
      width:1px;
      height: 50px;
      background:#63534A;
    }
    
    /* =============================
    WORKS
    -============================== */
    .works {
        width: 100%;
        display: flex;
        position: relative;
        margin-top: 40px;
    }
    
    .works-ttl {
        width: 100%;
        transform: rotate(90deg) translateX(-90px);
        transform-origin: left top;
        font-size: 32px;
        position: absolute;
        top: 0px;
        left: 100%;
    }
    
    .works-ttl a {
        position: relative;
        display: flex;
        padding: 10px 0;
        width: 300px;
        justify-content: space-between;
        align-items: center;
        z-index: 2;
    }
    
    .text-en {
        color: #F7EDDA;
        font-size: 32px;
        font-family: 'Quicksand', sans-serif;
    }
    .text-c {
        color: #63534A;
        font-size: 32px;
    }
    
    .text-ja {
        color: #F7EDDA;
        font-size: 20px;
        font-family: 'Zen Maru Gothic', sans-serif;
    }
    
    .works1 {
        width: 94%;
        height: 400px;
        padding: 10px;
        margin-bottom: 10px;
        position: relative;
    }
    
    .works-menu {
        padding-left: 0px;
        padding-right: 20px;
    }
    
    /*==================================================
    スライダーのためのcss
    ===================================*/
    .slider {
        /*横幅94%で左右に余白を持たせて中央寄せ*/
        width: 100%;
        margin: 0 auto;
        padding-left: 0;
        /* margin-left: 20px;
        margin-top: 50px; */
    }
    
    .slide-wrap {
        max-width: 23vw;
        overflow: hidden;
    }
    
    .slider img {
        max-width: none;
        width: auto;
        /*スライダー内の画像を60vwにしてレスポンシブ化*/
        height: 360px;
    }
    
    .slider .slick-slide {
        margin:0 20px;
    }
    
    /*ドットナビゲーションの設定*/
    
    .slick-dots {
        text-align:center;
        margin:20px 0 0 0;
        padding-left: 0;
    }
    
    .slick-dots li {
        display:inline-block;
        margin:0 5px;
    }
    
    .slick-dots button {
        color: transparent;
        outline: none;
        width:1px;/*ドットボタンのサイズ*/
        height:6px;/*ドットボタンのサイズ*/
        display:block;
        border-radius:50%;
        background:#fff;/*ドットボタンの色*/
        border: none;
    }
    
    .slick-dots .slick-active button{
        background:#DAA095;/*ドットボタンの現在地表示の色*/
    }
    
    #sp {
        display:none;
    }
    
    .works2 {
        background-color: #DAA095;
        width: 30px;
        height: 280px;
        padding: 10px;
        margin-bottom: 10px;
        position: absolute;
        top: -10%;
        right: 0%;
        border: none;
    }
    
    .works-item {
        color: #fff;
        list-style: none;
        margin: 10px 0;
        transition: all 0.3s ease 0s;
    }
    
    .works-item:hover {
        color: #C89566;
        font-size: 18px;
        border-bottom: 2px solid #F7EDDA;
        width: fit-content;
        cursor: pointer;
    }
    
    
    /* =================================
    サービス
    ================================== */
    
    .service {
        background:#F7EDDA;
    }
    .service-ttl-detail {
        background-color: #DAA095;
        width: 280px;
        height: 30px;
        padding: 10px;
        margin-bottom: 10px;
        position: absolute;
        margin-left: 10px;
    }
    
    .service-ttl {
        position: relative;
        display: flex;
        /* padding: 10px 0; */
        justify-content: space-between;
        align-items: center;
        z-index: 2;
        top: -30px;
        left: -25px;
    }
    
    .service-content {
        width: 100%;
        padding: 90px 0 0 10px;
        position: relative;
    }
    
    .service-menu {
        background-color: #fff;
        width: 60vw;
        height: 50vw;
        position: relative;
        margin: auto;
        margin-bottom: 20px;
    }
    
    .service-item img {
        width: 40%;
        display: block;
        position: absolute;
        top: 30%;
        right: 30%;
    }
    
    .service-item-ttl p {
        margin: 0;
        padding: 5px 0;
    }
    
    .service-item-ttl {
        background-color: #F7D3C7;
        padding: 5px;
        text-align: center;
        width: 80%;
        height: 30px;
    }
    
    .service1 ,.service3 {
        position: absolute;
        top: 3%;
        left: 25%;
    }
    
    .service2 {
        position: absolute;
        top: 3%;
        right: 25%;
    }
    
    /* ホバー１ */
    .service-item .caption1 {
        font-size: 3vw;
        color: #fff;
        text-align: center;
        padding: 16vw 5vw;
    }
    .service-item .mask1 {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;	/* 表示させない */
        background-color: #C89566;
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
        -webkit-transition:	all 0.6s ease;
        transition: all 0.6s ease;
    }
    .service-item:hover .mask1 {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
        opacity: 1;	/* ホバーで表示する */
    }
    
    /* ホバー２ */
    .service-item .caption2 {
        font-size: 3vw;
        color: #fff;
        text-align: center;
        padding: 16vw 5vw;
    }
    .service-item .mask2 {
        width: 100%;
        height:	100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;	/* 表示させない */
        background-color:	#C89566;
        -webkit-transform:	rotateY(-180deg);
        transform: rotateY(-180deg);
        -webkit-transition:	all 0.6s ease;
        transition:	all 0.6s ease;
    }
    .service-item:hover .mask2 {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
        opacity: 1;	/* ホバーで表示する */
    }
    
    /* ホバー３ */
    .service-item .caption3 {
        font-size: 3vw;
        color: #fff;
        text-align: center;
        padding: 16vw 5vw;
    }
    .service-item .mask3 {
        width: 100%;
        height:	100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;	/* 表示させない */
        background-color:	#C89566;
        -webkit-transform:	rotateY(-180deg);
        transform: rotateY(-180deg);
        -webkit-transition:	all 0.6s ease;
        transition:	all 0.6s ease;
    }
    .service-item:hover .mask3 {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
        opacity: 1;	/* ホバーで表示する */
    }
    
    /* =============================
    プロフィール
    ============================= */
    .about__container {
        width: 100%;
        display: flex;
        position: relative;
    }
    
    .about {
        background-color: #DAA095;
        width: 14vw;
        height: 350px;
        z-index: 3;
    }
    .about-ttl {
        transform: rotate(90deg);
        transform-origin: left top;
        font-size: 32px;
        position: absolute;
        top: -8vw;
        left: 45px;
    }
    
    .about-ttl:hover {
        font-size: 40px;
        width: fit-content;
        cursor: pointer;
    }
    
    .about-ttl a {
        position: relative;
        display: flex;
        padding: 10px 0;
        width: 300px;
        justify-content: space-between;
        align-items: center;
        z-index: 2;
    }
    
    .about-pf {
        background-color: #fff;
        width: 80%;
        height: 320px;
        margin-top: 20px;
        position: absolute;
        top: 10px;
        left: 40px;
        padding: 40px 0px 0px 25px;
    }
    
    .about-detail {
        display: flex;
        justify-content: center;
    }
    
    .profile {
        background-image: url("../img/profile.jpg");  /* 表示する画像 */
        width:  40vw;       /* ※縦横を同値に */
        height: 40vw;       /* ※縦横を同値に */
        border-radius: 50%;  /* 角丸半径を50%にする(=円形にする) */
        background-size: cover;
        background-position: 100% 100%;  /* 横長画像の左上を基準に表示 */
        z-index: 3;
    }
    
    .name {
        margin: 160px 0 0 0;
        font-size: 14px;
        display: none;
    }
    
    .sp-name {
        margin: 130px 0 0 0;
        font-size: 2vw
    }
    
    .about-detail2 {
        margin-top: 20px;
        text-align: center;
    }
    
    .max {
        display: none;
    }

    .txt {
        font-size: 2.5vw;
    }
    
    .btn-wrap {
        margin-top: 40px;
        margin-right: 20px;
    }

    #aboutsp {
        display: none;
    }
    /* .about-link {
        transform: rotate(90deg);
        transform-origin: left top;
        position: absolute;
        top: 0px;
        left: 100%;
        background-color: #F7D3C7;
        padding: 10px 40px 30px 30px;
    } */
    
    .about-link a:hover {
        color: #C89566;
        background-color: #fff;
        font-size: 18px;
        border-bottom: 2px solid #F7EDDA;
        width: fit-content;
        cursor: pointer;
    }
    
    /* View Moreボタン */
    *,
    *:before,
    *:after {
      -webkit-box-sizing: inherit;
      box-sizing: inherit;
    }
    
    .btn,
    a.btn,
    button.btn {
      font-size: 12px;
      font-weight: 500;
      position: relative;
      padding: 8px;
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      text-align: center;
      vertical-align: middle;
      text-decoration: none;
      letter-spacing: 0.1em;
      color: #333;
      border-radius: 0.2rem;
    }
    
    /*その他と主な共通部分は省略*/
    
    a.btn-border {
      border-radius: 0;
    }
    
    a.btn-border:before,
    a.btn-border:after {
      position: absolute;
    
      width: 100%;
      height: 2px;
    
      content: '';
      -webkit-transition: all .3s;
      transition: all .3s;
    
      background: #000;
    }
    
    a.btn-border:before {
      top: 0;
      left: 0;
    }
    
    a.btn-border:after {
      right: 0;
      bottom: 0;
    }
    
    a.btn-border:hover:before,
    a.btn-border:hover:after {
      width: 0;
    }
    /* ==============================
    お問い合わせ
    ============================== */
    .contact {
        background-color: #DAA095;
        padding: 20px 0;
    }
    
    .contact-wrap {
        color: #fff;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .contact-en {
        border: 0.75px solid #fff;
        padding: 20px;
        margin: 0 auto;
    }
    
    .contact-ja {
        display: none;
    }
    
    .contact-en:hover {
        background-color: #fff;
        color: #DAA095;
    }
    .contact-en:hover  a{
        color: #DAA095;
    }
    
    .contact-en:hover {
        background-color: #fff;
        color: #DAA095;
    }
    
    .contact-en:hover  a{
        color: #DAA095;
    }
    
    /* ======================
    フッター */
    /*========= ページトップのためのCSS ===============*/
    
    /*リンクの形状*/
    #page-top a{
        display: flex;
        justify-content:center;
        align-items:center;
        background:#63534A;
        border-radius: 5px;
        width: 60px;
        height: 60px;
        color: #fff;
        text-align: center;
        text-transform: uppercase; 
        text-decoration: none;
        font-size:0.6rem;
        transition:all 0.3s;
      }
      
      #page-top a:hover{
        background: #777;
      }
      
      /*リンクを右下に固定*/
      #page-top {
        position: fixed;
        right: 10px;
        bottom:10px;
        z-index: 2;
          /*はじめは非表示*/
        opacity: 0;
        transform: translateX(100px);
      }
      
      /*　左の動き　*/
      
      #page-top.LeftMove{
        animation: LeftAnime 0.5s forwards;
      }
      
      @keyframes LeftAnime{
        from {
          opacity: 0;
        transform: translateX(100px);
        }
        to {
          opacity: 1;
        transform: translateX(0);
        }
      }
      
      /*　右の動き　*/
      
      #page-top.RightMove{
        animation: RightAnime 0.5s forwards;
      }
      @keyframes RightAnime{
        from {
          opacity: 1;
        transform: translateX(0);
        }
        to {
          opacity: 1;
        transform: translateX(100px);
        }
    }
    
    .footer {
        color: #000;
        width: 100%;
        align-items: center;
    }
    
    
    .footer-navi {
        display: flex;
        justify-content: center;
        gap: 30px;
        padding-left: 0;
    }
    
    .fmenu {
        list-style: none;
        color: #000;
        font-family: 'Mochiy Pop One', sans-serif;
    font-family: 'Quicksand', sans-serif;
    }
    
    .fmenu a {
        color: #000;
    }
    small {
        display: block;
        text-align: center;
        padding: 10px;
    }
    }