html {
  scroll-padding-top: 115px;
}

body {
    margin: var(--top-spacing) auto;
    padding: 0 0px;
   
}
#header {
   margin-top: 0;
   padding: 0; 
}


/*-------音楽再生
.container-wrap audio {
  margin-top: 0;
  z-index: 1000;
    
}

----------*/




/*-------音楽再生----------*/

/*
Layey
*/
.layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8); /* 半透明の背景 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999; /* レイヤーを最前面に */
}

.close-btn {
  display: inline-block;
  height: 4rem;
  background-color: #673ab7;
  padding: 15px 32px;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  color: white;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */



/*-------音楽再生ボタン
.sectionsong {
    margin-top: -0px;
    margin-bottom: 50px;
    margin-left: 20px;
    z-index: 1000;
}
----------*/
/* スマホサイズ＆タブレットサイズのメディアクエリ 
@media only screen and (max-width: 960px){
.sectionsong {
    margin-top: -200px;
    text-align: center;
}
}
*/

/*-------FONT

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


.hina-mincho-regular {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

Noto Sans JP: CSS class for a variable style

// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.biz-udpmincho-regular {
  font-family: "BIZ UDPMincho", serif;
  font-weight: 400;
  font-style: normal;
}

.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

----------*/


/* devicePixelRatio=1（iPhone3～3GS、低解像度Android端末）とdevicePixelRatio未対応ブラウザ */
.className {
width: 100px;
height: 100px;
background: url(image@1x.png); /* 等倍サイズの画像 */
}
/* devicePixelRatio=1.5 （Android端末に多い）*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
.className {
background: url(image@1.5x.png); /* 1.5倍サイズの画像 */
-webkit-background-size: 100px 100px; /* WebKit */
background-size: 100px 100px; /* WebKit以外 */
}
}
/* devicePixelRatio=2 （iPhone4～4S、高解像度Android端末）*/
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {
.className {
background: url(image@2x.png); /* 2倍サイズの画像 */
-webkit-background-size: 100px 100px; /* WebKit */
background-size: 100px 100px; /* WebKit以外 */
}
}




.wrap {
    overflow: hidden;
}



/* ロゴ用（画像など自由に置き換えてください） */
.logo img {
  margin-left: 10px;
  margin-top: 5px;
  text-align: center;
  padding: 0px;
  font-size: 24px;
  width: 140px;
  background:;
  z-index: 1000;  
}

.main-menu {
  opacity: 1;
  position: fixed; /* ヘッダーを固定する */
  top: 0; /* 画面の上部に固定 */
  width: 100%; /* 画面の幅いっぱいに広げる */
  height: 80px;
    background-color:  #F5F5F7; /* 背景色を設定 */
  color: white; /* テキストの色を設定 */
  padding: 0px; /* 内側の余白を設定 */
  z-index: 995; /* ヘッダーを他の要素の上に表示 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* 下方向に影を追加 */  
}

.pc-menu {
  width: 100%;
}
.pc-menu > ul {
  display: flex;
  list-style: none;
}
.pc-menu > ul > li {
  margin-top: 10px;
    width: 25%;
  text-align: center;
  font-size: 16px; 
  font-weight: 400;
  font-family: "Noto Sans JP", serif; 
 
}
.pc-menu > ul > li > a {
    display: block;
    line-height: 60px;
    text-decoration: none;
    color: #013224;
    padding: 0px 0; /* 20pxを0に変更 */ 

}

/* PC用メニューリンク */
.pc-menu > ul > li > a:hover {
  color: #e0b254;
  transition: .5s;
background-color: #013224;    
 }




/* PC用メニュー領域 */
.pc-menu {
  /* ロゴ以外は全てメニュー領域にする */
  width: 100%;
}
/* PC用メニューリスト(ulタグで作成) */
.pc-menu > ul {
  /* メニュー項目を横並びにするのでflex */
  display: flex;
  /* リスト項目の先頭に付く・を消す */
  list-style: none;
}
/* PC用メニュー項目 */
.pc-menu > ul > li {
  /* 文字は水平方方向中央寄せ */
  text-align: center;
  /* 文字サイズ */
  font-size 16px;
  /* この例では3個なので100%/3の33% */
  font-weight: 400;  
  width: 33%;
  color:#646464;  
}
/* PC用メニューリンク */
.pc-menu > ul > li > a {
  display: block;
  padding: 0px 0; /* 20pxを0に変更 */ 
  text-decoration: none;
  color: #013224;
}



.header {
 
  position: sticky; /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
  
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  color: #013224; 
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 3px;
  background-color: #013224;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 0.9;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  width: 80%;
  height: 100%;
  background-color: white;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}
.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px lightgray;
  font-size: 16px; 
  font-weight: 500;
  font-family: "Noto Sans JP", serif; 
  color: #013224; /* ハンバーガーメニューリストの文字色 */  
}
.drawer__nav__inner li a:hover {
 background: #8fbc8f;
    color: #ffffff;
}


/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}



/* 画面サイズが1280px以上の時はスマホ用メニューは非表示 */
@media screen and (min-width: 1280px) {
.header__inner {
    display: none;
}
}


/* 画面サイズが1279px以下の時はPC用メニューは非表示 */
@media screen and (max-width: 1279px) {
.pc-menu {
    display: none;
}
.logo img {
  margin-left: -5px;
  margin-top: -2px;
}    
}















/* kv ---------　トップ文字　---------　*/
.boxes_inner {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute; /*文字にabsolute*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
}

.boxes_inner .main-copy{
  color: #fff;
  z-index: 100;
  /* 縦書きモード */
  writing-mode: vertical-rl;
  /* 高さ調節 */
  height: 800px;
  /* 右寄せ */
  margin-left: auto;
  /* 行間を調整 */
  line-height: 80px;
  /* 文字間を調整 */
  letter-spacing: 2px;
  color: #ffffff;
  margin-top: 200px;
  position: relative;
  font-family: "Hina Mincho", serif;
  margin-right:auto;
  margin-left: auto;    
  text-align:left; 
  font-size: 45px;
  text-shadow: 2px 4px 5px #4c4850;

  }

.boxes_inner .sub-copy{
  color: #fff;
  font-size: 20px;
  text-align: center;
  z-index: 100;
}

/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){
.boxes_inner .main-copy {
   font-size: 25px;
    margin-top: 350px;
    line-height: 40px;
}
}



/* -------------　video再生 -------------　*/

/* wrap */

.container-wrap {
    margin-bottom: 0px;
}

.movie_wrap{
  position:relative;
}
.btn01 {
  position:absolute;
  left:0;
  bottom:10px;
  z-index: 10;
  
}
.btn01 .video_button{
  margin-left: 10px;
  background-color:#fff;
  color:#013224;
  cursor:pointer;
  padding:10px;
  font-size: 14px;
  font-family: "Noto Sans JP", serif;  
  font-weight: 500;
  border-radius: 10px;
 transition: all .2s;
  border: 3px solid #013224;  
 }   
.btn01:hover{
  opacity: 0.6;
}

.video01 {
    margin-bottom: 50px;
    
    
}
.video01 .video-box overlay {
  position: relative;
  z-index: -2; 

}


.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  z-index: -2; 
    
}
.video_con {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -2; 
}

/* overlay */

.video01 .overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  z-index: -1; 
}



/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px) {


.video-box {
      height: 75vh;
      margin-bottom: 0px;
          
      } 
.video_con {
  width: auto;
  height: 450px;
}
}


.section22 {
  margin-top: -40px;
  margin-left: 20px;
  font-size: 14px;
  font-family: "Noto Sans JP", serif;  
  font-weight: 500;
  color:#013224;  
}












/* 共通文字画像 */


.section01 {
    background-color: #ffffff;
    color: #ffffff;
    padding: 3px 3% 3px 3%; 
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    background: url(../assets/images/3883663_s-640x415.jpg);
    box-shadow: 2px 2px 4px gray;
    max-width: 1280px;
    z-index: 10;
}  

.section01 h1 /*----ジャンプ用-----*/{
    opacity:0;
    color: #ffffff;
    font-size: 2.5rem;
    margin-top: -100px;
    margin-bottom: 100px;
}

.section01 h2 {
    font-size: 18px;
    z-index: 100;
}

.section01 .headline {
        margin-top: 10px;
        color: #013224;
        position: relative;
        overflow: hidden;
        display: inline-block;
        font-family: "Hina Mincho", serif;
    　　 text-align: left;
        z-index: 10;
}

.section01 .slideX {
    margin-left: 0em;
    color: #013224;
    font-size: 16px;
    line-height: 1.8em;
    text-align: justify;
    font-family: "BIZ UDPMincho", serif;
    margin-bottom: -20px;
    margin-top: 10px;
    z-index: 10;
}
.section01 .label {
    font-size: 50px;
    z-index: 10;
 
}

.section01 .rect {
   　　　margin-top: 50pcx;
        position: absolute;
   　　　top: 20px;
        left:30%;
        display: block;
        background: url(../assets/images/3883663_s-640x415.jpg);
        width: 98%;
        height: 100%;
        transform: translateX(-101%); 
        z-index: 10;
}

body::-webkit-scrollbar {
        width: 30px; /* 垂直方向のスクロールバーの幅 */
        z-index: 10;
      }
body::-webkit-scrollbar-thumb {
        background-color: #999;
        border-radius: 50px;
        z-index: 10;
      }
body::-webkit-scrollbar-track {
    background-color: #444;
    z-index: 10;
      }

.section01 .sample-img {
    margin-left: 0em;
    margin-top: 30px;
    margin-bottom: 30px;
 　　position: absolute;
    top: 50%;
    z-index: 10;
}
.section01 img {
    width: 100%;
}

.section01 .buttonGroup {
    margin-top: 70px;
    margin-bottom: 50px;
 }

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;

}   
}


.section01 .zoom-box {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: auto;
  z-index: 10;
    
}
.section01 .c-bnr.zoom {
  display: block;
  transition-duration: 5s;
  z-index: 10;
}

.section01 .c-bnr.zoom:hover {
  transform: scale(1.2);
  z-index: 10;
}



/* 画像の親要素のスタイル */
.section01 .box09 {
  cursor: pointer;
  position: relative;
 
}
/* 画像のスタイル */
.section01 .box09 img {
  margin-top:-550px;
  height: auto;
  left: 0;
  position: absolute;
  object-fit:cover;
  margin-bottom: -550px;
}







/* 2枚目の画像は最初透明 */
.section01 .box09 img:last-of-type {
  opacity: 0;
  transition: opacity 2s;
  object-fit:cover;
}
/* hoverすると2枚目の画像が透明じゃなくなる */
.section01 .box09:hover img {
   opacity: 1;
   object-fit:cover;
}

.section01 .box09 {
    margin-top: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 600px;
}











.section01 button {
    width: 180px;
    margin-top: 20px;
    display: inline-block;   /* インラインブロック要素にする */
    background-color:  #;    /* 背景色指定 */
    mix-blend-mode: multiply;  /* 乗算指定 */
    padding:  20px;             /* 余白指定 */
    height: 70px;   
    text-align: center;
}



/* リンクのデフォルトスタイルを無効化し、下線を追加する */
.section01 .text02 button {
  display: inline-block; /* これがないとリンク範囲が全幅になる */
  position: relative; /* 相対位置指定 */
  text-decoration: none; /* デフォルトのテキストの下線を消す */
}
/* 下線のスタイル */
.section01 .text02 button::after {
  background-color: #e0b254; /* 下線の色 */
  bottom: -0px; /* 要素の下端からの距離 */
  content: ""; /* 要素に内容を追加 */
  height: 3px; /* 下線の高さ */
  left: 0px; /* 要素の左端からの距離 */
  position: absolute; /* 絶対位置指定 */
  transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: left top; /* 変形の原点を左上に指定 */
  transition: transform .5s; /* 変形をアニメーション化 */
  width: 100%; /* 要素の幅 */
}
/* リンクにホバーした際の下線の表示 */
.section01 .text02 button:hover::after {
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}


.section01 .text02 {
    font-family: "Zen Kurenaido", sans-serif;
    font-size:20px;
    line-height: 1.2em;
    color: #013224;
    margin-top: 0px;
    text-align: center;
    
 }

.section01 .text02 span{
    font-size:10px;
    line-height: 1.2em;
    z-index: 1200;
    color: #013224;
    text-align: center;
}

.section01 .text03 {
    font-size:14px;
    margin-top: 20px;
    color: #013224;
    text-align: center;
    line-height: 1.8em;
    font-family: "Noto Sans JP", serif;;
    font-weight: 400;
    margin-bottom: 20px;
    
}

.section01 .text02 {
    margin-top: 50px;
}







/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

.section01  .zoom-box {
    width: 100%;
} 
.section01 {
    width: 95%;
}
.section01 .headline {
    display: inline-block;

}
.section01 .label {
    font-size: 30px;
}
    
.section01 .slideX {
    font-size: 14px;
    line-height: 1.8em;
}

.section01 button {
  width: 145px;
  text-align: center;
  margin-left: 0px;
   
    
    
} 
.section01 .modal-toggle btn-example {
    margin-left: auto;
    margin-right: auto;  
    text-align: center;
    
} 
.section01 .box09 {
    height: auto;
    margin-bottom: -220px;
   
}
.section01 .text03 {
    text-align: justify;

}
    
.section01 .box09 img {
  margin-top:-250px;
  height: auto;
  left: 0;
  
 
    
}

.section01 .box09 {
   
}    
}















.container {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  max-width: 300px;
  position: relative;
  width: 100%;
}
.slick-img img {
  height: auto;
  width: 100%;
}
.slick-prev {
  left: 0;
  z-index: 1;
}
.slick-next {
  right: 0;
}
.container .slick-num {
  background-color: rgba(255,255,255,.5);
  bottom: 0;
  font-size: 18px;
  left: 0;
  line-height: 2;
  position: absolute;
  right: 0;
  text-align: center;
}













/* ---------スクロール促す-------------- */


.video01 .scroll_down {
    display: block;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 1%;
    position: absolute;
}

.video01 .scroll_down p {
    letter-spacing: .1vw;
}

.video01 .scroll_down a{
    display: inline-block;
    line-height: 18px;
    font-size: 12px;
    font-weight: normal;
    color: #ffffff;
    letter-spacing: 2px;
    text-decoration: none;
}

.video01 .scroll_down .mouse {
    position: relative;
    display: block;
    width: 35px;
    height: 55px;
    margin: 0 auto 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #ffffff;
    border-radius: 23px;
}

.video01 .scroll_down .mouse > * {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: #ffffff;
    border-radius: 50%;
    animation: ani-mouse 2.5s linear infinite;
}

@keyframes ani-mouse {
	0% {
	opacity: 0;
	top: 70%;
	}
	40% {
	opacity: 0;
	top: 30%;
	}
	70% {
	opacity: 1;
	top: 30%;
	}
	100% {
	opacity: 1;
	top: 70%;
	}
}



/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){
.video01 .scroll_down {
    margin-left: 80%;
    bottom: 26%;

}
.video01 .scroll_down .mouse {
    position: relative;
    display: block;
    width: 25px;
    height: 45px;
}
.video01 .scroll_down a{
    display: inline-block;
    line-height: 14px;
    font-size: 10px;
}
}






/* ---------------ボタン --------------- */

.buttonGroup {
   text-align:center;
   margin-bottom: 50px;
 }


.buttonGroup a {
    background: #eee;
    position: relative;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 60px;
    color: #013224;
    transition: 0.3s ease-in-out;
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    z-index: 100;
    
}
.buttonGroup a:hover {
    background: #8fbc8f;
    
    
    
}
.buttonGroup a:before, .buttonGroup a:after {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.3s;
  right: 0.6rem;
  top: 50%;
    
}
.buttonGroup a:before {
  width: 1.4rem;
  height: 2px;
  background: #013224;
  transform: translateY(-50%);
 
}
.buttonGroup a:after {
  opacity: 0;
  width: 0;
  height: 0;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
  
}
.buttonGroup a:hover:before {
  width: 1.5rem;
    
}
.buttonGroup a:hover:after {
  opacity: 1;
  width: 8px;
  height: 8px;
 }

/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

.buttonGroup {
   display: block;
}
}


/* -----------------共通文字画像---------------0*/





.section04 {
    background-color: #ffffff;
    color: #ffffff;
    padding: 3px 3% 3px 3%; 
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    background-color: #ffffff;
    box-shadow: 2px 2px 4px gray;
    max-width: 1280px;
    background: url(../assets/images/緑和紙.png);
    height: 950px;
}  
.section04 h2 {
    font-size: 18px;
}

.section04 h3 /*------ジャンプ用---*/ {
    opacity:0;
    color: #ffffff;
    font-size: 2.5rem;
    margin-top: -100px;
    margin-bottom: 100px;
}


.section04 .label {
    font-size: 50px;
}

.section04 .slideX {
    margin-top: 10px;
    margin-left: 0em;
    color: #013224;
    font-size: 16px;
    line-height: 1.8em;
    text-align: justify;
    font-family: "BIZ UDPMincho", serif;
    margin-bottom: 0px;
    line-break: strict;
}
.section04 .headline {
        margin-top: 10px;
        color: #013224;
        position: relative;
        overflow: hidden;
        display: inline-block;
        font-family: "Hina Mincho", serif;
    　　 text-align: left;
}


.section04 .text02 {
    font-family: "Zen Kurenaido", sans-serif;
    font-size:20px;
    line-height: 1.2em;
    color: #013224;
    margin-top: 0px;
    text-align: center;
    
 }

.section04 .text02 span{
    font-size:10px;
    line-height: 1.2em;
    z-index: 1200;
    color: #013224;
    text-align: center;
}





.section04 .text03 {
    font-size:14px;
    margin-top: 20px;
    color: #013224;
    text-align: center;
    line-height: 1.8em;
    font-family: "Noto Sans JP", serif;;
    font-weight: 400;
    margin-bottom: 20px;
    
}

.section04 button {
    width: 180px;
    margin-top: 20px;
    display: inline-block;   /* インラインブロック要素にする */
    background-color:  #;    /* 背景色指定 */
    mix-blend-mode: multiply;  /* 乗算指定 */
    padding:  20px;             /* 余白指定 */
    height: 70px;   
    text-align: center;
}



/* リンクのデフォルトスタイルを無効化し、下線を追加する */
.section04 .text02 button {
  display: inline-block; /* これがないとリンク範囲が全幅になる */
  position: relative; /* 相対位置指定 */
  text-decoration: none; /* デフォルトのテキストの下線を消す */
}
/* 下線のスタイル */
.section04 .text02 button::after {
  background-color: #e0b254; /* 下線の色 */
  bottom: -0px; /* 要素の下端からの距離 */
  content: ""; /* 要素に内容を追加 */
  height: 3px; /* 下線の高さ */
  left: 0px; /* 要素の左端からの距離 */
  position: absolute; /* 絶対位置指定 */
  transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: left top; /* 変形の原点を左上に指定 */
  transition: transform .5s; /* 変形をアニメーション化 */
  width: 100%; /* 要素の幅 */
}
/* リンクにホバーした際の下線の表示 */
.section04 .text02 button:hover::after {
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}


/* 画像の親要素のスタイル */
.section04 .box09 {
  cursor: pointer;
  position: relative;
 margin-bottom: 600px;
}
/* 画像のスタイル */
.section04 .box09 img {
  margin-top: -490px;
  height: auto;
  left: 0;
  position: absolute;
  object-fit:cover;
  margin-bottom: -0px;
    
}




/* 2枚目の画像は最初透明 */
.section04 .box09 img:last-of-type {
  opacity: 0;
  transition: opacity 2s;
  object-fit:cover;
}
/* hoverすると2枚目の画像が透明じゃなくなる */
.section04 .box09:hover img {
   opacity: 1;
   object-fit:cover;
}

.section04 .box09 {
    margin-top: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 600px;
}




/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){
    
.section04 {
    width: 95%;
    display: block;
    height: 650px;
}
.section04 .headline {
    display: inline-block;
}
.section04 .label {
    font-size: 30px;
}
    
.section04 .slideX {
    font-size: 14px;
    line-height: 1.8em;
}
    


.section04 button {
  width: 145px;
  text-align: center;
  margin-left: 0px;
   
    
    
} 
.section04 .modal-toggle btn-example {
    margin-left: auto;
    margin-right: auto;  
    text-align: center;
    
} 
.section04 .box09 {
    height: auto;
    margin-bottom: -220px;
   
}
.section04 .text03 {
    text-align: justify;

}
}














/* 共通文字画像 */


.section06 {
    background-color: #ffffff;
    color: #ffffff;
    padding: 3px 3% 3px 3%; 
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    background: url(../assets/images/緑和紙.png);
    box-shadow: 2px 2px 4px gray;
    max-width: 1280px;
    z-index: 10;
}  



.section06 h2 {
    font-size: 18px;
    z-index: 100;
}

.section06 .headline {
        margin-top: 10px;
        color: #013224;
        position: relative;
        overflow: hidden;
        display: inline-block;
        font-family: "Hina Mincho", serif;
    　　 text-align: left;
        z-index: 10;
}

.section06 .slideX {
    margin-left: 0em;
    color: #013224;
    font-size: 16px;
    line-height: 1.8em;
    text-align: justify;
    font-family: "BIZ UDPMincho", serif;
    margin-bottom: -20px;
    margin-top: 10px;
    z-index: 10;
}

.section06 .slideX span {
    font-size: 14px;
    line-height: 1em;
    text-align: justify;
    font-family: "Noto Sans JP", serif;
}



.section06 .label {
    font-size: 50px;
    z-index: 10;
 
}

.section06 .rect {
   　　　margin-top: 50pcx;
        position: absolute;
   　　　top: 20px;
        left:30%;
        display: block;
        
        width: 98%;
        height: 100%;
        transform: translateX(-101%); 
        z-index: 10;
}

body::-webkit-scrollbar {
        width: 30px; /* 垂直方向のスクロールバーの幅 */
        z-index: 10;
      }
body::-webkit-scrollbar-thumb {
        background-color: #999;
        border-radius: 50px;
        z-index: 10;
      }
body::-webkit-scrollbar-track {
    background-color: #444;
    z-index: 10;
      }

.section06 .sample-img {
    margin-left: 0em;
    margin-top: 30px;
    margin-bottom: 30px;
 　　position: absolute;
    top: 50%;
    z-index: 10;
    
    
    
}


.section06 button {
    width: 180px;
    margin-top: 20px;
    display: inline-block;   /* インラインブロック要素にする */
    background-color:  #;    /* 背景色指定 */
    mix-blend-mode: multiply;  /* 乗算指定 */
    padding:  20px;             /* 余白指定 */
    height: 70px;   
    text-align: center;
}





/* リンクのデフォルトスタイルを無効化し、下線を追加する */
.section06 .text02 button {
  display: inline-block; /* これがないとリンク範囲が全幅になる */
  position: relative; /* 相対位置指定 */
  text-decoration: none; /* デフォルトのテキストの下線を消す */
}
/* 下線のスタイル */
.section06 .text02 button::after {
  background-color: #e0b254; /* 下線の色 */
  bottom: -0px; /* 要素の下端からの距離 */
  content: ""; /* 要素に内容を追加 */
  height: 3px; /* 下線の高さ */
  left: 0px; /* 要素の左端からの距離 */
  position: absolute; /* 絶対位置指定 */
  transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: left top; /* 変形の原点を左上に指定 */
  transition: transform .5s; /* 変形をアニメーション化 */
  width: 100%; /* 要素の幅 */
}
/* リンクにホバーした際の下線の表示 */
.section06 .text02 button:hover::after {
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}


.section06 .text02 {
    font-family: "Zen Kurenaido", sans-serif;
    font-size:20px;
    line-height: 1.2em;
    color: #013224;
    margin-top: 0px;
    text-align: center;
    
 }

.section06 .text02 span{
    font-size:10px;
    line-height: 1.2em;
    z-index: 1200;
    color: #013224;
    text-align: center;
    margin-bottom: -50px;
}

.section06 .text03 {
    font-size:14px;
    margin-top: 20px;
    color: #013224;
    text-align: center;
    line-height: 1.6em;
    font-family: "Noto Sans JP", serif;;
    font-weight: 400;
    margin-bottom: 20px;
}
.section06 .text04{
    font-size:14px;
    line-height: 1.6em;
    z-index: 1200;
    color: #013224;
   font-family: "Noto Sans JP", serif;;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}




.section06 .buttonGroup {
    margin-top: 50px;
}



/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

.section06  .zoom-box {
    width: 100%;
} 
.section06 {
    width: 95%;
}
.section06 .headline {
    display: inline-block;

}
.section06 .label {
    font-size: 30px;
}
    
.section06 .slideX {
    font-size: 14px;
    line-height: 1.8em;
}

.section06 button {
  width: 145px;
  text-align: center;
  margin-left: 0px;
   
    
    
} 
.section06 .modal-toggle btn-example {
    margin-left: auto;
    margin-right: auto;  
    text-align: center;
    
} 
.section06 .box09 {
    height: auto;
    margin-bottom: -220px;
   
}
.section06 .text03 {
   text-align: justify;
    font-size:12px;
}
 
.section06 .text04 {
   text-align: justify;
    font-size:12px;
}
    
.section06 .box09 img {
  margin-top:-250px;
  height: auto;
  left: 0;
  
 
    
}

.section06 .box09 {
   
}    
}








/*-----section04ジョブコーチ飛び出しコメント--------------*/

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.section_modal .modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_modal .modal-close-btn:hover {
  background: #ddd;
}

.section_modal .modal-content h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #013224;
  font-size: 1.2rem;
}



.section_modal {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.section_modal .modal {
 display: none;
  position: fixed;
  z-index: 8887;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}
.section_modal .modal-container .img {
    background: #f1f1f1;
    margin-bottom: 15px;
    width: 100%;
}
.section_modal .modal-container p {
    margin-bottom: 10px;
    text-align: justify;
    font-family: "Noto Sans JP", sans-serif;
 　　font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #013224;
    z-index: 8888;
}
.section_modal .modal-container p:last-child {
    margin-bottom: 0;
   
}
.section_modal .modal-content {
    background: #FFF;
    overflow-y: auto;
    padding: 20px 25px;
    width: 90%;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height:auto;
    animation: show 0.6s linear 0s;
    filter: drop-shadow(0px 2px 6px #777);
    font-size: 14px;
    z-index: 8888;
}
.section_modal .modal-top {
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 5px;
}
.section_modal .modal-close {
    color: #013224;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    padding: 0 8px;
}

.section_modal .buttonGroup {
    margin-top: 5px;
    margin-bottom: -5px;
}

.section_modal .modal-close:hover, .modal-close:focus {
  text-decoration: none;
  cursor: pointer;
  color: azure;
}
.modal-title {
  color: #FFF;
}
@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
}
}


/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){
.section_modal .modal-content {
    　font-size: 12px;
}
}









/*縦書き文字　縦書き文字　縦書き文字　縦書き文字　縦書き文字*/
.section5 {
    background-image:url(../assets/images/555559.png);
    z-index: -5;
    width: 90%;
    margin-left: auto;  
    margin-right: auto;
    text-align: center; 
    
    
}
.section5 .text01 {

  /* 縦書きモード */
  writing-mode: vertical-rl;
  /* 高さ調節 */
  height: 650px;
  /* 右寄せ */
  margin-left: auto;
  /* 行間を調整 */
  line-height: 2em;
  /* 文字間を調整 */
   letter-spacing: 2px;
    color: #013224;
    font-size: 25px;
    margin-top: 60px;
    position: relative;
    font-family: "Hina Mincho", serif;
    margin-right:auto;
    text-align:left;  
    text-shadow: 2px 2px 5px #999991;
}

.section06 img {
    width: 100%;
}
  
}
.boxes{
 grid-template-columns: repeat(2, 1fr);
 column-gap: 20px;
 row-gap: 80px;
 margin-top: 100px;
 
 
}
.box {
  margin-left: auto;
 margin-right: auto;
 text-align: center;
 aspect-ratio: 16 / 2;
  background-color: #;
  opacity: 0;
  visibility: hidden;
  transition: all 3s;
  transform: translateY(50px);
 
}
.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}








/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

.section5 {
   height: 800px;
   margin-bottom: -250px;
 }  
.section5 .text01 {
  margin-top: 60px;
  font-size: 20px;
  line-height: 2em;
}
}





/*---------------　ビデオ紹介　------------- */
/* 　ジャバスクリプト使用　YouTube Player APIの読み込み　// 動画動かす設定// 
/* コンテナのサイズ調整 */
.section03 .swiper-container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    height: 480px;
    overflow: hidden;
    position: relative;
    margin-top: -20px;
    border-color: #4c4850;
    border-width: 5px;
    background-color: 
}


/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 50px;
  width: 50px;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../assets/images/矢印（左）01.svg);
  filter: drop-shadow(1px 1px 2px #80989B);
  
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../assets/images/矢印（右）01.svg);
  filter: drop-shadow(1px 1px 2px #80989B);
}
/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

/* ページネイションをinlineで中央に */

.section03 {
    color: #ffffff;
    width: 90%;
    background-color: #; 
    height: auto;
    /* 水平方向の中央揃え */
    margin: 0 auto;
    justify-content: space-between;  
    margin-top: 75px;
    margin-bottom: 30px;
}

.section03 h2 {
    width: 90%;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #013224;
    font-family: "Hina Mincho", serif;
   
}

.section03 .label {
     color: #013224;
     position: relative;
     overflow: hidden;
     display: inline-block;
     font-size: 30px;
     font-family: "BIZ UDPMincho", serif;
}


.section03 .headline {
    width: 90%;
    margin: 0 auto;
    color: #013224;
}

.section03 .slideX {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    color: #013224;
    font-size: 16px;
    line-height: 1.8em;
    text-align: justify;
    font-family: "BIZ UDPMincho", serif;
    margin-bottom: 50px;
    margin-top: 10px;
    z-index: 10;
}
.section03 .slideX span {
    font-size: 14px;
    line-height: 1.8em;
    text-align: justify;
    font-family: "Noto Sans JP", serif;
    
}
.section03 .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: inline-block;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}
/*スマホ使用時のみ改行指示*/
.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}

/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

  
.section03 {
    width: 100%;
    justify-content: space-between; 
    display:block;
} 
.section03 h2 {
    font-size: 16px;    
} 
  
.section03 .slideX {    
    font-size: 14px;
    line-height: 1.8em;   
}
.section03 .label {
  font-size: 24px;    
}
.section03 .swiper-container {
    width: 95%;    
}
}




/*---------製品紹介---------*/
.section05 {
    color: #ffffff;
    width: 90%;
    background-color: #; 
    height: auto;
    /* 水平方向の中央揃え */
    margin: 0 auto;
    justify-content: space-between;  
    margin-top: 110px;
    margin-bottom: 30px;
}
.section05 h2 {
    width: 90%;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #013224;
    font-family: "Hina Mincho", serif;
   
}

.section05 .label {
     color: #013224;
     position: relative;
     overflow: hidden;
     display: inline-block;
     font-size: 30px;
     font-family: "Hina Mincho", serif;
}


.section05 .headline {
    width: 90%;
    margin: 0 auto;
    color: #013224;
}

.section05 .slideX {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: #013224;
    font-size: 16px;
    line-height: 1.8em;
    text-align: justify;
    font-family: "BIZ UDPMincho", serif;
    margin-bottom: 50px;
    margin-top: 10px;
    z-index: 10;
}

.section05 .slideX span {
    font-size: 14px;
    line-height: 1.8em;
    text-align: justify;
    font-family: "Noto Sans JP", serif;
}




/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

  
.section05 {
    width: 100%;
    justify-content: space-between; 
    display:block;
} 
.section05 h2 {
    font-size: 16px;    
} 
  
.section05 .slideX {    
    font-size: 14px;
    line-height: 1.8em;   
}
.section05 .slideX span {
    font-size: 12px;
    line-height: 1.4em;
}
    
.section05 .label {
  font-size: 24px;    
}
}











/*お問合せに関する個人情報の取扱いについて
---------------------------------------------------------------------------*/
.section7 {
    color: #013224;
    margin: 0%; 
    width:90%;
    margin-left: auto;
    margin-right: auto;
    font-family: "Noto Sans JP", serif;
    background-color: #ffffff;
    margin-top: 100px;
    border: 1px solid #013224;
    margin-bottom: 50px;
    border-radius: 50px;
}



.section7 h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0px;
    margin-top: 50px;
    font-family: "BIZ UDPMincho", serif;
}

.section7 .label {
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 30px;
    font-family: "BIZ UDPMincho", serif;
}


.section7 p {
    font-size: 16px;
    line-height: 4px;
    font-weight: 400;  
    text-indent:-18.7px;
    text-align: justify;
    line-height: 1.8em;
    padding-top: 10px;
    padding-bottom: 20px;
    margin:3%; 
    padding-left:1em;
}

.section7 p span {
    margin:2%; 
    font-size: 16px;  
    font-weight: 700;
}
.section7 .justify  {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding-top: 10px;
    padding-bottom: 20px;
    margin-bottom: 10px; 
    text-align: justify;
    font-family: "Noto Sans JP", serif;  
    margin: 3%; 
}


.section7 a span {
    font-size: 16px;
    font-weight: 700;
    font-family: "Noto Sans JP", serif;    
}


.section7 hr {
    border: dashed .2px #013224;
    margin: 0 auto 20px;
    width: 95%;
} 

.section7 .buttonGroup {
    margin-top: 50px;
    text-align: center;
}



ol {
	font-size: 16px;
	font-weight: 700;
    font-family: "Noto Sans JP", serif;   
	list-style-type: decimal;
	margin:1%;       /* 数字の左を2文字分開ける */
	padding-left: 2em;           /* デフォルトのパディングをリセット */
  
}

ol li {
  position: relative;
  padding-left: 0ch;       /* ピリオドの右を2文字分開ける */

}

ol li::marker {
  font-weight: bold;
}





/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

.section7 {
    width: 90%;
    border-radius: 20px;
}
.section7 h2 {
    font-size: 16px;   
} 
.section7 .label {
    font-size: 24px;   
}    

.section7 .justify {
    font-size: 12px;    
}
.section7 hr {
    width: 95%;
}
.section7 p span {
    font-size: 12px; 
} 
.section7 p {
    font-size: 12px;
   
}
	ol {
	font-size: 12px;

}
}







/* -----------NEWS----------------- */

.section12 {
    color: #ffffff;
    width: 80%;
    background-color: #; 
    height: auto;
    /* 水平方向の中央揃え */
    margin: 0 auto;
    justify-content: space-between;  
    margin-top: 0px;
    margin-bottom: 30px;
}

.section12 h2 {
    margin-top:  width: 90%;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #013224;
    font-family: "BIZ UDPMincho", serif;
   
}

.section12 .label {
     color: #013224;
     position: relative;
     overflow: hidden;
     display: inline-block;
     font-size: 30px;
     font-family: "BIZ UDPMincho", serif;
     margin-bottom: 30px;
}

.news-list {
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item a {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #013224;
  border-bottom: 1px solid #013224;
  padding: 20px 20px;
  font-family: "Noto Sans JP", serif;
}
.news-list .item:first-child a{
  border-top: 1px solid #013224;
}
.news-list .item .date{
  text-align: left; 
  margin: 0;
  min-width: 150px;
  font-size: 16px;
  font-family: "Noto Sans JP", serif;  
  color: #013224;
  padding: 0 20px 0 0;
}
.news-list .item .category{
  margin: 0;
  min-width: 140px;
  padding: -1px 20px 0 0;
}
.news-list .item .category span{
  background: #013224;
  color: #FFF;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-family: "Noto Sans JP", serif;
  font-size: 12px;
  line-height: 1;
    text-align: justify;
}
.news-list .item .title{
  text-align: justify;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  margin: 0;
  width: 100%;
}


.news-list .item .title02{
  text-align: justify;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  margin: 0;
  width: 100%;
}



.news-list .item .title02:hover{
  background-color: #cdecc6;
}


@media screen and (max-width: 767px){
.news-list .item a{
  flex-wrap: wrap;
}
.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
    
.news-list .item .title02{
  margin-top: 10px;
}    
}






/* 装飾 */
 
*{
  box-sizing: border-box;
}
a{
  text-decoration: none;
}
body{
  margin: 20px;
}

/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){
.section12 {
    width: 100%;
    margin-top: 0px;
}
.section12 .news-list {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.section12 .item　{
  width: 100%;      
}    
}












/* ----------------企業情報----------------- */
.company_section2 {
    font-family: "BIZ UDPMincho", serif;
    text-align: center; 
    padding-top: 0px;
    padding-bottom: -5px;
    margin: 10px;
    margin-left: auto;
    margin-right: auto;
}    
    
.company_section2 tr {
   font-size: 20px;
}
.company_section2 .container {
    width: 80%;
    margin: 0 auto;
    max-width: 1280px; 
    
}

.company_section2 img {
    border-radius: 20px;
}
.company_section2 table {
    width: 100%;
}
.company_section2 table tr {
    color: #013224;
    padding: 20px 0;
    display: block;
    border-bottom: solid 1px #013224;
    line-height: 1.8em;
    margin-bottom: 20px;
    font-family: "BIZ UDPMincho", serif;
    
}
.company_section2 table tr th {
    color: #013224;
    width: 150px;
}

/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

.company_section2 {
    margin-top: 100px;
    width: 100%;
    
}   
.company_section2 tr {
   font-size: 15px;
}    
.company_section2 .row {
   flex-wrap: wrap
}
.company_section2 .container {
    width: 90%; 
    margin-top: -80px;    
} 
    
.company_section2 .col {
   
    margin-bottom: 30px;
    text-align: left;
    }
.company_section2 table tr th {
   width: 90px;
}  
.company_section2 h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    
}   
.company_section2 .sub_title {
    margin-top: 100px;
    
    }
    }

@media screen and (min-width: 768px){
.company_section2 .br-sp {display: none; }
}
}




/* ---------------アクセス---------- */
.company_section3 {
    color: #013224;
    width: 90%;
    margin-top: 100px;
}

.company_section3 .container {
    margin-top: 100px;
    width: 80%;
    margin: 0 auto;
    max-width: 1280px;
}




/* アクセス用ページ */

.company_section3 .text {
    text-align: center; 
    width: 100%;
    font-size: 16px;
    line-height: 1.8em;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: justify;
    margin-bottom: 15px;
    color: #013224;
    font-family: "BIZ UDPMincho", serif;
}
.company_section3 p span {
  color: #033822;
  font-size: 16px;  
  font-weight: 400;
  line-height: 0.5;  
}
.company_section3 .btn { 
    margin-top: 0px;
    font-size: 18px;
    color: #ffffff;
    background-color: #2cb67d;
    border: solid 1px #2cb67d;
    border-radius: 100px;
    display: inline-block;
    width: 270px;
    line-height: 60px;
    text-align:center;
    transition: .2s;
}
.company_section3 .btn:hover {
    color: #2cb67d;
    border: solid 1px #98fb98;
    background-color: #98fb98;
    transition: .2s;
    
}





/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){
.company_section3 .text {
    font-size: 14px;
    line-height: 1.8em;   
}
.company_section3 {
    
    margin-top: 20px;
    margin-bottom: 100px;
    
}

 .company_section3 .container {
    margin-top: 0px;  
    font-family: "Noto Sans JP", serif;
     width: 95%;
} 
.company_section3 .col {
    width: 100%;
    margin-bottom: 30px;
    }
.company_section3 table tr th {
   width: 90px;
}    
.company_section3 h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 50px;
}    
  
.company_section3 h3 {
        bottom: 10px;
 } 
   
}


/*SNSボタン
---------------------------------------------------------------------------*/

.section9 .container {
 
    line-height: 1.8em;
    text-align:center; 
    margin-top: 8px;
    font-family: "BIZ UDPMincho", serif;
 } 
.section9 p {
    font-size: 20px;
    font-weight: 700;  
    margin-bottom: 15px;
}


.section9 ul {
  display: flex;
  justify-content: center;
  font: 12px;
}

.section9 ul p {
  margin-top: 5px;
  margin-bottom: -10px;
  font-size: 13px;
  font-weight: 400;
  display: flex;
  justify-content: center;
}
.section9 .social-list li {
  margin-bottom: 20px;
  list-style: none;
}
.section9 .social-list   {
  border-bottom:solid #a9a9a9 2px; 
  margin-bottom: 15px;
}
.section9 li:nth-child(2) {
  margin: 0 30px;
  }

/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){
.section9 {
 flex-wrap: wrap;
}
}





/*--------------カード-------------------*/
.section14 {
    margin-bottom: 50px;
    
    
}
.section14 .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin-inline: auto;
  margin-bottom: 50px;
    
}

.section14 img {
   background-color: #000000; 
}

@media screen and (max-width: 1290px) {
.section14 .cards {
    grid-template-columns: repeat(3, 1fr);
}
}


@media screen and (max-width: 768px) {
.section14 .cards {
    grid-template-columns: repeat(2, 1fr);
    
}
}

@media screen and (max-width: 470px) {
.section14 .cards {
    grid-template-columns: repeat(1, 1fr);
    
}
}

.section14 .card {
    background-color: #ffffff;
    border: 0px solid #013224; 
    margin-left: auto;
    margin-right: auto;
    box-shadow: 2px 2px 3px #ccc;  
    width: 300px;
}




.section14 .subtitle {
    color: #013224;
    font-size: 20px;
    font-weight: bold;
    font-family: "BIZ UDPMincho", serif; 
    text-align: center;
    position: relative;
    padding: 0px 0;
    margin: 1.5em 0;
    margin-bottom: 30px;
   
    
   
}
.section14 .subtitle:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 150px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #013224;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
 
}

.section14 .card__body {
  padding: 15px;
  
    
  
}

.section14 .card__title {
  color: #013224;
  font-size: 17px;
  font-weight: bold;
  font-family: "BIZ UDPMincho", serif; 
  /*コレ*/border-bottom: 1px solid #013224;
  padding: 3px;
  background: #0000;
}





.section14 .card__text {
 color: #013224;
 line-height: 1.4;
 margin-top: 10px;
 font-family: "Noto Sans JP", serif;
 font-size: 14px;
 margin-bottom: 20px;
 text-align: justify; 
 
}

.section14 a {
 color: #013224;
 line-height: 1.4;
 margin-top: 30px;
 font-family: "Noto Sans JP", serif;
 font-size: 12px;
 
}

.section14 .textlink {
    padding: 10px;
    transition: color 0.5s, background-color 0.5s;
}
.section14 .textlink:hover {
    color: #FFF;
    background-color: #013224;
}
.section14 img {
  width:100%;
  height: 220px;
  object-fit: cover;
  background-color: #ffffff;
  padding: 15px;
}







/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

.section14 .buttonGroup {
   display: block;
}
.section14 {
    width: 100%;
    margin: 5%;
    display: block;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.section14 .card {
    width:100%;  
    }     
 .section14 .cards {   
    width:100%;
} 
.section14 img {
  width:100%;
  height: 250px;
}
}





/*--------------アクセスMAP--------------*/

.section_poster #mainArea {
    width: auto;
    margin-bottom: 18px;
    padding:2px;
    text-align: center;
}


.section_poster p {
	font-family: "Noto Sans JP", serif;  
	font-weight: 500;
	font-size: 14px;
	color: #013224;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	
	
}

.section_poster p:hover {

	color: #e0b254;
}



/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px) {

.section_poster {
	margin-top: 65px;	
}
.section_poster p {
	width: 90%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	font-size: 12px;
	
}	
}













/*---------------スライダー03-----------------*/


.section18 .s-fade-text {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 5vw;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  text-shadow: 2px 4px 5px #4c4850;
  z-index: 1000;
    
}

.section18 .swiper-slide-active .s-fade-text {
  animation: slideTextFade 1.75s ease 0s 1 normal;
}

@keyframes slideTextFade {
  0%, 25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
}
}

.section18 h3 {
    margin-top: 13px;
}



.section18 .slider {
  margin-top: 50px;
  height: 53vw;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 100%; 
  margin-left: auto;
  margin-right: auto; 
  margin-bottom: -100px;
 }

.section18 .slick-img img {
  width: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.section18 .add-animation {
  animation: zoomUp 10s linear 0s normal both;
	
}



.section18 .btns-wrapper {
   margin-top: 200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    
}

.section18 .btns-wrapper .slider-btn {
    font-family: "Noto Sans JP", serif;
    font-size: 16px;
    font-weight: 700;
    width: 100px;
    height: 30px;
    color: #ffff;
    background-color: #013224;
    z-index: 9990;
}




/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 720px) {
.section18 .s-fade-text {
	font-size: 8vw;
}
.section18 .slick-img {
	margin-left: -130px;
	}
.section18 .slick-img span {
	margin-left: 65px;
	}
.section18 .slick-img img {
	width:auto;
  	height: 500px;
}
.section18 .slider {
	height: 500px;	
	width: auto;	
	margin-bottom: -100px;
}
}



























/*---------------スライダー02今回使ってない-----------------

.slider {
 width: 95%; 
 margin-left: auto;
 margin-right: auto; 
 margin-bottom: -100px;
}

.slick-img img {
  height: auto;
  width: 100%;
}
.slick-prev {
  left: 0;
  z-index: 1;
}
.slick-next {
  right: 0;
}
.container002 .slick-num {
  background-color: rgba(255,255,255,.5);
  bottom: 0;
  font-size: 18px;
  left: 0;
  line-height: 2;
  position: absolute;
  right: 0;
  text-align: center;
}
*/


/*---------------スライド-----------------*/



.section13 .btns-wrapper {
   margin-top: -40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    
}

.section13 .btns-wrapper .slider-btn {
    font-family: "Noto Sans JP", serif;
    font-size: 16px;
    font-weight: 700;
    width: 100px;
    height: 30px;
    color: #ffff;
    background-color: #013224;
    z-index: 9990;
}

.section13 .btns-wrapper .slider-btn:hover {
    background-color: #FCFCFA;
    border: 1px solid #013224;
    color: #013224;
    transition: 0.5s; /* マウスカーソルを載せるとき */    
}


.section13 .slide-wrapper img {
    border: 10px solid #ddd;
    height: 200px;
    opacity: 0.5;
}




.section13 .slide-container {
    width: 100%;
    margin: 50px auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.section13 .slide-wrapper {
  display: flex;
  animation: slide-flow 30s infinite linear 1s both;
}
.section13 .slide {
  width: 300px;
  object-fit:cover;
  border: 10px solid #ddd;
  
}
@keyframes slide-flow {
     0% {transform: translateX(0);}
 100% {transform: translateX(-100%);}
}





















　/*------- TOPページロゴ出現大きくから小さく ------- */

.video01 .hero_title {
    position:absolute;	
    width: 300px;
	height: 600px;
    margin-top: 1500px;  
    z-index: 5;
}

.video01 .fuuno {
 margin-top: 0px;
 z-index: 5;
 width:30%;
 margin-left:10%;
 transform : scale(5)
     
}

.video01 .hero_title .container {
    
z-index: 5;
}






#fuuno {
z-index: 5;
width:80%;
margin-left:10%;
animation:center 6s infinite;
opacity: 1;
}

@keyframes center {


0% {

transform:scale(3);
opacity:0;
}


100% {

transform:scale(1);
opacity:.7;
}
}

@keyframes example-animation {
from {
opacity: 0;
}
to {
opacity: 1;
}
}



#fuuno {
margin-top:250px;  /*-------ロゴの上下位置調整---- */
animation-iteration-count: 1; 
transform:scale(3);
opacity:0;
z-index: 5;
}


80% {
    /
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  width: 100%;
  z-index: 5;
}

p {
  line-height: 2;
}


/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px) {



#fuuno {
margin-top: 250px;
}
}



/*------生産フローページ---------*/

/*-----------------
セクション　section　title
------------------*/
.recipe  {
    margin-top: 50px;
    color: #013224;
    margin-bottom: 50px;
    
}

.recipe h1 {
    
    font-family: "BIZ UDPMincho", serif;
    font-size: 2.5rem;
    margin: 0 10%;
    display: flex;
    align-items: center;
    position: relative;
    
}

.recipe h1::after {
    content: "作業工程";
    font-family: 'Noto Suns JP',sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-left: 2rem; 
    margin-top: 15px;
}




/*-----------------------
セクションコンテンツ01　section contents
------------------------*/

.list-recipe li {
    display: flex;
    align-items: center;
    margin-top: 120px;
    margin-bottom: 50px;
    padding: 10px;
    width: 90%;
    margin-left:auto;
    margin-right: auto;
    background-color: #cdecc6;
    
}

.recipe-image {
    width: 55%;
    padding: 3%;
    background: url(../assets/images/3883663_s-640x415.jpg);
    box-shadow: 2px 2px 5px #999991;
    
    /*  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #EDD 50%, #EDD 100%);   今は使わない。　*/
    
}





figure {
    width: 100%;
    margin: 0 0 0 auto;
    position: relative;
}

figure img {
    width: 100%;
}

.recipe .recipe-image a:hover{ 
	opacity:0.5;
	transition:0.3s;
}


.recipe-image figure div {
    font-family: "Hina Mincho", serif;
    font-size: 1.5vw;
    position: absolute;
    top:  0;
    transform-origin: 0 0;
    transform: rotate(90deg);
    display: flex;
    align-items: center;
    
}

.recipe-image figure div::after {
    content: "";
    width: 10vw;
    height: 1px;
    background-color: #013224;
    margin-left: 1rem;
 }

.recipe-info {
    width: 45%;
    margin: auto 2%;
    flex-direction: column;
    
    
}
 
.recipe-info h2 {
    font-family: "Hina Mincho", serif;
    font-size: 24px;
    position: relative;
    
}



.recipe-info p {
    font-size: 14px;
    margin: 2rem auto;
    font-family: "BIZ UDPMincho", serif;
    margin-top: 5px;
    text-align: justify;
} 

.recipe-info p span {
    font-size: 12px;
    margin: 2rem auto;
    font-family: "Noto Sans JP", serif;
    margin-top: 5px;
    text-align: justify;
    
}




/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

    
.list-recipe li {
    display: block;
    margin-top: 00px;
    width: 95%;
}
.recipe h1 {
    font-size: 26px;
    margin-left: 5%;
}  

.recipe h1::after {
    content: "作業工程";
    font-family: 'Noto Suns JP',sans-serif;
    font-size: 1rem;
    font-weight: 300;
    margin-left: 1rem; 
    margin-top: 8px;
}    
.recipe-info h2 {
    width:100%; /*テキスト横エリア横サイズ*/
    margin:0 auto 0 auto; /*エリアのセンター置き*/
    font-size: 20px;
    margin-top: 20px;
}

     
.recipe-image {
    width: 100%;    
}
.recipe-info p {
    width:100%; /*テキスト横エリア横サイズ*/
    margin:0 auto 0 auto; /*エリアのセンター置き*/
    text-align: justify;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.8em;
    margin-top: 10px;
    
}
.recipe-image figure div {
     font-size: 3.5vw;   
} 
    
.recipe-info h2::after {
    font-size: 30vw;
    top: -5vh;
    right: 0;
}
    
.list-recipe li:nth-child(2) .recipe-info h2::before {
    font-size: 30vw;
    top: -5vh;
    right: 0;
}

    .list-recipe li:nth-child(3) h2::after {    
    font-size: 30vw;
    color: #f2f2f2;
    top: -5vh;
    right: 0;
}
    
.list-recipe li:nth-child(4) .recipe-info h2::before {
    font-size: 30vw;
    top: -5vh;
    right: 0;
}

.list-recipe li:nth-child(5) h2::after {    
    font-size: 30vw;
    top: -5vh;
    right: 0;
}    


/*.btn {
    display: inline-block;
    background-color: #E4AF98;
    width: 60%;
    height: 4rem;
    border-radius: 2rem;
    
    text-decoration:  none;
    color: #FCFCFA;
    
    text-align: center;
    line-height: 4rem;
    transition: 0.5s; /* マウスカーソルを外すとき */
 }

/*.btn:hover {
    background-color: #FCFCFA;
    border: 1px solid #E4AF98;
    color: #3B230E;
    transition: 0.5s; /* マウスカーソルを載せるとき */    
}






/* --------------ミッション-------------- */
    
/* 販売実績 */
.service_section1 {
    color: #013224;
    padding: 80px 0;
    font-family: "Noto Sans JP", serif;
}
.service_section1 .container {
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
}
.service_section1 .sub_title {
    color: #013224;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    font-family: "BIZ UDPMincho", serif;
}

.service_section1 h2 {
    color: #013224;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "BIZ UDPMincho", serif;
}
.service_section1 .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;  
}
.service_section1 .col {
    width: 48%;
}
.service_section1 .text2 {
    line-height: 1.8em;
    margin-bottom: 00px;
}
.service_section1 .text {
    font-size: 16px;
    line-height: 1.8em;
    margin-bottom: 20px;
    text-align: justify;
    font-family: "BIZ UDPMincho", serif;
    color: #013224;
}


.service_section1 a {
   margin-bottom: 20px;
}
.service_section1 .sample-img {
    width: 48%;
}

.service_section1 .zoom-box {
  display: inline-block;
  overflow: hidden;
  width: 48%;
}
.service_section1 .c-bnr.zoom {
  display: block;
  transition-duration: 1s;
}

.service_section1 .c-bnr.zoom:hover {
  transform: scale(1.2);
}


/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){
 .service_section1 .row {
    display: block;
}
.service_section1 .col {
    width: 100%;
} 
.service_section1 .zoom-box {
    width: 100%;
}
.service_section1 h2 {
    font-size: 20px;
} 
}





/*---ミッション用背景画像aitの代わり---*/

p .visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
  white-space: nowrap;
}











/*---ミッション01---*/

.service_section44 {
	margin-top: 50px;
	margin-bottom: 50px;
	
}



.service_section44 h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    font-family: "BIZ UDPMincho", serif;
    color: #ffff;
    text-shadow: 1px 1px 10px #000;
    opacity: 0.95;
    margin-bottom: 70px;
	margin-top: 200px;
    
}
.service_section44 .sub-text{
    margin-top: -50px;
    font-size: 30px;
	font-family: "BIZ UDPMincho", serif;
    color: #ffff;
    line-height:0px;
    text-shadow: 1px 1px 10px #000;
    text-align: center;
    
}


.service_section44 .bg_img {
    display: table;
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: url('../assets/images/kami_2025-03-25 13.13.20.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px 0 30px 0;
}
.service_section44 .bg_img p {
    display: table-cell;
    font-size: 140%;
    text-align: center;
    vertical-align: middle;
    margin: 0 20px;
    padding: 0;
}
.service_section44 .bg_rgba, .bg_rgba p {
    position: relative;
    font-size: 30px;
    line-height: 1.8em;
    font-weight: 500;
    color: #013224;     
    font-family: "BIZ UDPMincho", serif;
}
.service_section44 .bg_rgba p {color: #013224;}
.service_section44 .bg_rgba::before {
    background: rgba(255,255,255,0.5);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}   

.service_section44 .passing-txt {
	opacity: 0;
	/* 後ほど解説 */
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	/* 任意の値 */
	font-size: 3.0rem;
	font-weight: bold;
	line-height: 1.5rem;
     font-family: "BIZ UDPMincho", serif;
    font-weight: 700;
	text-align: center;
}
.service_section44 .passing-bar:before {
	-webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
	animation: passing-bar 1s ease 0s 1 normal forwards;
}
.service_section44 .passing-txt {
	-webkit-animation: passing-txt 0s ease 1s 1 normal forwards;
	animation:passing-txt 0s ease 1s 1 normal forwards;
}
.service_section44 .passing-txt span {
    font-size: 1.5rem;
}

@media not all and (min-width: 600px){
.service_section44 .contents {
    width: 100%;
   
}
}

.service_section44 .contents p {
  margin-bottom: 50px;
}

.service_section44 .image {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-bottom: 50px;
}

@media not all and (min-width: 600px){
.service_section44 .contents p {
    margin-bottom: 30px;
  }

.service_section44 .image {
    margin-bottom: 30px;
  }
}

.service_section44 .image img {
	display: block;
	width: 100%;
	height: 150px;
    object-fit: cover;
}
}




/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px) {
.service_section44 .passing-txt {
	
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.5;   
}
}






/*---ミッション01---*/

.service_section4{
	margin-top: -50px;
}

.service_section4 .fixed-bg {
  min-height: 100%;
  background-size: cover;
  -webkit-background-size: cover !important; 
  -moz-background-size: cover !important; 
  -o-background-size: cover; 
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
  line-height: 1.5; 
  color: #013224;
    
}

.service_section4 h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    font-family: "BIZ UDPMincho", serif;
    color: rgba(255, 255, 255, 1);
    text-shadow: 1px 1px 10px #000, 5px 5px 20px #000, 1px 0px 20px #def;
    opacity: 0.95;
    margin-bottom: 70px;
    
}
.service_section4 img {
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 10px;
}
.service_section4 .main-text {
    font-size: 2.5em;
    line-height:1.5em;
    text-align: center;
    
}
.service_section4 .sub-text{
    margin-top: -50px;
    font-size: 1.5em;
    color:#fff;
    line-height:0px;
    text-shadow: 1px 1px 10px #000, 5px 5px 20px #000, 1px 0px 20px #def;
    text-align: justify;
    
}
.service_section4 .text-box  {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    font-size: 15px;
    line-height: 1.8em;
    color: #013224;
    font-family: "BIZ UDPMincho", serif;
    text-align: justify;
    margin: 0;
    max-width: 500px;
   
}
.service_section4 .text-box h2 {
    font-family: "BIZ UDPMincho", serif;
    text-align: justify;
    font-size: 1.5em;
}


.service_section4 .text-box span {
    font-size: 20px;
    line-height: 1.2em; 
 }


.service_section4 .fixed-bg p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.8em;
    color: #013224;
    font-family: "BIZ UDPMincho", serif;
    text-align: justify;
    
}
.service_section4 .fixed-bg p span{
    font-family: "Noto Sans JP", serif;
    font-weight:700;
    
}



.service_section4 .fixed-bg .text02 {
    font-size: 30px;
    line-height: 1.4em;
    color: #013224;
    font-family: "Noto Sans JP", serif;
    font-weight:700;
    text-align: center;
   
}
.service_section4 .text-box01 {
    margin-left: -60%;
}

.service_section4 .text-box03 {
   margin-right: -60%;
}



.service_section4 .bg-1 {
  background-image: url('../assets/images/IMG_3384.jpg');
 
}
.service_section4 .bg-1-1 {
  background-image: url('../assets/images/作業写真003.jpg');
  
}


.service_section4 .bg-1-2 {
  background-image: url('../assets/images/IMG_2479.jpg')
}
.service_section4 .bg-2 {
  background-image: url('../assets/images/IMG_2467.jpg')
}
.service_section4 .bg-2-1 {
  background-image: url('../assets/images/IMG_2472.jpg')
}
.service_section4 .bg-3 {
  background-image: url('../assets/images/IMG_2481.jpg')
}
.service_section4 .bg-3-1 {
  background-image: url('../assets/images/ECP_01.jpg')
}
.service_section4 .bg-4 {
  background-image: url('../assets/images/ECP_06.jpg' )
}



ol.bracket,
ol.closing_bracket {
  margin-left: -7%;
	margin-top: 10px;
    font-size: 16px;
    line-height: 1.8em;
    color: #013224;
    font-family: "BIZ UDPMincho", serif;
    text-align: justify;
	list-style-type: none;
}
ol.bracket > li,
ol.closing_bracket > li {
  counter-increment: cnt;
}
ol.bracket > li:before {
  content: "("counter(cnt) ") ";
}
ol.closing_bracket > li:before {
  content: counter(cnt) ") ";
}


/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 1205px) {
    .service_section4 .text-box01 {
    margin-left: 5%;
}

.service_section4 .text-box03 {
   margin-right: 5%;
}    
}
 	   

/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){
.service_section4 .bg-3 {
  background-image: url('../assets/images/IMG_2481-01.jpg')
}
.service_section4 .bg-4 {
  background-image: url('../assets/images/ECP_06-01.jpg' )
}	
.service_section4 .bg-3-1 {
  background-image: url('../assets/images/ECP_01-01.jpg')
}
.service_section4 .bg-2 {
  background-image: url('../assets/images/IMG_2467-01.jpg')
}	
.service_section4 .main-text {
      font-size: 30px;
      line-height: 1em;  
} 
.service_section4 .fixed-bg p {
    font-size: 14px;
    line-height: 1.8em;
}
.service_section4 .text-box span {
    font-size: 15px;
    line-height: 1.2em; 
}
service_section4 h2 {
    text-align: center;
}
    
.service_section4 .fixed-bg {
    margin-top: -200px;   
    text-align: center;  
    margin-bottom: -200px;
} 
 .service_section4 .fixed-bg p {
    font-size: 14px;
}
.service_section4 .fixed-bg .text02 {
    font-size: 24px;
}

.service_section4 .text-box01 {
    margin-top: 150px;
	margin-left: 0%;
}

.service_section4 .text-box03 {
   margin-right: 0%;
}    
ol.bracket,
ol.closing_bracket {
    text-align: justify;
	
	margin-top: 10px;
    font-size: 14px;
}
}
/* スマホの時だけ改行させるクラス　*/
.service_section4 .br-sp {
    display: none;
    text-align: center;
}

@media (max-width: 680px) {
.service_section4 .br-sp {
    display: block;
    
}
}

.service_section5 {
	
	background-color: #ffffff;
	padding-top: 50px;
	padding-bottom: 50px;
}
.service_section5 .text02 {
	font-size: 30px;
 	color: #013224;
    font-family: "Noto Sans JP", serif;
    font-weight:700;
	line-height: 36px;
    text-align: center;
	margin-bottom: 50px;
}
.service_section5 .text02 span {
	font-size: 20px;
 	color: #013224;
    font-family: "BIZ UDPMincho", serif;
    font-weight:400;
    text-align: center;
	
}
/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 1205px) {
.service_section5 .text02 {
	margin-top: 50px;
	margin-bottom: 30px;
}	
}	

/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){	
/* スマホの時だけ改行させるクラス　*/

.service_section5 {
	padding-top: 30px;
	background-color: #ffff;
	padding-bottom: 10px;
}
.service_section5 .text02 {
	font-size: 25px;
	
}
.service_section5 .text02 span {
	font-size: 18px;	
}

}


/* -------今回は使わない（ミッションページアクション）----------　

.parallax_box p {
    font-size: 50px;
    margin-left: auto;
    margin-right: auto; 
    line-height: 1.2;
    font-family: "BIZ UDPMincho", serif;
    color: #ffffff;

}

.parallax_box {
    text-align: center;
    font-size: 30px;
    margin-left: auto;
    margin-right: auto;  
    font-family: "BIZ UDPMincho", serif;
    margin-bottom: 50px;
    color: #ffffff;
}

.parallax_content{
  display: block;
  height: 100%;
  padding: 30%;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.img_bg_01{
  background-image: url('../assets/images/kamisuki_07.jpg');
}
.img_bg_02{
  background-image: url('../assets/images/kamiya-top-1000x666_02.jpg');
}
.img_bg_03{
  background-image: url('../assets/images/kamiya-top-1000x666.jpg');
}


/* スマホサイズ＆タブレットサイズのメディアクエリ */
/* -------今回は使わない（ミッションページアクション）----------　
@media only screen and (max-width: 960px){
.parallax_box p {
    font-size: 30px;
}
.parallax_box {
   font-size: 20px;
}
} 
*/










/* ---------------------販売実績TOP画像など ---------------*/

.page_main_visua2 {
  background-image: url('../assets/images/kamisuki_07.jpg');
  background-size: cover;
  background-position:30%;
  position: relative;
  margin-bottom: 50px;
}

.page_main_visua2 img {
    margin-top: -50px; 
    border-radius: 500px;
    z-index: 3;
    padding: 0.5em 1em;
    margin: 2em 0;
}

.page_main_visua2 .container {
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
    height: 300px;
    position: relative;
}
.page_main_visua2 .title {
    position: absolute;
    top: 65%;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}
.page_main_visua2 .title h1 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 0px #4c4850;
    font-family: "BIZ UDPMincho", serif;
}
.page_main_visua2 p {
    font-size: 30px;
    font-weight: 500;
    color: #ffffff; 
    text-shadow: 1px 1px 0px #4c4850;
    font-family: "BIZ UDPMincho", serif;
} 


/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){
.page_main_visua2 .title {
  width: 100%;

}
}    
   


















    
/*-----------業務内容 Business contentt---------*/   
    
.bg_img {
    display: table;
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: url('../assets/images/kamisuki_07.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 15px 0 30px 0;
}
.bg_img p {
    display: table-cell;
    font-size: 140%;
    text-align: center;
    vertical-align: middle;
    margin: 0 20px;
    padding: 0;
}
.bg_rgba, .bg_rgba p {
    position: relative;
    font-size: 30px;
    line-height: 1.8em;
    font-weight: 500;
    color: #013224;     
    font-family: "BIZ UDPMincho", serif;
}
.bg_rgba p {color: #013224;}
.bg_rgba::before {
    background: rgba(255,255,255,0.5);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}   


/* -----画像がフワッと出るコードopacityFadeIn-----
<div class="opacityFadeIn"> このコードを<imgの前に入れる*/
.opacityFadeIn {
    animation: opacityFadeIn 0.7s ease 0s 1 normal;
}
@keyframes opacityFadeIn {
  0% {
    opacity: 0;
}
  100% {
    opacity: 1;
}
}




/*--------縦組み文字タイプライター表示-------

  <div class="bgimg">
  <video src="https://dubdesign.net/wp-content/uploads/2022/06/movie.mp4" autoplay loop muted></video>
  <div class="text">朝は、一杯のコーヒー。</div>
</div>   このデータをindex.htmlに     
   

*/
.bgimg {
    margin-top: 150px;
    position: relative;
    margin-bottom: 150px;
}
.bgimg video {
    width: 100%;
    object-fit: cover;
    height: 400px;
    filter: blur(1px);
}

.text.typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    animation: typing 3s steps(23), caret 0.3s steps(1) infinite;
    margin: 0;
    line-height: 1.7;
    max-width: 300px;
    font-family: "BIZ UDPMincho", serif;
    font-size: 1.5rem;
    max-height: 300px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    height: 100%;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    letter-spacing: 0.04rem;
    color: #FFF;
    text-shadow: 0px 0px 4px #000;
}

@keyframes typing {
  from {
    height: 0;
  }
}
@keyframes caret {
  50% {
    border-bottom-color: currentColor;
}
}



/*チャレンジドプラストッパン株式会社・らくゆく---------------------------------------------------------------------------*/

.section_introduction01 {
    width: auto;
    margin: 20px;
    
    
}

.section_introduction01 .class1 {
    display: flex;
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.section_introduction01 .class1 img {  
    width: 300px;
}

.section_introduction01 .container4 p {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    line-height: 1.6em;
    font-family: "Noto Sans JP", serif;
   margin-bottom: 25px;
}









/*チャレンジドプラストッパン株式会社・らくゆく---------------------------------------------------------------------------*/


.section19 {
    margin-top: -10px;
    margin-bottom: 50px;
   
    
}
.section19 .cards01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin-inline: auto;
  margin-bottom: 50px;
}

	
	


.section19 .card01 {
    background-color: #ffffff;
    border: 0px solid #013224; 
    margin-left: auto;
    margin-right: auto;
    width: 350px;
}

.section19 .card01_text {
    width: 350px;
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    line-height: 1.2em;
    font-family: "Noto Sans JP", serif;
}
.section19 img {
  width: 350px;
}


/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 1200px){
.section19 .cards01 {
  display: block;
  grid-template-columns: repeat(1, 1fr);
   margin-left: auto;
   margin-right: auto; 
   text-align: center;
    
 }   

.section19 {
    width: 100%;
    margin: 5%;
    display: block;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.section19 .card01_text {
    margin-bottom: 30px;
}   

.section19 img {
  width:300px;
  height: auto;
}    
}







/* TOPページに行く */
html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #3fefee;
    border: solid 2px #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;
    transform: translateY(20%) rotate(-45deg);
}




















    






/*--------------商品紹介--------------/*
 

/* 販売実績 */
.product01  {
    font-family: "Noto Sans JP", serif;
    
}
.product01 .container {
   
    width: 100%;
    max-width: 1280px;
    margin-top: 40px;
    background-color:;
    margin:auto;
}

.product01 .label {
  color: #013224;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "BIZ UDPMincho", serif;
	
}

.product01 h2 {
   color: #013224;
    font-size: 22px;
	line-height: 1.5em;
    font-weight: 500;
    margin-bottom: 0px;
    font-family: "BIZ UDPMincho", serif;
}
.product01 .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px; 
    margin-top: 200px; 
}
.product01 .col {
	margin-left: 5%;
    width: 40%;
    
}
.product01 .text2 {
    line-height: 1.8;
    margin-bottom: 00px;
}
.product01 .slideX {
    margin-top: 10px;
    margin-left: 0em;
    color: #013224;
    font-size: 16px;
    line-height: 1.8em;
    text-align: justify;
    font-family: "BIZ UDPMincho", serif;
    margin-bottom: 20px;
    line-break: strict;
}
.product01 .text  {
    margin-left: 0em;
    color: #013224;
    font-size: 16px;
    line-height: 1.8em;
    text-align: justify;
    font-family: "BIZ UDPMincho", serif;
    margin-bottom: 20px;
    margin-top: 10px;
    z-index: 10;
}



.product01 .text02 {
    font-size: 14px;
    line-height: 1.8em;
    align-items:flex-end;
    font-family: "Noto Sans JP", serif;
    color: #013224;
}

.product01 .buttonGroup {
    margin-top: 0px;  
}
.product01 .zoom-box {
  margin-right: 5%;
  margin-left: 5%;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  margin-top: -40px; 
  height: auto;
}
.product01 .hidden-pc {
    display: block;
}

@media screen and (max-width: 767px) {
.product01 .hidden-pc {
        display: none;
    }

.product01 .hidden-sp {
        display: block;
}
}







/*--------画像3つのやつ--------*/
.product01 .cf:before,
.product01 .cf:after{
  content:"";
  display:table;
    
    
}
 
.product01 .cf:after{
  clear:both;
    
}
 
.product01 .cf{
  zoom:1;
}

#content {
  max-width: 650px;
  margin: 3rem auto;
  text-align: center;
}




#featured_img img,
#thumb_img img {
  max-width: 100%;
    
}

#thumb_img {
   margin-top:2%;
    img {
    float:left;
    max-width: 32%;
    width: 32%;
    cursor: pointer;
    margin-right:2%;
    border:2px solid #eee;
    box-sizing:border-box;
    &.active{
    border:2px solid #cac6b8;
    }
    
    &:last-child{
      margin-right:0;
    }
}
}












/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){
.product01 {
	margin-top: 260px;	
		
	}  
.product01 .row {
    display: block;
	
       
}
.product01 .col {
    width: 90%;
    margin-top: -150px;
	margin-bottom: 50px;
} 
   
.product01 .label {
    font-size: 20px;

}
.product01 .zoom-box img {
   width: 90%;
	margin-left: auto;
    margin-right: auto;
}  
 .product01 .slideX {
    font-size: 13px;

} 

    
 #thumb_img {
	 text-align: center;
	 width: 90%;

}
.product01 h2 {
    font-size: 16px;
    line-height: 1.8em;
}   
.product01 .text02 {
    font-size: 12px;
	text-align: justify;
	
}
}

@keyframes vertical-animation {
  from {
    transform: translateY(0);
  }

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

.slider-container {
  height: 150px;
  overflow: hidden;
}

.slider-wrapper {
  display: grid; /* slideのmargin-bottom値を全て内包させる為 */
  animation: vertical-animation 120s linear infinite;
}

.slide {
  width: 100%;
  margin: 0 auto 5px;
  height: auto; 
  
}

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

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





/*------paper worke用-----*/

.paper01 .bg_img {
    display: table;
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: url('../assets/images/紙すき_紙屑.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px 0 30px 0;
}
.paper01 .bg_img p {
    display: table-cell;
    font-size: 140%;
    text-align: center;
    vertical-align: middle;
    margin: 0 20px;
    padding: 0;
}
.paper01 .bg_rgba, .bg_rgba p {
    position: relative;
    font-size: 30px;
    line-height: 1.8em;
    font-weight: 500;
    color: #013224;     
    font-family: "BIZ UDPMincho", serif;
}
.paper01 .bg_rgba p {color: #013224;}
.paper01 .bg_rgba::before {
    background: rgba(255,255,255,0.5);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}   
}











@media not all and (min-width: 600px){
.paper01 .contents {
    width: 100%;
   
}
}

.paper01 .contents p {
  margin-bottom: 50px;
}

.paper01 .image {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-bottom: 50px;
}

@media not all and (min-width: 600px){
.paper01 .contents p {
    margin-bottom: 30px;
  }

.paper01 .image {
    margin-bottom: 30px;
  }
}

.paper01 .image img {
  display: block;
  width: 100%;
  height: auto;
}

@media not all and (min-width: 600px){
.paper01 .image img {
    height: 200px;
    object-fit: cover;
  }
}


/* 流れる文字animation */
@-webkit-keyframes passing-bar{
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passing-bar{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@-webkit-keyframes passing-txt{
	0% { opacity: 0; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes passing-txt{
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}
/* css */
.passing .passing-box {
	margin-top: 100px;
    display: block;
	text-align: center;
}
.passing .passing-bar {
	position: relative;
	display: inline-block;
	/*　後ほど解説　*/
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing .passing-bar:before {

	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	/* 任意の値 */
	display: table;
    width: 100%;
    height: 500px;
    object-fit: cover;
    background: url('../assets/images/紙すき_紙屑.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px 0 30px 0;
}
.passing .passing-txt {
	opacity: 0;
	/* 後ほど解説 */
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	/* 任意の値 */
	font-size: 3.0rem;
	font-weight: bold;
	line-height: 3.5rem;
     font-family: "BIZ UDPMincho", serif;
    font-weight: 700;
}
.passing.move .passing-bar:before {
	-webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
	animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing.move .passing-txt {
	-webkit-animation: passing-txt 0s ease 1s 1 normal forwards;
	animation:passing-txt 0s ease 1s 1 normal forwards;
}
.passing .passing-txt span {
    font-size: 1.5rem;
}




/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px) {
 .passing .passing-txt {
	
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.5;   
}
.paper01 .bg_img {
    display: table;
    width: 100%;
    height: 300px;    
}    
}







/*-----紙すき工房流れ01-----*/

.preparation01 {
    margin-bottom: 50px;
    color: #013224;
}
.preparation01 h2 {
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
 }
.accordion {
    text-align: center;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    display: block;
    line-height: 35px;
    border: none;
    cursor: pointer;
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    transition: 0.5s ease-in;
    position: relative;
    padding-left: 10px;
    height: 35px;
    /*margin: 0;
    border-radius: 5px;
    background: #FFF;*/
    margin-bottom: 15px;
    font-weight: 600;
    border: 2px solid #cdecc6;
   
}
.accordion:before {
    text-align: center;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    display: inline-block;
     /*黒丸つける今回は使わない
    width: 35px;
    height: 35px;
    line-height: 35px;*/
    vertical-align: middle;
    text-align: justify;
   font-family: Arial, sans-serif;
    font-size: 21px;
    background: ;
    color: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    
}
.accordion.active {
    margin-bottom: 0;
}
div.panel{
   text-align: justify;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    max-height:0;
    overflow:hidden;
    transition: 0.3s ease-out;
}
.panel p {
    padding: 10px 10px;
    background: #fafafa;
    margin: 0 0 15px;
    position:relative;
    
}
.panel p:before {
    content: "";
    position: absolute;
    left: 15px;
    display: inline-block;
    /*赤丸つける今回は使わない
    width: 35px;
    height: 35px;
    line-height: 35px;*/
    vertical-align: middle;
    text-align: center;
    font-size: 21px;
    background: ;
    color: #fff;
    border-radius: 50%;
}
.acco{
  position:relative;
}
div.accordion:hover{
  background-color: #cdecc6;
}
div.accordion:after {
    content: '\02795';
    font-size: 1rem;
    color: #777;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-46%);
}
div.accordion.active:after {
    content: "\2796";
}
div#imageContainer {
  text-align: center;
  margin-right:auto; 
  margin-left:auto;
  overflow: hidden;
  width: 60%;
  margin-top: -40px; 
  height: auto; 
}

#imageContainer img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    margin-bottom: 20px;
}
.loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3498db;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

.preparation01 {
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    width: 95%;
}
    
    
div#imageContainer {
   width: 100%;
}
.accordion {
    width:100%;
    margin-bottom: -5px;
}
div.panel{
    margin-left:auto;
    min-height: auto;
    text-align: justify;
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    line-height: 1.8em;
}
#imageContainer img {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
}  
}


/*-----紙すき工房流れ02-----*/

.preparation01 {
    margin-bottom: 50px;
    color: #013224;
}
.preparation01 h2 {
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
 }
.accordion02 {
    text-align: center;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    display: block;
    line-height: 35px;
    border: none;
    cursor: pointer;
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    transition: 0.5s ease-in;
    position: relative;
    padding-left: 10px;
    height: 35px;
    /*margin: 0;
    border-radius: 5px;
    background: #FFF;*/
    margin-bottom: 15px;
    font-weight: 600;
    border: 2px solid #cdecc6;
   
}
.accordion02:before {
    text-align: center;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    display: inline-block;
     /*黒丸つける今回は使わない
    width: 35px;
    height: 35px;
    line-height: 35px;*/
    vertical-align: middle;
    text-align: justify;
   font-family: Arial, sans-serif;
    font-size: 21px;
    background: ;
    color: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    
}
.accordion02.active {
    margin-bottom: 0;
}
div.panel{
   text-align: justify;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    max-height:0;
    overflow:hidden;
    transition: 0.3s ease-out;
}
.panel p {
    padding: 10px 10px;
    background: #fafafa;
    margin: 0 0 15px;
    position:relative;
    
}
.panel p:before {
    content: "";
    position: absolute;
    left: 15px;
    display: inline-block;
    /*赤丸つける今回は使わない
    width: 35px;
    height: 35px;
    line-height: 35px;*/
    vertical-align: middle;
    text-align: center;
    font-size: 21px;
    background: ;
    color: #fff;
    border-radius: 50%;
}
.acco{
  position:relative;
}
div.accordion02:hover{
  background-color: #cdecc6;
}
div.accordion02:after {
    content: '\02795';
    font-size: 1rem;
    color: #777;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-46%);
}
div.accordion02.active:after {
    content: "\2796";
}
div#imageContainer02 {
  text-align: center;
  margin-right:auto; 
  margin-left:auto;
  overflow: hidden;
  width: 60%;
  margin-top: -40px; 
  height: auto; 
}

#imageContainer02 img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    margin-bottom: 20px;
}
.loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3498db;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

.preparation01 {
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    width: 95%;
}
    
    
div#imageContainer02 {
   width: 100%;
}
.accordion02 {
    width:100%;
    margin-bottom: -5px;
}
div.panel{
    margin-left:auto;
    min-height: auto;
    text-align: justify;
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    line-height: 1.8em;
}
#imageContainer02 img {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
}  
}     
   



/*-----紙すき工房流れ03-----*/


.preparation01 {
    margin-bottom: 50px;
    color: #013224;
}
.preparation01 h2 {
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
 }
.accordion03 {
    text-align: center;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    display: block;
    line-height: 35px;
    border: none;
    cursor: pointer;
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    transition: 0.5s ease-in;
    position: relative;
    padding-left: 10px;
    height: 35px;
    /*margin: 0;
    border-radius: 5px;
    background: #FFF;*/
    margin-bottom: 15px;
    font-weight: 600;
    border: 2px solid #cdecc6;
   
}
.accordion03:before {
    text-align: center;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    display: inline-block;
     /*黒丸つける今回は使わない
    width: 35px;
    height: 35px;
    line-height: 35px;*/
    vertical-align: middle;
    text-align: justify;
   font-family: Arial, sans-serif;
    font-size: 21px;
    background: ;
    color: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    
}
.accordion03.active {
    margin-bottom: 0;
}
div.panel{
   text-align: justify;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    max-height:0;
    overflow:hidden;
    transition: 0.3s ease-out;
}
.panel p {
    padding: 10px 10px;
    background: #fafafa;
    margin: 0 0 15px;
    position:relative;
    
}
.panel p:before {
    content: "";
    position: absolute;
    left: 15px;
    display: inline-block;
    /*赤丸つける今回は使わない
    width: 35px;
    height: 35px;
    line-height: 35px;*/
    vertical-align: middle;
    text-align: center;
    font-size: 21px;
    background: ;
    color: #fff;
    border-radius: 50%;
}
.acco{
  position:relative;
}
div.accordion03:hover{
  background-color: #cdecc6;
}
div.accordion03:after {
    content: '\02795';
    font-size: 1rem;
    color: #777;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-46%);
}
div.accordion03.active:after {
    content: "\2796";
}
div#imageContainer03 {
  text-align: center;
  margin-right:auto; 
  margin-left:auto;
  overflow: hidden;
  width: 60%;
  margin-top: -40px; 
  height: auto; 
}

#imageContainer03 img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    margin-bottom: 20px;
}
.loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3498db;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

.preparation01 {
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    width: 95%;
}
    
    
div#imageContainer03 {
   width: 100%;
}
.accordion03 {
    width:100%;
    margin-bottom: -5px;
}
div.panel{
    margin-left:auto;
    min-height: auto;
    text-align: justify;
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    line-height: 1.8em;
}
#imageContainer03 img {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
}  
}      
  

/*-----紙すき工房流れ04-----*/


.preparation01 {
    margin-bottom: 50px;
    color: #013224;
}
.preparation01 h2 {
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
 }
.accordion04 {
    text-align: center;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    display: block;
    line-height: 35px;
    border: none;
    cursor: pointer;
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    transition: 0.5s ease-in;
    position: relative;
    padding-left: 10px;
    height: 35px;
    /*margin: 0;
    border-radius: 5px;
    background: #FFF;*/
    margin-bottom: 15px;
    font-weight: 600;
    border: 2px solid #cdecc6;
   
}
.accordion04:before {
    text-align: center;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    display: inline-block;
     /*黒丸つける今回は使わない
    width: 35px;
    height: 35px;
    line-height: 35px;*/
    vertical-align: middle;
    text-align: justify;
   font-family: Arial, sans-serif;
    font-size: 21px;
    background: ;
    color: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    
}
.accordion04.active {
    margin-bottom: 0;
}
div.panel{
   text-align: justify;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    max-height:0;
    overflow:hidden;
    transition: 0.3s ease-out;
}
.panel p {
    padding: 10px 10px;
    background: #fafafa;
    margin: 0 0 15px;
    position:relative;
    
}
.panel p:before {
    content: "";
    position: absolute;
    left: 15px;
    display: inline-block;
    /*赤丸つける今回は使わない
    width: 35px;
    height: 35px;
    line-height: 35px;*/
    vertical-align: middle;
    text-align: center;
    font-size: 21px;
    background: ;
    color: #fff;
    border-radius: 50%;
}
.acco{
  position:relative;
}
div.accordion04:hover{
  background-color: #cdecc6;
}
div.accordion04:after {
    content: '\02795';
    font-size: 1rem;
    color: #777;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-46%);
}
div.accordion04.active:after {
    content: "\2796";
}
div#imageContainer04 {
  text-align: center;
  margin-right:auto; 
  margin-left:auto;
  overflow: hidden;
  width: 60%;
  margin-top: -40px; 
  height: auto; 
}

#imageContainer04 img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    margin-bottom: 20px;
}
.loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3498db;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

.preparation01 {
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    width: 95%;
}
    
    
div#imageContainer04 {
   width: 100%;
}
.accordion04 {
    width:100%;
    margin-bottom: -5px;
}
div.panel{
    margin-left:auto;
    min-height: auto;
    text-align: justify;
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    line-height: 1.8em;
}
#imageContainer04 img {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
}  
}      
  



/*-----紙すき工房流れ05-----*/



.preparation01 {
    margin-bottom: 50px;
    color: #013224;
}
.preparation01 h2 {
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
 }
.accordion05 {
    text-align: center;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    display: block;
    line-height: 35px;
    border: none;
    cursor: pointer;
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    transition: 0.5s ease-in;
    position: relative;
    padding-left: 10px;
    height: 35px;
    /*margin: 0;
    border-radius: 5px;
    background: #FFF;*/
    margin-bottom: 15px;
    font-weight: 600;
    border: 2px solid #cdecc6;
   
}
.accordion05:before {
    text-align: center;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    display: inline-block;
     /*黒丸つける今回は使わない
    width: 35px;
    height: 35px;
    line-height: 35px;*/
    vertical-align: middle;
    text-align: justify;
   font-family: Arial, sans-serif;
    font-size: 21px;
    background: ;
    color: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    
}
.accordion05.active {
    margin-bottom: 0;
}
div.panel{
   text-align: justify;
    width: 60%;
    margin-right:auto; 
    margin-left:auto;
    max-height:0;
    overflow:hidden;
    transition: 0.3s ease-out;
}
.panel p {
    padding: 10px 10px;
    background: #fafafa;
    margin: 0 0 15px;
    position:relative;
    
}
.panel p:before {
    content: "";
    position: absolute;
    left: 15px;
    display: inline-block;
    /*赤丸つける今回は使わない
    width: 35px;
    height: 35px;
    line-height: 35px;*/
    vertical-align: middle;
    text-align: center;
    font-size: 21px;
    background: ;
    color: #fff;
    border-radius: 50%;
}
.acco{
  position:relative;
}
div.accordion05:hover{
  background-color: #cdecc6;
}
div.accordion05:after {
    content: '\02795';
    font-size: 1rem;
    color: #777;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-46%);
}
div.accordion05.active:after {
    content: "\2796";
}
div#imageContainer05 {
  text-align: center;
  margin-right:auto; 
  margin-left:auto;
  overflow: hidden;
  width: 60%;
  margin-top: -40px; 
  height: auto; 
}

#imageContainer05 img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    margin-bottom: 20px;
}
.loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3498db;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px){

.preparation01 {
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    width: 95%;
}
    
    
div#imageContainer05 {
   width: 100%;
}
.accordion05 {
    width:100%;
    margin-bottom: -5px;
}
div.panel{
    margin-left:auto;
    min-height: auto;
    text-align: justify;
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    line-height: 1.8em;
}
#imageContainer05 img {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
}  
}








/* -------------フッター---------------- */
.footer .logo img {
   width: 400px;  
   margin-top: -50px;
} 

.footer ul {
  padding: 0;
  list-style: none;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  color: #e0b254;
}

.footer hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer {
  padding: 2rem;
  font-size: 13px;
  color: #ffffff;
  background: #013224;
  font-family: "Noto Sans JP", serif;  
}

.footer__navi-heading {
  font-weight: 600;
}

.footer__navi li {
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .md-flex {
    display: flex;
}

.md-justify-between {
    justify-content: space-between;
}

.grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.footer .br-sp {
  display: none;
}  
}


    
/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 960px) {
.footer .br-sp {
   display: inline-block;
} 
    
.footer .logo img {
    width: 300px;  
    margin-top: 0px;
    margin-bottom: 30px;
    background-color: #013224;
    margin-left: auto;
    margin-right: auto;
} 
}









/* ---------------TOPページ背景動画代替テキスト --------------- */



.buttonGroup01 a {
    
    position: relative;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    transition: 0.3s ease-in-out;
    z-index: 100;
    
}

.drawer__nav__link01 {
  display: block;
  color: black;
  text-decoration: none;
  padding: 1rem 1rem;
  text-align: justify;
  font-size: 14px; 
  line-height: 1.7em;
  font-weight: 500;
  font-family: "Noto Sans JP", serif; 
  color: #013224; /* ハンバーガーメニューリストの文字色 */  
}
.drawer__nav__link01 span:hover {
 background: #8fbc8f; 
    color: #ffffff;
}


drawer__nav__link01 .img {
   width:100%; 
} 





.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
  white-space: nowrap;
}















/* section18スライダー再生ボタンについて */
.btn {
  width: 50px;  /* 幅を指定 */
  height: 50px;  /* 高さを指定 */
  background-color: #fff;  /* 背景色を指定 */
  border-radius: 50%; /* 角を丸くする */
  position: relative;  /* 基準位置とする */
  cursor: pointer;     /* マウスカーソルを指（👆）の形にする */
  border: solid 2px #013224;

}
.btn::after {
  content: ''; /* 疑似要素に必須 */
  width: 10px;  /* 幅を指定 */
  height: 20px; /* 高さを指定 */
  border-width: 0 4px 0 4px; /*線を左右に指定*/
  border-color: transparent #013224 transparent #013224;  /* 左右に線の色を指定 */
  border-style: solid;  /* 線の種類を指定 */
  position: absolute; /* 相対位置に指定 */
  top: 50%;  /* 上から50%の位置に配置 */
  left: 50%; /* 左から50%の位置に配置 */
  transform: translate(-50%,-50%); /* 要素の半分ぶんだけ左上方向に移動。 */
}
.btn.playback::after {
  width: 0;    /* 幅を0に指定 */
  height: 0;   /* 高さを0に指定 */
  border-width: 10px 0 10px 20px;  /* 線の幅を指定して三角を作る */
  border-color: transparent transparent transparent #013224; 
   /* 左のみ線の色を指定 */
}
.play_button_wrap{
   margin-left: 50px;
	text-align: left;
}


/* スマホサイズ＆タブレットサイズのメディアクエリ */
@media only screen and (max-width: 720px) {
.play_button_wrap{
    bottom: 20px;
	margin-left: 20px;
	text-align: left;
}

}