@charset "UTF-8";

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

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

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

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

/*========= 
ハンバーガーメニュー
ナビゲーションのためのCSS ===============*/

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

#top.LeftMove{
    animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
    from {
          opacity: 0;
          transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}
/*　右の動き　*/
  
#top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
  from {
      opacity: 1;
    transform: translateX(0);
  }
  to {
      opacity: 1;
    transform: translateX(100px);
  }
}

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

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 18%;
    height: 40vh;
    /*表示する高さ*/
    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;
    opacity: 0;
    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;
}

.gnavi {
    display: flex;
    gap: 3vw;
}

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

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

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

.navi-icon {
    height: 4vw;
}

.section-ttl {
    background-color: #F7D3C7;
    width: 150px;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: #63534A;
    padding-top: 10px;
    position: relative;
    z-index: 3;
}
.section-txt {
    font-size: 32px;
    top: -20px;
    right: 2px;
    font-family: 'Quicksand', sans-serif;
}

.section-txt span {
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section-ttl2 {
    background-color: #63534A;
    height: 15px;
    padding: 10px;
    position: absolute;
    top: 135px;
    right: 0;
    left: 0;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 85vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    padding: 0;
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../img/work_page/other03/05-01.png);
}

.slider-item02 {
    background:url(../img/work_page/other03/05-02.png);
}

.slider-item03 {
    background:url(../img/work_page/other03/05-03.png);
}
.slider-item04 {
    background:url(../img/work_page/other03/05-04.png);
}
.slider-item05 {
    background:url(../img/work_page/other03/05-05.png);
}
.slider-item06 {
    background:url(../img/work_page/other03/05-06.png);
}
.slider-item07 {
    background:url(../img/work_page/other03/05-07.png);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:80vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}



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

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:18px 0 0 0;
    padding: 0;
}

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

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

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

/* 案件タイトル */
.work-ttl {
    text-align: center;
    margin: 40px 0;
}

.work-ttl h2 {
    color: #63534A;
    margin: 0;
    font-size: 18px;
    padding-bottom: 10px;
}

.work-ttl a {
    text-decoration: none;
    color: #000;
    font-family: 'Quicksand', sans-serif;
}

.work-ttl a:hover{
    text-decoration: none;
    color: #DAA095;
    font-family: 'Quicksand', sans-serif;
}


/* 詳細 */
.works-detail-text {
    display: flex;
    justify-content: center;
    font-size: 14px;
    margin: 40px 0;
}
.detail-wrap {
    width: 40%;
}

.term {
    margin-bottom: 30px;
}

.detail-ttl {
    font-family: 'Quicksand', sans-serif;
}

/* ボタン */
/* 基本 */
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn,
a.btn,
button.btn {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  padding: 1rem 4rem;
  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.5rem;
}

/*  */
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: #333;
}
  
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;
}

.detail-ttl {
    font-size: 8px;
    padding-bottom: 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;
}

.term-ttl {
    font-size: 8px;
    padding-bottom: 0;
}
/* ===================================-
フッター */
.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;
}
}

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

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

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

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

/*========= 
ハンバーガーメニュー
ナビゲーションのためのCSS ===============*/

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

#top.LeftMove{
    animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
    from {
          opacity: 0;
          transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}
/*　右の動き　*/
  
#top.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
  from {
      opacity: 1;
    transform: translateX(0);
  }
  to {
      opacity: 1;
    transform: translateX(100px);
  }
}

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

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 18%;
    height: 40vh;
    /*表示する高さ*/
    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;
    opacity: 0;
    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;
}

.gnavi {
    display: flex;
    gap: 3vw;
}

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

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

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

.navi-icon {
    height: 4vw;
}

.section-ttl {
    background-color: #F7D3C7;
    width: 150px;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: #63534A;
    padding-top: 10px;
    position: relative;
    z-index: 3;
}
.section-txt {
    font-size: 32px;
    top: -20px;
    right: 2px;
    font-family: 'Quicksand', sans-serif;
}

.section-txt span {
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section-ttl2 {
    background-color: #63534A;
    height: 15px;
    padding: 10px;
    position: absolute;
    top: 135px;
    right: 0;
    left: 0;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 85vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    padding: 0;
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../img/work_page/other03/05-01.png);
}

.slider-item02 {
    background:url(../img/work_page/other03/05-02.png);
}

.slider-item03 {
    background:url(../img/work_page/other03/05-03.png);
}
.slider-item04 {
    background:url(../img/work_page/other03/05-04.png);
}
.slider-item05 {
    background:url(../img/work_page/other03/05-05.png);
}
.slider-item06 {
    background:url(../img/work_page/other03/05-06.png);
}
.slider-item07 {
    background:url(../img/work_page/other03/05-07.png);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:80vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*ドットナビゲーションの設定*/
.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:18px 0 0 0;
    padding: 0;
}

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

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

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

/* 案件タイトル */
.work-ttl {
    text-align: center;
    margin: 40px 0;
}

.work-ttl h2 {
    color: #63534A;
    margin: 0;
    font-size: 18px;
    padding-bottom: 10px;
}

.work-ttl a {
    text-decoration: none;
    color: #000;
    font-family: 'Quicksand', sans-serif;
}

.work-ttl a:hover{
    text-decoration: none;
    color: #DAA095;
    font-family: 'Quicksand', sans-serif;
}


/* 詳細 */
.works-detail-text {
    display: flex;
    justify-content: center;
    font-size: 14px;
    margin: 40px 0;
}
.detail-wrap {
    width: 40%;
}

.term {
    margin-bottom: 30px;
}

.detail-ttl {
    font-family: 'Quicksand', sans-serif;
}

/* ボタン */
/* 基本 */
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn,
a.btn,
button.btn {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  padding: 1rem 4rem;
  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.5rem;
}

/*  */
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: #333;
}
  
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;
}

.detail-ttl {
    font-size: 8px;
    padding-bottom: 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;
}

.term-ttl {
    font-size: 8px;
    padding-bottom: 0;
}
/* ===================================-
フッター */
.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;
}
}

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

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

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

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

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    right: 0;
    width: 30vw;
    height: 50vh;
    /*ナビの高さ*/
    background: #99999990;
    /*動き*/
    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: 26%;
    height: 40vh;
    /*表示する高さ*/
    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 ul {
    display: none;
}

.gnavi {
    display: flex;
    gap: 3vw;
}

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

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

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

.navi-icon {
    height: 4vw;
}

.section-ttl {
    background-color: #F7D3C7;
    width: 150px;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: #63534A;
    padding-top: 10px;
    position: relative;
    z-index: 3;
}
.section-txt {
    font-size: 32px;
    top: -20px;
    right: 2px;
    font-family: 'Quicksand', sans-serif;
}

.section-txt span {
    font-size: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section-ttl2 {
    background-color: #63534A;
    height: 15px;
    padding: 10px;
    position: absolute;
    top: 135px;
    right: 0;
    left: 0;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	/* height: 85vh;スライダー全体の縦幅を画面の高さいっぱい（100vh）にする */
    padding: 0;
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../img/work_page/other03/05-01.png);
}

.slider-item02 {
    background:url(../img/work_page/other03/05-02.png);
}

.slider-item03 {
    background:url(../img/work_page/other03/05-03.png);
}
.slider-item04 {
    background:url(../img/work_page/other03/05-04.png);
}
.slider-item05 {
    background:url(../img/work_page/other03/05-05.png);
}
.slider-item06 {
    background:url(../img/work_page/other03/05-06.png);
}
.slider-item07 {
    background:url(../img/work_page/other03/05-07.png);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    max-width: 800px;
    height:25vh;/*各スライダー全体の縦幅を画面の高さいっぱいにする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*ドットナビゲーションの設定*/
.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:18px 0 0 0;
    padding: 0;
}

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

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

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

/* 案件タイトル */
.work-ttl {
    text-align: center;
    margin: 40px 0;
}

.work-ttl h2 {
    color: #63534A;
    margin: 0;
    font-size: 18px;
    padding-bottom: 10px;
}

.work-ttl a {
    text-decoration: none;
    color: #000;
    font-family: 'Quicksand', sans-serif;
}

.work-ttl a:hover{
    text-decoration: none;
    color: #DAA095;
    font-family: 'Quicksand', sans-serif;
}


/* 詳細 */
.works-detail-text {
    font-size: 14px;
    margin: 40px 0;
}

.detail-wrap {
    width: 100%;
}

.term ,.scoop ,.language {
    margin-bottom: 20px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.detail-wrap {
    width: 40%;
}

.language {
    margin-bottom: 30px;
}

.detail-ttl {
    font-family: 'Quicksand', sans-serif;
}

.explanation {
margin-bottom: 50px;
}


/* ボタン */
/* 基本 */
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn,
a.btn,
button.btn {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  padding: 10px;
  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.5rem;
}

/*  */
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: #333;
}
  
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;
}

.detail-ttl {
    font-size: 8px;
    padding-bottom: 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;
}


/* ================================
フッター
=============================== */
.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;
}
}
