@charset "utf-8";


/***************
全体の設定
***************/

/*******ページ遷移アニメーションここから*******/
/***** 全画面を覆う背景 *****/
.mask {
  position: fixed;/*固定表示*/
  z-index: 555; /*最前面へ*/
  top: 0;
  left: 0;
  width: 100vw; /*画面幅*/
  height: 100vh; /*画面の高さ*/
  background: repeat url("../images/load-pattern.jpg"); /*好きな色（パターン）*/
  animation: fadeOut 0.2s forwards; /*フェードアウト*/
  animation-delay: 1.2s; /*円のアニメーション＋遅延時間*/
}
/*フェードアウトアニメーション*/
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    visibility: hidden;
  }
}
/***** 広がる円 *****/
.circle {
  position: absolute; /*固定表示*/
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto; /*中央配置*/
  width: 0;
  height: 0;
  background: repeat url("../images/tesukiwashi-pattern.jpg"); /*ページ全体の背景色*/
  animation: circle-open 1s linear forwards;
}
/*円が拡大するアニメーション*/
@keyframes circle-open {
  0% {
    width: 0;
    height: 0;
    border-radius: 50%;
  }
  20%,
  80% {
    /*少し拡大して止まる*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }
  99% {
    /*ぎりぎりまで正円*/
    width: 99vw;
    height: 99vw;
    border-radius: 50%;
  }
  100% {
    /*全画面*/
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
}
/*******ページ遷移アニメーションここまで*******/


/**背景画像設定、フォント設定**/
body{
  /*背景に和紙のテクスチャを設定*/
	-webkit-text-size-adjust: 100%;
	background: repeat url("../images/tesukiwashi-pattern.jpg");
}

/**全体のh2設定**/
h2{
  text-align: center;
  padding-bottom: 23px;
  font-family: 'RocknRoll One', sans-serif;
  font-size: 29px;
  color: #222244;/*フォントの色を微妙に濃い紺色に*/
}

/**全体の文字（ｐなど）設定**/
p{
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #222244;/*フォントの色を微妙に濃い紺色に*/
}

section p{
  line-height: 23px;
  letter-spacing: 0.006em;
}


/***ページサイズ***/
#page{
	width: 100%; /*全体の大きさ*/
	margin: 0 auto; /*全体の中心寄せ*/
}

/*リスト先頭の点をなくす*/
ul li{
	list-style: none;
}

/**下線を消す**/
*{
	text-decoration: none;
}

/***ページトップへ戻る矢印ここから***/
#page_top{
  z-index: 100;/*重なりの数値*/
  position: fixed;/*トップへ戻る矢印がスクロールについてくる*/
  right: 0;
  bottom: 0;
}
#page_top a{
  display: block;
  width: 80px;
  text-decoration: none;/**リンクの下線を消す**/
}
/***ページトップへ戻る矢印ここまで***/

/******ヘッダー部分******/
#header{
	width: 100%;
	margin: 0 0 45px 0;
}

#header div{
	width: 1000px;
	margin: 0 auto;
}

/*topの背景、市松模様の円*/
.TOP_back_img{
	background: no-repeat center/50% url("../images/background01-03.png");
	background-position: 120% -70%;
}


/***グローバルナビとハンバーガーメニュー***/

/***ハンバーガーメニューを非表示に**/
.SM_Menu{
  display: none;
}
/*ハンバーガーメニューの中身を非表示に*/
.Menu-Group{
  display: none;
}

/**グローバルメニューここから**/
#header nav{
	width: 100%;
	margin: 0 auto;
 	background-color:rgba(255,255,255,0.85);
  border-radius: 0px 0px 40px 40px;/*右下と左下の角の丸み*/
}

/*headerの1つめのFlexbox*/
.header_container01{
	padding: 0;/*paddingを0に*/
	/*横並びで左から並べる*/
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	width: 65%;/*グローバルメニューの幅*/
  margin: 0 auto;/*中央寄せ*/
}

/*グローバルナビ各アイコン*/
.gl_nav_inner{
  margin: auto;
	width: 200px;
	height: 90px;
	border-right: 1.5px dotted #ccc;/*右側にドット線を引く*/
	line-height: 33px;/*アイコンと文字の間を少し開ける*/
}

/*1番目（わたしたちに）と4番目（アクセス）の左側に線を引く*/
.gl_nav_inner:nth-child(1),.gl_nav_inner:nth-child(4){
	border-left: 1.5px dotted #ccc;
}

/*グローバルナビアイコン画像*/
.gl_nav_inner img{
	width: 60px;
	display: block;
	margin: 0 auto;
	padding: 0 45px;
}

/*グローバルナビ文字*/
.gl_nav_inner p{
	text-align: center;
	height: 16px;
	margin: 0;
  letter-spacing: -0.05em;
}

/*グローバルナビ英語文字部分*/
.gl_nav_inner span{
  display: block;
  text-align: center;
  height: 1px;
  font-size: 14px;
}

/*塩梅ロゴ部分*/
.Top_rogo img{
	width: 180px;
}
.Top_rogo h1{
	margin:5px 20px 0 20px;
}

.gl_nav_inner:hover{
  transform: scale(1.15, 1.15);
  opacity: 0.6;
}

/***グローバルメニューここまで***/


/**トップのslick_Sliderここから**/
#Top_slick_Slider{
  position: relative;
}
.slider-2 .slick-slide{
  width: 960px;
  height: 500px;
  margin: 0 40px;
  /*position: relative;*/
  overflow: hidden;
}
.slider-2 .slick-slide img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-2 .slick-arrow{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 180px;
  z-index: 1;/*重なりの数値*/
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.slider-2 .slick-arrow::before{
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #09000d;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
.slider-2 .slick-next{
  right: 0;
}
.slider-2 .slick-prev{
  left: 0;
}
.slider-2 .slick-next::before{
  left: 20px;
}
.slider-2 .slick-prev::before{
  border-width: 0 0 3px 3px;
  right: 22px;
}
.dots-2 .slick-dots{
  position: absolute;
  bottom:20px;/*上下の位置を変える*/
}
.dots-2 .slick-dots li{
  display: inline-block;
}
.dots-2 .slick-dots button{
  width: 10px;
  height: 10px;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
}
.slider-2 .slick-arrow{
  top: 50%;
}
/**トップのslick_Sliderここまで**/

/*区切り線スマホ版非表示*/
.shapedividers_com-9253{
  display: none;
}
.shapedividers_com-8653{
  display: none;
}

/***区切り線1ここから****/
.shapedividers_com-3185{
overflow:hidden;
position:relative;
height: 245px;
}
.shapedividers_com-3185::before{
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;/*重なりの数値*/
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw;
background-size: 181% 303px;
background-position: 50% 100%;
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23f8e58c"/></svg>'); 
}
@media (min-width:2100px){
.shapedividers_com-3185::before{
background-size: 181% calc(2vw + 303px);
}
}
/***区切り線1ここまで***/


/***区切り線2ここから***/
.shapedividers_com-2190{
overflow:hidden;
position:relative;
height: 129px;
}
.shapedividers_com-2190::before{
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;/*重なりの数値*/
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw;
background-size: 135% 157px;
background-position: 50% 0%;
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23f8e58c"/></svg>'); 
}
@media (min-width:2100px){
.shapedividers_com-2190::before{
background-size: 135% calc(2vw + 157px);
}
}
/***区切り線2ここまで***/


/**区切り線上の装飾(区切り線1)ここから**/
.line_01{
  position: relative;
}
.line_01 .ume01{
  position: absolute;
  z-index: 150;/*重なりを前面に*/
  left: 80px;
  animation-name: ume01; /* アニメーションの任意の名前、@keyframe と同じ名前を入れる*/
  animation-duration: 1.5s; /* 何秒かけるか*/
  animation-timing-function: ease; /*アニメーションの進行具合を操作 (ease→初期値：開始時と終了時が緩やかに変化)*/
  animation-iteration-count: infinite; /*アニメーションを実行する回数 (infinite:無制限)*/
}
/*梅の揺れる角度指定*/
  @keyframes ume01{
0%,100%{
  transform: rotate( 15deg );/*ここに開始のCSSを記述*/
  }
50%{
  transform: rotate( -15deg );/*ここに終了のCSSを記述*/
  }
}
.line_01 .ume02{
  position: absolute;
  z-index: 150;/*重なりを前面に*/
  width: 50px;
  left: 420px;
  top: 150px;
  animation-name: ume02; /*アニメーションの任意の名前、@keyframe と同じ名前を入れる*/
  animation-duration: 1.8s; /*何秒かけるか*/
  animation-timing-function: ease; /*アニメーションの進行具合を操作 (ease→初期値：開始時と終了時が緩やかに変化)*/
  animation-iteration-count: infinite; /*アニメーションを実行する回数 (infinite:無制限)*/
}
/*梅の揺れる角度指定*/
@keyframes ume02{
 0%,100%{
  transform: rotate( 20deg );/*ここに開始のCSSを記述*/
  }
50%{
  transform: rotate( -20deg );/*ここに終了のCSSを記述*/
  }
}

.line_01 .ume03{
  position: absolute;
  z-index: 150;/*重なりを前面に*/
  width: 85px;
  right: 130px;
  top: 120px;
  animation-name: ume03; /* アニメーションの任意の名前、@keyframe と同じ名前を入れる*/
  animation-duration: 1s; /* 何秒かけるか*/
  animation-timing-function: ease;  /*アニメーションの進行具合を操作 (ease→初期値：開始時と終了時が緩やかに変化)*/
  animation-iteration-count: infinite; /*アニメーションを実行する回数 (infinite:無制限)*/
}
/*梅の揺れる角度指定*/
@keyframes ume03{
0% , 100%{
  transform: rotate( 15deg );/*ここに開始のCSSを記述*/
  }
50%{
  transform: rotate( -15deg );/*ここに終了のCSSを記述*/
  }
}
/**区切り線上の装飾(区切り線1)ここまで**/

/**区切り線上の装飾(区切り線2)ここから**/
.line_02{
  position: relative;
}
.line_02 .ume04{
  position: absolute;
  z-index: 150;/*重なりを前面に*/
  left: 190px;
  width: 80px;
  animation-name: ume04; /* アニメーションの任意の名前、@keyframe と同じ名前を入れる*/
  animation-duration: 1.5s; /* 何秒かけるか*/
  animation-timing-function: ease; /*アニメーションの進行具合を操作 (ease→初期値：開始時と終了時が緩やかに変化)*/
  animation-iteration-count: infinite; /*アニメーションを実行する回数 (infinite:無制限)*/
}
/*梅の揺れる角度指定*/
@keyframes ume04{
0%,100%{
  transform: rotate( 20deg );/*ここに開始のCSSを記述*/
  }
50%{
  transform: rotate( -20deg );/*ここに終了のCSSを記述*/
  }
}

.line_02 .ume05{
  position: absolute;
  z-index: 150;/*重なりを前面に*/
  width: 50px;
  right: 180px;
  top: 10px;
  animation-name: ume05; /*アニメーションの任意の名前、@keyframe と同じ名前を入れる*/
  animation-duration: 1.8s; /*何秒かけるか*/
  animation-timing-function: ease; /*アニメーションの進行具合を操作 (ease→初期値：開始時と終了時が緩やかに変化)*/
  animation-iteration-count: infinite; /*アニメーションを実行する回数 (infinite:無制限)*/
}
/*梅の揺れる角度指定*/
@keyframes ume05{
0%,100%{
  transform: rotate( 20deg );/*ここに開始のCSSを記述*/
  }
50%{
  transform: rotate( -20deg );/*ここに終了のCSSを記述*/
  }
}
/**区切り線上の装飾(区切り線2)ここまで**/


/***2つめの記事のかたまりここから***/
#Top_02{
	width: 100%;
	height: 710px;
	background-color: #f8e58c;/*色を淡黄色に*/
}

#Top_02 section{
	width: 1000px;
	height: 315px;
	margin: 0 auto;
}

#Top_02 h2{
	margin: 0;
}

/**CSSスライダーここから**/
#Top_02 .Top_02_slide{
	width: 100%;
}
/*スライドする要素*/
.slide-content {
  width: 400px;
  height: 350px;
}
/*スライドレールの枠*/
.slide-wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 350px;
  margin-bottom: 100px;
}
/*content4つをまとめたスライドブロック*/
.slideshow{
  display: flex;
  -webkit-animation: loop-slide 35s infinite linear 1s both;
  animation: loop-slide 35s infinite linear 1s both;
  padding: 0;
}
@-webkit-keyframes loop-slide{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-100%);
  }
}
@keyframes loop-slide{
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ホバー時に動きを止める（パターン2・3）*/
.slide-paused:hover .slideshow{
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
/* ホバー時の装飾（パターン3） */
.content-hover{
  transition: all 0.2s;
  margin-right: 20px;
}
.content-hover:hover{
  transform: translateY(-20px);
  border-radius: 0 10%;
  box-shadow: 0 3px 10px 0 #333;
  opacity: 0.8;
  cursor: pointer;
}
/**CSSスライダーここまで**/

/***2つめの記事のかたまりここまで***/


/***3つめの記事のかたまりここから***/
#Top_03{
	width: 100%;
  height: 800px;
  position: relative;
  /*三角形の背景指定*/
	background: no-repeat left/40% url("../images/background02_Top03(01).png");
	background-position: -5% 90%;
}

#Top_03 section{
	width: 1000px;
	height: 500px;
	margin: 0 auto;
}

/*作業についての文と写真を横並びに*/
.Top_03_container01{
	display: flex;
	height: 500px;
}

.Top_03_01{
  width: 500px;/*文章の幅*/
}

.Top_03_img01{
  height: 550px;/*画像の幅*/
}

.Top_03_container02_tb{
  display: none;
}

/*#Top_03のギャラリーページへのnav*/
#Top_03 nav{
  margin-top: 210px;
  width: 100%;
  /*中央寄せ*/
  display: inline-block;
  text-align: center;
}

#Top_03 button{
  font-size: 1.1em;
  color: #222244;/*色を微妙に濃い紺色に*/
  background-color: #F7E17C;/*色を微妙に濃い黄色に*/
  border: 0;
  border-bottom: 7px solid #E8C473;/*色を微妙に濃い紺色に*/
  font-weight: bold;
  padding: 1rem 3.4rem;
  border-radius: 100vh;
  cursor: pointer;
}

#Top_03 button a{
  color: inherit;/*リンクの文字色を親要素から継承し、リンク独自色に変えない*/
  letter-spacing: 1px;
}

#Top_03 button:hover{
  margin-top: 6px;/*カーソルが載ると下に*/
  border-bottom: 2px solid #ccc100;
}


/***3つめの記事のかたまりここまで***/

/**.Top_03 梅animeここから**/
.Top_03_container01 .ume06{
  position: absolute;
  z-index: 150;/*重なりで前面に*/
  width: 100px;
  right: 50px;
  bottom: 1px;
  animation-name: ume06; /*アニメーションの任意の名前、@keyframe と同じ名前を入れる*/
  animation-duration: 1.5s; /*何秒かけるか*/
  animation-timing-function: ease; /*アニメーションの進行具合を操作 (ease→初期値：開始時と終了時が緩やかに変化)*/
  animation-iteration-count: infinite; /*アニメーションを実行する回数 (infinite:無制限)*/
}
/*梅の揺れる角度指定*/
@keyframes ume06{
 0% , 100%{
  transform: rotate( 10deg );/*ここに開始のCSSを記述*/
  }
50%{
  transform: rotate( -10deg );/*ここに終了のCSSを記述*/
  }
}
/**.Top_03 梅animeここまで**/


/***区切り線3ここから***/
.shapedividers_com-3189{
overflow:hidden;
position:relative;
height: 80px;
}
.shapedividers_com-3189::before{
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;/*重なりの数値*/
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw;
background-size: 221% 87px;
background-position: 68% 100%;
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23badcad"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23badcad"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23badcad"/></svg>');
}
@media (min-width:2100px){
.shapedividers_com-3189::before{
background-size: 221% calc(2vw + 87px);
}
}
/***区切り線3ここまで***/


/***4つめの記事のかたまりここから***/
#Top_04{
	width: 100%;
	background-color: #badcad;/*色をうすもえぎ色に*/
}

/*記事の中身幅*/
#Top_04 .Top_04_wrapper{
	width: 1000px;
	height: 1000px;
	margin: 0 auto;
}

#Top_04 h2{
	margin: 0;
  padding: 35px 0 44px 0;
}

/*googleマップ*/
.access_center iframe{
  width: 100%;
  aspect-ratio: 10/4; /*アスペクト比（縦横比）を指定*/
}

/**ツイッター、住所電話と動画を左右横並びに**/
.Top_04_map_container01{
  display: flex;
}

/*ツイートウインドウ*/
/*全体の幅
.Top_map-Twitter{
  width: 315px;
  height: 100px;*/
/*  margin-top: 20px;上外側余白
}

.map-Twitter{
  width: 315px;
  height: 100px;
}*/


/*マップ中央の案内文*/
.Top_map-center{
	width: 500px;/*横幅*/
  height: 405px;/*縦幅*/
  /*背景に和紙のテクスチャを設定*/
  background: repeat  url(../images/background01-05.png), url("../images/tesukiwashi-pattern.jpg");
  padding: 10px 0 0 8px; /*内側余白*/
  margin: 20px;/*外側余白*/
  border-radius: 10px 10px 10px 10px;/*角丸に*/
}

.Top_map-center h3{
  text-align: left;/*テキストを中央揃えに*/
  padding-left: 50px;
  background: no-repeat url("../images/Top_map-center_ume02.png");
  font-size: 1.5em;
  margin-top: 2px;/*上外側余白*/
  padding-bottom: 13px;/*下内側余白*/
  border-bottom: 2px solid #cccccc;/*下線 直線 薄いグレー*/
  line-height: normal;
}

.Top_map-center address{
  font-family: 'Zen Maru Gothic', sans-serif;/*フォント設定*/
  color: #222244;/*フォントの色を微妙に濃い紺色に*/
  font-style: normal;/*フォントをイタリック体ではなくノーマルに*/
  line-height: 20px;
  letter-spacing: 0.004em;
  margin: 20px;/*外側余白*/
	text-align: left;/*テキストを左揃えに*/
}

/*マップ左側の動画*/
.Top_map-left{
	width: 500px;/*マップ右側の横幅*/
	margin: 22px 0 0 0;/*外側余白*/
}

.Top_map-left .map_movie iframe{
  width: 100%;
  aspect-ratio: 30/26; /*アスペクト比（縦横比）を指定*/
}

/***4つめの記事のかたまりここまで***/


/*footer部分*/
footer{
	text-align: center;/*中央寄せ*/
	height: 40px;/*画像の高さ*/
}


/*****************orderページここから********************/


/**メインコンテンツタイトル（h2）**/
#order_h2{
  width: 100%;
}

/**ギャラリーぺージのh2設定**/
#order_h2 h2{
  text-align: center;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-family: 'RocknRoll One', sans-serif;
  font-size: 2.1rem;
  color: #222244;/*フォントの色を微妙に濃い紺色に*/
}

#order_h2 p{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 19px;
  margin-top: 2px;
  letter-spacing: 1.4px;
  text-align: center;
  color: #222244;/*フォントの色を微妙に濃い紺色に*/
}


/**全体のh3設定**/
#order_page h3{
  text-align: center;
  font-family: 'RocknRoll One', sans-serif;
  font-size: 1.6rem;
  color: #222244;/*フォントの色を微妙に濃い紺色に*/
  z-index: 1;
}

/**全体のh4設定**/
#order_page h4{
  text-align: center;
  padding-bottom: 23px;
  font-family: 'RocknRoll One', sans-serif;
  font-size: 19px;
  color: #222244;/*フォントの色を微妙に濃い紺色に*/
}


/*今まで手掛けた制作事例*/
#order_01{
  margin-top: 55px;
  margin-bottom: 50px;/*お仕事を依頼されたい方は～との間をあける*/
}

/*ギャラリーのいままで手がけたお仕事～の文章*/
#order_01 .order_txt{
  text-align: center;
  margin: 0 0 25px 0;
}

/***今まで手掛けた制作事例、タブ切り替え**/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: LightGray;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-switch:checked+.tab-label {
  background: #e57d7b;/*梅色*/
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
}
.tab-switch {
  display: none;
}

/**今まで手掛けた制作事例のタブの中身**/
.Production_wrap{
  display: flex;
  flex-direction: row;/*水平方向に配置*/
  flex-wrap: wrap;/*横複数行に配置*/
  justify-content: flex-start;/*左側に寄せて配置*/
  margin: 0 auto;/*中央寄せ*/
}
.Thumb{
  width: 275px;
  height: 260px;
  border: solid 1px #cccccc;/*周囲に線を引く*/
  margin: 14px;
}
.Thumb p{
  font-size: 14px;
  text-align: left;
  line-height: 15.9px;
  margin: 3px 3px 8px 7px;
}
.Thumb span{
  text-align: left;
  font-size: 12.4px;
  margin: 7px 0 0 8px;
  bottom: 8px;/*下寄せの指定*/
}
.Thumb_img{
  width: 275px;
  height: 193px;
  margin: 0 auto;
  overflow: hidden;/*はみ出た部分を非表示に*/
}
.Thumb_img img{
  transition: 1s all;
}
.Thumb_img img:hover{
  transform: scale(1.2,1.2);
  transition: 1s all;
}

/*イラストのサムネイルの大きさ指定*/
.IllustIntroduction .Thumb{
  width: 275px;
  height: 193px;
  border: none;/*枠線を無くす*/
  margin: 14px;
  overflow: hidden;/*はみ出た部分を非表示に*/
}
.IllustIntroduction .Thumb .Thumb_img:hover{
  transform: scale(1.2,1.2);
  transition: 1s all;
}
.IllustIntroduction .Thumb .Thumb_img{
  width: 275px;
  height: 193px;
  margin: 0 auto;
  transition: 1s all;
  /*画像の比率を変えずに画面内に収める*/
  object-fit: cover;
  position: relative;
}

/***お仕事を依頼されたい方は以下を～部分***/
/*ギャラリーページ区切り線01ここから*/
.shapedividers_com-4573{
  width: 100%;
  height: 100px;/*区切り線の高さ*/
}
.shapedividers_com-4573{
  overflow:hidden;
  position:relative;
}
.shapedividers_com-4573::before{
  content:'';
  font-family:'shape divider from ShapeDividers.com';
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 90px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23f8e58c"/></svg>');
}
@media (min-width:768px){
.shapedividers_com-4573::before{
  background-size: 100% 90px;
  background-position: 50% 0%;
}
}
@media (min-width:1025px){
.shapedividers_com-4573::before{
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 138% 82px;
  background-position: 50% 100%;
  transform: rotateY(180deg);
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23f8e58c"/></svg>'); 
}
}
@media (min-width:2100px){
.shapedividers_com-4573::before{
  background-size: 138% calc(2vw + 82px);
}
}
/*ギャラリーページ区切り線01ここまで*/

/**ギャラリーページ区切り線01上の装飾ここから**/
.shapedividers_com-4573{
  position: relative;
}
.shapedividers_com-4573 .order_ume01{
  position: absolute;
  z-index: 150;/*重なりを前面に*/
  top: 20px;
  right: 110px;
  width: 55px;
  animation-name: ume04; /*アニメーションの任意の名前、@keyframe と同じ名前を入れる*/
  animation-duration: 1.5s; /*何秒かけるか*/
  animation-timing-function: ease; /*アニメーションの進行具合を操作 (ease→初期値：開始時と終了時が緩やかに変化)*/
  animation-iteration-count: infinite; /*アニメーションを実行する回数 (infinite:無制限)*/
}
/*梅の揺れる角度指定*/
  @keyframes order_ume01{
0%,100%{
  transform: rotate( 20deg );/*ここに開始のCSSを記述*/
  }
50%{
  transform: rotate( -20deg );/*ここに終了のCSSを記述*/
  }
}
/**ギャラリーページ区切り線01上の装飾ここまで**/


/*ギャラリーページ区切り線02ここから*/
.shapedividers_com-7404{
  width: 100%;
  height: 100px;/*区切り線の高さ*/
}
.shapedividers_com-7404{
  overflow:hidden;
  position:relative;
  z-index: 0;
}
.shapedividers_com-7404::before{
  content:'';
  font-family:'shape divider from ShapeDividers.com';
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 90px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23f8e58c"/></svg>');
}
@media (min-width:768px){
.shapedividers_com-7404::before{
  background-size: 100% 90px;
  background-position: 50% 0%;
}
}
@media (min-width:1025px){
.shapedividers_com-7404::before{
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 138% 82px;
  background-position: 50% 0%;
  transform: rotateY(180deg);
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23f8e58c"/></svg>'); 
}
}
@media (min-width:2100px){
.shapedividers_com-7404::before{
  background-size: 138% calc(2vw + 82px);
}
}
/*ギャラリーページ区切り線02ここまで*/


.work_guide{
  width: 960px;
  margin: 0 auto;
  font-size: 1.2em;
  line-height: 50px;
}
.work_guide p{
  text-align: center;
}

/*マーカーアニメーションここから*/
.anim-underline{
  position: relative;
}
.anim-underline::before {
  content:"";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 40%, #fcd0cf 60%);
  animation: underlineAnim 3.7s ease-in-out infinite;
  z-index: -1;
}
@keyframes underlineAnim{
  0% {
    right: 100%;
  }
  100% {
    right: 0;
  }
}
/*マーカーアニメーションここまで*/



/*価格帯の部分の横並び*/
.work_guide_Flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;/*最初と最後のアイテムは端に、残りは等間隔で配置*/
}

/**価格帯**/

/*価格帯の内容部分*/
#order_02{
  background-color: #F8E58C;/*淡黄色に*/
  z-index: 0;
  height: 570px;
}

#order_02 h3{
  margin-top: 0px;
  padding-top: 35px;
  z-index: 1;
}

#order_02 dt{
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: bold;
}

#order_02 dd{
  font-size: 1.1em;
  margin-bottom: 25px;
  line-height: 1.5;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #222244;/*フォントの色を微妙に濃い紺色に*/
}

#order_02 .work_guide_Flex{
  width: 960px;
  height: 420px;
  margin: 0 auto;
}

/*梅の花アニメーションの部分*/
#order_02 .work_guide_Flex img{
  margin: 80px 0 0 0;
  width: 320px;
  height: 350px;
  object-fit: cover; /*画像の歪みを直す*/
  z-index: 10;
}

/**注意点について**/
#order_04{
  width: 960px;
  /*背景の三角指定*/
  background: no-repeat url("../images/background04-01.png");
  /*囲み線*/
  margin: 2em auto;
  padding: 2.2em 2em 3.7em 2em;/*内側余白*/
  position: relative;
  border: 1px solid #ccc;/*線を薄い緑色に*/
}

/*囲み線のポイントカラー部分*/
#order_04:before{
  border-bottom:30px solid transparent;
  border-left:30px solid #f2b5b3;/*薄い赤色に*/
  content: '';
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
}
#order_04:after{
  border-left:30px solid transparent;
  border-bottom:30px solid #f2b5b3;/*薄い赤色に*/
  content: '';
  display: block;
  position: absolute;
  bottom: 0px;
  right: 0px;
}

#order_04 p{
  width: 960px;
  margin: 0 auto;
  font-size: 1em;
  margin-top: 15px;
  line-height: 28px;
}

/*最後の行だけ下側に外側余白を*/
#order_04 p:last-child{
  margin-bottom: 25px;
}


/**フローチャート**/
#order_03 h3{
  margin: 56px 0 5px;
}
#order_03{
  box-sizing: border-box;
}
#order_03 .order_03_01 section{
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#order_03 ul{
  padding: 0;
}
#order_03 li{
  list-style-type: none;
}
#order_03 dd{
  margin-left: 0;
  font-size: 1.05em;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #222244;/*フォントの色を微妙に濃い紺色に*/
}

/**ギャラリーページフローチャートここから**/
.flow > li{
  position: relative;
}
.flow > li:not(:last-child){
  margin-bottom: 40px;
}
.flow > li:not(:first-child)::before{
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #bbdcf3;/*色をうす青色に*/
  position: absolute;
  top: -40px;
  left: -webkit-calc(10% + 30px - 2px);
  left: calc(10% + 30px - 2px);
  z-index: 10;
}
.flow > li dl {
  padding: 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  border: 2px solid #f2b5b3;/*枠色を淡い梅の色に*/
  border-radius: 10px;
  position: relative;
}
.flow > li:not(:last-child) dl::before,
.flow > li:not(:last-child) dl::after{
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow > li:not(:last-child) dl::before{
  border-width: 22px;
  border-top-color: #f2b5b3;/*枠色を淡い梅の色に*/
}
.flow > li:not(:last-child) dl::after{
  border-width: 20px;
  border-top-color: #fff;
}
.flow > li dl dt{
  font-size: 20px;
  font-weight: 600;
  color: #3d3d9c;/*文字色を紺色に*/
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}
.flow > li dl dt .icon{
  letter-spacing: 1px;
  font-size: 16.5px;
  color: #fff;
  background: rgb(107,144,219);
  background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
  background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  background: linear-gradient(to right, rgba(101, 107, 186,1) 0%,rgba(187, 220, 243) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}
.flow > li dl dt img{
  width: 70px;
  height: 70px;
}
/**ギャラリーページフローチャートここまで**/


/*かまぼこ型の区切り線ここから*/
.curved02{
  position: relative;
  background: #badcad;/*色を薄もえぎ色に*/
  height: 8vh;
  border-top-left-radius: 45% 50%;
  border-top-right-radius: 45% 50%;
}
/*かまぼこ型の区切り線ここまで*/


/**お問い合せ**/
#order_page .InquiryEstimate h3{
  text-align: center;
  font-family: 'RocknRoll One', sans-serif;
  font-size: 1.6em;
  color: #222244;/*フォントの色を微妙に濃い紺色に*/
  z-index: 1;
  margin: 0 25px 31px 25px;
}

.InquiryEstimate{
  height: 250px;
  margin: 0 auto;
  width: 100%;/*背景色のために100％に*/
  background-color: #badcad;/*色をうすもえぎ色に*/
}
.InquiryEstimate address{
  font-style: normal;
  color: #222244;/*フォントの色を微妙に濃い紺色に*/
  text-align: center;
  font-size: 17.5px;
}

/************************
レスポンシブここから
*************************/
/*タブレット向けのウインドウサイズ（960PX）以下の場合の指定*/
@media screen and (min-width:743px) and ( max-width:960px){
  /*ハンバーガーメニューの中身を非表示に*/
  .Menu-Group{
    display: none;
  }

  /*ヘッダー部分*/
  #header div{
    width: 100%;
  }

  /*塩梅ロゴ部分*/
  .Top_rogo{
    width: 20%;
  }

  .Top_rogo img{
    width: 100%;
  }

  /*headerの1つめのFlexbox*/
  .header_container01{
    padding: 0;/*内側余白を0に*/
    /*横並びで左から並べる*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: auto;
  }

  /*グローバルナビ各アイコン*/
  .gl_nav_inner{
    margin: auto;
    width: 20%;
    height: auto;
    border-right: 1.5px dotted #ccc;/*アイコンの右側にドット線を引く*/
    line-height: 33px;
  }

  main{
    width: 100%;
  }

  /***PC版区切り線の非表示ここから****/
  .shapedividers_com-3185{
    display: none;
  }
  .shapedividers_com-2190{
    display: none;
  }

  /**スマホタブレット版ひとつめの区切り線ここから**/
  /*区切り線1スマホ・タブレット版表示*/
  .shapedividers_com-9253{
    display: block;
  }
  .shapedividers_com-9253{
  overflow:hidden;
  position:relative;
  height: 85px;
  }
  .shapedividers_com-9253::before{
  content:'';
  font-family:'shape divider from ShapeDividers.com';
  position: absolute;
  z-index: 3;/*重なりの数値*/
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 83px;
  background-position: 50% 100%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23f8e58c"/></svg>'); 
  }
  /**スマホタブレット版ひとつめの区切り線ここまで**/

  /**スマホタブレット版区切り線2ここから**/
  /*区切り線2スマホ・タブレット版表示*/
  .shapedividers_com-8653{
    display: block;
  }
  .shapedividers_com-8653{
    overflow:hidden;
    position:relative;
    height:25px;
  }
  .shapedividers_com-8653::before{
    content:'';
    font-family:'shape divider from ShapeDividers.com';
    position: absolute;
    z-index: 3;/*重なりの数値*/
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 50px;
    background-position: 50% 0%;
    background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23f8e58c"/></svg>');
  }
  @media (min-width:2100px){
    .shapedividers_com-8653::before{
    background-size: 100% calc(2vw + 50px);
    }
  }
  /**スマホタブレット版区切り線2ここまで**/

  /**スマホタブレット版区切り線上の装飾(区切り線1)ここから**/
  .SM_line_01{
    position: relative;/*梅の基準に*/
  }
  .SM_line_01 .ume07{
    position: absolute;
    z-index: 150;/*重なりで前面に*/
    left: 40px;
    top: 12px;
    width: 70px;
    animation-name: ume07; /*アニメーションの任意の名前、@keyframe と同じ名前を入れる*/
    animation-duration: 1.5s; /* 変化に何秒かけるか*/
    animation-timing-function: ease; /*アニメーションの進行具合を操作 (ease→初期値：開始時と終了時が緩やかに変化)*/
    animation-iteration-count: infinite; /*アニメーションを実行する回数 (infinite:無制限)*/
  }
  /*梅の揺れる角度指定*/
  @keyframes ume07{
     0%,100%{
      transform: rotate( 15deg );/*ここに開始のCSSを記述*/
      }
    50%{
      transform: rotate( -15deg );/*ここに終了のCSSを記述*/
      }
  }
  /**スマホタブレット版区切り線上の装飾(区切り線1)ここまで**/


  /*2つめの記事のかたまり*/
  #Top_02 section{
    width: 100%;
  }

  /*左側に空きを作る*/
  #Top_02 section h2{
    margin-left: 15px;
  }

  /*文字の両側に空きを作る*/
  #Top_02 p{
    margin: 10px 15px 15px;
  }

  #Top_02 .Top_02_slide{
    padding: 0;
  }

  /***3つ目の記事***/
  #Top_03 section{
    width: 100%;
  }
  /*作業についての文と写真を横並びに*/
  .Top_03_container01{
    width: 100%;
    display: flex;
    height: auto;
  }

  /*左側に空きを作る*/
  #Top_03 p{
    margin-left: 15px;
  }

  .Top_03_01{
    width: 50%;/*文章の幅*/
  }

  .Top_03_container02{
    width: 50%;/*画像の幅*/
  }

  .Top_03_img01{
    width: 100%;/*画像の幅*/
    height: auto;
  }

  /*ギャラリーページへのボタン*/
  #Top_03 nav{
    margin-top: 230px;
  }


  /***4つめの記事、アクセス・お問合せ***/
  /*記事の中身幅*/
  #Top_04 .Top_04_wrapper{
    width: 100%;
  }

  /*左側に空きを作る*/
  #Top_04 section h2{
    margin-left: 15px;
  }

  /*googleマップの設定*/
  .access_center iframe{
  width: 100%;
  aspect-ratio: 10/4;/*アスペクト比（縦横比）を指定*/
  }

  /*マップの説明などを横並びに*/
  .Top_04_map_container01{
    width: 100%;
  }

  /*YouTube埋め込み*/
  /*横幅を指定するための要素*/
  .Top_map-left{
    width: 50%;/*ここに横幅を指定*/
    margin: 20px 0 0 5px;
  }

  .Top_map-left .map_movie iframe{
    aspect-ratio: 10/10;
  }

  /*中央の住所、電話番号など*/
  .Top_map-center{
    width: 50%;
  }

  /*左側に空きを作る*/
  #Top_04 .Top_map-center address{
    margin: 10px 10px 0 10px;
    line-height: 15px;
  }

  /*ツイートウインドウ*/
  /*全体の幅
  .Top_map-Twitter{
    width: 31%;*/
  /*  margin-top: 20px;上外側余白
  }

  .map-Twitter {
    width: 97%;
  }

  .map-Twitter iframe{
    width: 100%;
    aspect-ratio: 1/3; /*アスペクト比（縦横比）を指定
  }*/

  /*****ギャラリーぺージ*****/

  /*ギャラリーページ区切り線01、02の高さを合わせる*/
  .shapedividers_com-4573{
    height: 80px;/*区切り線の高さ*/
  }
  .shapedividers_com-7404{
    height: 80px;/*区切り線の高さ*/
  }


  .work_guide{
    width: 100%;
  }

  /*要素を中央寄せに*/
  .Production_wrap{
  display: flex;
  flex-direction: row;/*水平方向に配置*/
  flex-wrap: wrap;/*横複数行に配置*/
  justify-content: center;/*中央に寄せて配置*/
  }

  /*価格帯の部分の縦並び*/
  .work_guide_Flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*上から下へ垂直方向に配置*/
    flex-direction: column;
  }

  /***価格帯（目安）消費税別***/
  #order_02 .work_guide_Flex{
    width: 95%;
    height: auto;
    margin: 0 auto;
  }

  /*イラスト作成～*/
  .order_02_inner{
    width: 95%;
    margin: 0 auto;
  }

  /*価格帯の内容部分*/
  #order_02{
    width: 100%;
  }

  #order_02 dt{
      font-size: 1.3em;
      margin-bottom: 15px;
  }

  #order_02 dd{
    margin-bottom: 38px;
  }

  /*軽作業部分（最後）だけ、下の余白を無し(梅の花との余白を詰める)*/
  #order_02 dd:last-child{
    margin-bottom: 0px;
  }
  /*下の余白を無し(梅の花との余白を詰める)*/
  #order_02 dl{
    text-align: center;
    margin-bottom: 0;
  }

  /****注意点について****/

  #order_04{
    width: 90%;
    padding: 0;
  }

  /**全体のh3設定**/
  #order_page h3{
    width: 100%;
    text-align: center;
  }

  #order_02{
    padding-top: 50px;
  }

  #order_04 p{
    width: 90%;
    margin: 0 auto;
    font-size: 1.1em;
    padding-bottom: 29px;
  }

  /*梅の花の画像*/
  #order_02 .work_guide_Flex img{
    margin: 0 30px 100px auto;/*梅の画像を右寄せに*/
    width: 55%;
    height: 400px;
    z-index: 10;
  }

  #order_page .InquiryEstimate h3{
    margin: 0 0 25px 0;
  }
}

/***********************
スマートフォン向けのウインドウサイズ
**************************/
@media screen and (max-width: 744px){
  #page{
    width: 100%; /*全体の大きさ*/
    margin: 0 auto; /*全体の中心寄せ*/
  }

  main{
    width: 100%;
  }

  #header div{
    width: 100%;/*ヘッダーの横幅を100％に*/
  }

  /**************
  グローバルナビとハンバーガーメニュー
  **************/
  /*PC板を非表示スマホ版を表示*/
  .PC_gl_nav{
    display: none;
  }
  .SM_Menu{
    display: block;
  }

  /**************
  ハンバーガーメニュー
  ***************/
  /**ハンバーガーメニュー開閉ここから**/

  /*ハンバーガーメニューボタン*/
  .MenuBtn.Style01{
    position: fixed;/*スクロールでついてくる*/
    /*大きさ*/
    width: 50px;
    height: 50px;
    z-index: 155;/*区切り線とメニューより重なりをいちばん上に*/
    /*右上に表示*/
    top: 20px;
    right: 20px;
    background: #f8e58c;/*背景色を淡黄色に*/
    border: solid 2px #000000;/*黒*/
    /*3本線を中央に寄せる*/
    display: flex;
    justify-content: center;
    align-items: center;
  }

/*3本線デザイン*/
  .MenuBtn.Style01 .MenuBtn-BarFrame{
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
  }
  .MenuBtn.Style01 .MenuBtn-BarFrame-FirstBar{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000000;/*黒*/
    transition: all .15s linear;
  }
  .MenuBtn.Style01 .MenuBtn-BarFrame-SecondBar{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000000;/*黒*/
    transition: all .15s linear;
    transform: translateY(-8px) rotate(0deg);
  }
  .MenuBtn.Style01 .MenuBtn-BarFrame-ThirdBar{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000000;/*黒*/
    transition: all .15s linear;
    transform: translateY(8px) rotate(0deg);
  }
  .MenuBtn.Style01.isClosed .MenuBtn-BarFrame-FirstBar{
    opacity: 0;
  }
  .MenuBtn.Style01.isClosed .MenuBtn-BarFrame-SecondBar{
    transform: translateY(0) rotate(45deg);
  }
  .MenuBtn.Style01.isClosed .MenuBtn-BarFrame-ThirdBar{
    transform: translateY(0) rotate(-45deg);
  }

  /*メニューの中身*/
  /* アニメーション前のメニューの状態*/
  .Menu-Group{
    pointer-events: none;/*クリックしてもアクションが起こらない*/
    opacity: 0;
    transform-origin: center;
    transform: scale(0.5);
    transition: all 0.3s ease;
  }

  /* アニメーション後のメニューの状態 */
  .Menu-Group.is-active{
    width: 100%;
    pointer-events: auto;/*クリックするとアクションが起こる*/
    opacity: 1;
    transform: scale(1.0);
    background-color: white;
  }

  .Menu-Group{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 154;/*区切り線や梅より重なりを上側に*/
    display: flex;
    flex-wrap: wrap;
  }

  /*塩梅ロゴ*/
  .SM_Top_rogo{
    margin: 0 auto;/*ロゴ中央寄せ*/
  }
  .SM_Top_rogo img{
    width: 180px;
    padding-bottom: 30px;
  }

  /*ロゴ以外の文字部分*/
  .Menu-Group-Item{
    width: 100%;
    flex: auto;
    padding: 4px;
  }
  .Menu-Group-Item-Link{
    padding: 0.5em 0.5em;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.02em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  /**ハンバーガーメニュー開閉ここまで**/



  /***PC向けの区切り線の非表示ここから****/
  .shapedividers_com-3185{
    display: none;
  }
  .shapedividers_com-2190{
    display: none;
  }

  /**スマホ向けのひとつめの区切り線ここから**/
  /*区切り線1スマホ・タブレット版表示*/
  .shapedividers_com-9253{
    display: block;
  }
  .shapedividers_com-9253{
  overflow:hidden;
  position:relative;
  height: 85px;
  }
  .shapedividers_com-9253::before{
  content:'';
  font-family:'shape divider from ShapeDividers.com';
  position: absolute;
  z-index: 3;/*重なりの数値*/
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 83px;
  background-position: 50% 100%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23f8e58c"/></svg>'); 
  }
  /**ひとつめの区切り線ここまで**/

  /**スマホ向けの区切り線2ここから**/
  /*区切り線2スマホ版表示*/
  .shapedividers_com-8653{
    display: block;
  }
  .shapedividers_com-8653{
    overflow:hidden;
    position:relative;
    height:25px;
  }
  .shapedividers_com-8653::before{
    content:'';
    font-family:'shape divider from ShapeDividers.com';
    position: absolute;
    z-index: 3;/*重なりの数値*/
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 50px;
    background-position: 50% 0%;
    background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23f8e58c"/></svg>'); 
  }
  @media (min-width:2100px){
    .shapedividers_com-8653::before{
    background-size: 100% calc(2vw + 50px);
    }
  }
  /**スマホ向けの区切り線2ここまで**/

  /**スマホ向けの区切り線上の装飾(区切り線1)ここから**/
  .SM_line_01{
    position: relative;/*梅を重ねる基準の位置に*/
  }
  .SM_line_01 .ume07{
    position: absolute;
    z-index: 150;/*重なりで前面に*/
    left: 40px;
    top: 12px;
    width: 70px;
    animation-name: ume07; /*アニメーションの任意の名前、@keyframe と同じ名前を入れる*/
    animation-duration: 1.5s; /*何秒かけるか*/
    animation-timing-function: ease; /*アニメーションの進行具合を操作 (ease→初期値：開始時と終了時が緩やかに変化)*/
    animation-iteration-count: infinite; /*アニメーションを実行する回数 (infinite:無制限)*/
  }

  /*梅の揺れる角度指定*/
  @keyframes ume07{
     0%,100%{
      transform: rotate( 15deg );/*ここに開始のCSSを記述*/
      }
    50%{
      transform: rotate( -15deg );/*ここに終了のCSSを記述*/
      }
  }
  /**スマホ向けの区切り線上の装飾(区切り線1)ここまで**/

  /*2つめの記事のかたまり*/
  #Top_02{
    height: 750px;
  }

  #Top_02 section{
    width: 100%;
    height: 400px;
  }

  /*左側に空きを作る*/
  #Top_02 section h2{
    margin-left: 15px;
    padding-top: 40px;
  }

  /*文字の両側に空きを作る*/
  #Top_02 p{
    margin: 10px 15px 15px;
  }

  #Top_02 .Top_02_slide{
    padding: 0;
  }

  /***3つめの記事***/
  #Top_03{
    width: 100%;
    height: 900px;
  /*三角形の背景指定*/
  background: no-repeat left/60% url("../images/background02_Top03(01).png");
  }

  #Top_03 section{
    width: 100%;
  }

  /*作業についての文と写真を縦並びに*/
  #Top_03 .Top_03_container01{
    display: flex;
    flex-direction: column;
  }

  .Top_03_01{
    width: 100%;/*文章の幅*/
    margin-bottom: 30px;
  }

  .Top_03_img01{
    display: none;
  }

  .Top_03_container02_tb{
    display: block;
  }

  .Top_03_container02_tb img{
    width: 100%;/*画像の幅*/
    height: auto;
  }

  /*文字の両側に空きを作る*/
  #Top_03 p{
    margin: 10px 15px 15px;
  }


  /*ギャラリーページへのボタン*/
  #Top_03 nav{
    margin-top: 860px;
  }


  /**4つめの記事のかたまり**/

  #Top_04 .Top_04_wrapper{
    width: 100%;
    height: 1090px;
    margin: 0 auto;
  }

  .access_center iframe{
  width: 100%;
  aspect-ratio: 10/6; /*アスペクト比（縦横比）を指定*/
  }

  /**ツイッター、住所と動画を縦並びに**/
  .Top_04_map_container01{
    display: flex;
    flex-direction: column;
  }

  /*YouTube埋め込み*/
  /* 横幅を指定するための要素 */
  .Top_map-left{
    width: 95%; /* ここに横幅を指定 */
    margin: 0 auto;/*外側余白*/
  }

  .Top_map-left .map_movie iframe{
    width: 100%;
    aspect-ratio: 10/7; /*アスペクト比（縦横比）を指定*/
  }

  .map_movie{
    margin-top: 40px;
  }

  /*中央の案内文*/
  .Top_map-center{
    width: 100%;/*外側の横幅*/
    height: 320px;/*外側の縦幅*/
    margin: 40px 0 20px 0 ;/*外側余白をリセットし、上下外側に余白を*/
  }

  .Top_map-center address{
    width: 90%;/*内側の横幅*/
    margin: 35px 0 35px 0;/*上下外側余白を35pxに*/
    padding: 0 0 0 20px;/*内側余白。テキストを少し中央に寄せる*/
    text-align: left;/*テキストを左揃えに*/
  }

  /*ツイッターについて
  .Top_map-Twitter {
    width: 100%;
    height: 250px;
  }

  .map-Twitter {
    width: 100%;
    height: 250px;
  }*/

  /*****ギャラリーぺージ*****/
  /*要素を中央寄せに*/
  .Production_wrap{
  display: flex;
  flex-direction: row;/*水平方向に配置*/
  flex-wrap: wrap;/*横複数行に配置*/
  justify-content: center;/*中央に寄せて配置*/
  }

  /*ギャラリーのいままで手がけたお仕事～の文章*/
  #order_01 .order_txt{
  text-align: center;
  margin: 25px;
  }

  /**全体のh3設定**/
  #order_page h3{
    width: 100%;
    padding-top: 50px;
  }

  /*お仕事を依頼されたい方は以下を～の部分*/
  .work_guide{
    width: 100%;
    margin: 0 auto;
    font-size: 1em;
    margin-bottom: 35px;
  }

  /*ギャラリーページ区切り線01、02の高さを合わせる*/
  .shapedividers_com-4573{
    height: 80px;/*区切り線の高さ*/
  }
  .shapedividers_com-7404{
    height: 80px;/*区切り線の高さ*/
  }


  /*価格帯の部分の横並び*/
  .work_guide_Flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*上から下へ垂直方向に配置*/
    flex-direction: column;
  }

  .order_02_01 section{
    width: 90%;
    min-height: 0vh;
  }

  #order_02 .order_02_01 section{
    margin: 0 auto;
  }

  #order_02 h3{
    padding-top: 50px;
  }

  /*価格帯の内容部分*/
  #order_02{
    width: 100%;
  }

  /***価格帯（目安）消費税別***/
  #order_02 .work_guide_Flex{
    width: 95%;
    height: auto;
    margin: 0 auto;
  }

  /*イラスト作成～*/
  .order_02_inner{
    width: 95%;
    margin: 0 auto;
  }

  /*軽作業部分（最後）だけ、下の余白を無し(梅の花との余白を詰める)*/
  #order_02 dd:last-child{
    margin-bottom: 0px;
  }
  /*下の余白を無し(梅の花との余白を詰める)*/
  #order_02 dl{
    margin-bottom: 0px;
  }


  /****注意点について****/
  #order_04{
    width: 95%;
    /*背景の三角指定*/
    background: no-repeat url("../images/background04-01.png");
    /*囲み線*/
    margin: 2em auto;
    padding: 0;
    position: relative;
    border: 1px solid #ccc;/*線を薄い緑色に*/
  }

  /****注意点について****/
  /**全体のh3設定**/
  #order_page h3{
    width: 100%;
  }

  #order_04 p{
  width: 90%;
  margin: 0 auto;
  padding-bottom: 29px;
  }


  /*******ページ遷移アニメーションここから*******/
  /*****全画面を覆う背景*****/
  .mask{
    position: fixed;/*固定表示*/
    z-index: 999;/*最前面へ*/
    top: 0;
    left: 0;
    width: 100vw;/*画面幅*/
    height: 105vh;/*画面の高さ*/
    background: repeat url("../images/load-pattern.jpg");/*好きな色（パターン*/
    animation: fadeOut 0.2s forwards;/*フェードアウト*/
    animation-delay: 1.2s;/*円のアニメーション＋遅延時間*/
  }
  /*フェードアウトアニメーション*/
  @keyframes fadeOut{
    0% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      visibility: hidden;
    }
  }

  /***** 広がる円 *****/
  .circle{
    position: absolute;/*固定表示*/
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;/*中央配置*/
    width: 0;
    height: 0;
    background: repeat url("../images/tesukiwashi-pattern.jpg");/*ページ全体の背景色*/
    animation: circle-open 1s linear forwards;
  }

  /*円が拡大するアニメーション*/
  @keyframes circle-open{
    0%{
      width: 0;
      height: 0;
      border-radius: 50%;
    }
    20%,
    80%{
      /*少し拡大して止まる*/
      width: 100px;
      height: 100px;
      border-radius: 50%;
    }
    99%{
      /*ぎりぎりまで正円*/
      width: 99vw;
      height: 99vw;
      border-radius: 50%;
    }
    100%{
      /*全画面*/
      width: 100vw;
      height: 100vh;
      border-radius: 0;
    }
  }
}
/*******ページ遷移アニメーションここまで*******/

/***********************
どうしてもうまくいかない部分のウインドウサイズ
**************************/

/*959px～998pxで、全体の右側にすきまが開いているのを直す*/
@media screen and (min-width:959px) and (max-width:998px){
  main{
    width: 100%;
  }

  #Top_02 section{
    /*文章の左右に少し空きを*/
   width: 95%;
    margin: 0 auto;
  }
  #Top_03 section{
    width: 100%;
  }
  .Top_03_01 {
    /*文章の左右に少し空きを*/
    width: 480px;
    margin-left: 20px;
  }
  #Top_04 .Top_04_wrapper{
    width: 100%;
  }

  /**ギャラリーぺージ**/
  #order_page{
    width: 100%;
  }

  .work_guide{
    width: 100%;
  }

  #order_page #order_04{
    width: 90%;
    padding: 0;
  }
}

/*小さいPC向けのウインドウサイズ（960PX～1233）の場合の指定*/
@media screen and (min-width:960px) and (max-width:1233px){
  /*グローバルメニューが中心寄せにならず、崩れていたため*/
  .header_container01{
    display: flex;
    width: 100%;
    margin: 0 auto;
  }

  main{
    width: 100%;
  }

  /**ギャラリーぺージ**/
  #order_page{
    width: 100%;
  }

  .work_guide{
    width: 100%;
  }

  #order_page #order_04{
    width: 90%;
    padding: 0;
  }

  #order_04 p{
    width: 90%;
  }

  /*ギャラリーページ区切り線01、02の高さを合わせる*/
  .shapedividers_com-4573{
    height: 80px;/*区切り線の高さ*/
  }
  .shapedividers_com-7404{
    height: 80px;/*区切り線の高さ*/
  }

}

/*タブレット向けのウインドウサイズ（745PX～960）の梅の花の指定を直す*/
@media screen and (min-width:745px) and ( max-width:960px){
  /*価格帯部分の縦幅*/
  #order_02{
    height: 850px;
  }
}

/*小さいタブレット向けのウインドウサイズ（483PX～743）の場合の指定*/
@media screen and (min-width:483px) and ( max-width:744px){
  main{
    width: 100%;
  }

  /**アクセス・お問合せ部分、youtubeが文字にかぶらないように**/
  #Top_04 .Top_04_wrapper{
    height: 1650px;
  }
  #Top_03 {
    height: 1300px;
  }

  #Top_03 .Top_03_img01{
    margin-top: 25px;
  }

  /*ギャラリーページへのボタン*/
  #Top_03 nav{
    margin-top: 670px;
  }

  .Top_03_container01 .ume06{
    position: absolute;
    z-index: 150;
    width: 100px;
    right: 50px;
    bottom: -30px;
  }

  /*YouTube埋め込み*/
  /* 横幅を指定するための要素*/
  .Top_map-left{
    width: 100%; /* ここに横幅を指定 */
  }
  .Top_map-left .map_movie iframe{
    width: 80%;
    aspect-ratio: 10/6; /*アスペクト比（縦横比）を指定*/
  }
  .map_movie{
    margin: 40px 0;/*上下外側に余白を*/
    text-align: center;/*iframeの中央寄せ*/
  }

  /*中央の案内文*/
  .Top_map-center{
    width: 80%;/*外側の横幅*/
    margin: 0 auto;/*中央寄せ*/
  }
  .Top_map-center address{
    width: 80%;/*内側の横幅*/
    margin: 35px 0;/*上下外側余白を35pxに*/
    padding: 0 0 0 20px;/*内側余白。テキストを少し中央に寄せる*/
    text-align: left;/*テキストを左揃えに*/
  }

  /*ツイッターについて
  .Top_map-Twitter{
    width: 100%;
    height: 250px;*/
  /*  margin-top: 40px;上外側余白*/
 /* }
  .map-Twitter{
    width: 80%;
    height: 250px;
    margin: 0 auto;中央寄せ
  }*/


  /*価格帯部分の縦幅*/
  #order_02{
    height: 850px;
  }

  #order_04{
    width: 90%;
    padding: 0;
  }

  /*梅の花の画像*/
  #order_02 .work_guide_Flex img{
    margin: 0 0 0 auto;/*梅の画像を右寄せに*/
    width: 70%;
    height: auto;
    z-index: 10;
  }

  /*ご依頼、ご質問部分の崩れを直す*/
  #order_page .InquiryEstimate h3{
    margin: 0 25px 32px 0px;
    padding-top: 10px;
  }

}

/*とても小さいスマートフォンの大きさ*/
@media screen and (min-width:280px) and ( max-width:482px){
  main{
    width: 100%;
  }

  /*わたしたちについての部分、文字が画像にかぶらないように*/
  #Top_02 section{
    height: 490px;
  }

  /*区切り線が画像にかぶらないように*/
  #Top_02{
    height: 1000px;
  }
  #Top_02 section{
    margin-bottom: 80px;
  }
  #Top_03{
    width: 100%;
    height: 1240px;
    background: no-repeat left/60% url("../images/background02_Top03(01).png");
  }

  /*ギャラリーページへのボタン*/
  #Top_03 nav{
    margin-top: 600px;
  }

  /*住所と動画部分の背景*/
  #Top_04 .Top_04_wrapper{
    height: 1200px;
  }

  /*住所の背景縦幅*/
  .Top_map-center{
    height: 370px;
  }

  /*フローチャートを中央寄せにするためにリセット*/
  .tab-002 > label{
    min-width: initial;
  }

  /*価格帯部分の縦幅*/
  #order_02{
    height: 850px;
  }

  /*梅の花の画像*/
  #order_02 .work_guide_Flex img{
    margin: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 10;
  }

  /*ギャラリーページ区切り線01、02の高さを合わせる*/
  .shapedividers_com-4573{
    height: 80px;/*区切り線の高さ*/
  }
  .shapedividers_com-7404{
    height: 80px;/*区切り線の高さ*/
  }

  #order_04{
    width: 90%;
    padding: 0;
  }

  .Top_03_container01 .ume06{
    position: absolute;
    z-index: 150;
    width: 100px;
    right: 50px;
    bottom: -50px;
  }

  /*ご依頼、ご質問部分の崩れを直す*/
  #order_page .InquiryEstimate h3{
    margin: 0 25px 32px 0px;
    padding-top: 10px;
  }
}

/*とてもとても小さいスマートフォンの大きさ*/
@media screen and (min-width:280px) and ( max-width:321px){
  body{
    width: 100%;
  }

  #Top_02 section{
    margin-bottom: 130px;
  }

  #order_page{
    width: 100%;
  }
  main{
    width: 100%;
  }

  /*梅の花の画像*/
  #order_02 .work_guide_Flex img{
    margin: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 10;
  }

  #order_04{
    width: 90%;
    padding: 0;
  }

  /*ご依頼、ご質問部分の崩れを直す*/
  #order_page .InquiryEstimate h3{
    margin: 0;
  }

  footer{
    text-align: initial;
  }

  footer p{
    text-align: center;
  }

  .tab-002 > div {
    width: 100%;
    padding: 0;
  }
}

/*とても小さいスマートフォンの大きさ(マーカーアニメーションを消す)*/
@media screen and (min-width:280px) and ( max-width:351px){

  .Top_map-center{
    width: 98%;
    height: 400px;
  }

  /*マーカーアニメーションを消す*/
  .anim-underline{
    position: static;
    line-height: 1.1em;
  }
  .anim-underline::before{
    content: none;
    position: static;
    background: none;
    animation: none;
    z-index: -1;
  }
  /*マーカーアニメの代わりに囲い枠を*/
  .work_guide{
    width: 95%;
    line-height: 20px;
    padding: 0.5em 0em;
    font-weight: bold;
    color: #f2b5b3;/*文字色*/
    background: #FEEEED;/*背景色を淡い桜色に*/
    border: solid 3px #f2b5b3;/*線色を淡い梅の色に*/
    border-radius: 10px;/*角の丸み*/
  }
  .work_guide span{
    margin: 0;
    padding: 0;
  }

  /*価格帯部分の縦幅*/
  #order_02{
    height: 850px;
  }

  /*ご依頼、ご質問部分の崩れを直す*/
  #order_page .InquiryEstimate h3{
    margin: 0 25px 32px 0px;
    padding-top: 10px;
  }

}