@charset "UTF-8";
/* ----------------------- */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
}

@font-face {
  font-family: 'playpen';
  src: url('../font/PlaypenSans-SemiBold.woff') format('woff');
  font-weight: 600;
}

@font-face {
  font-family: 'playpen';
  src: url('../font/PlaypenSans-Regular.woff') format('woff');
  font-weight: 400;
}

@font-face {
  font-family: 'kosugimaru';
  src: url('../font/KosugiMaru-Regular.woff') format('woff');
  font-weight: 400;
}

body {
  background-color: #fff;
  color: #111;
  font-size: 1.6rem;
  font-family: "kosugimaru", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  letter-spacing: 0.1em;
}

@media(min-width: 961px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.body-wrap {
  overflow: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  font-size: 16px;
}

/* -------------------------- */
.slick-arrow,.slick-prev,.slick-next {
  display: none;
}
/* nav */
#top-head {
  width: 100%;
  height: 80px;
  background-color: #fff;
  display: flex;
  position: fixed;
  z-index: 998;
  transition: .2s;
}

#top-head .inner {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#g-nav ul {
  display: flex;
  list-style-type: none;
  align-items: center;
}

#g-nav li a {
  padding: 0 20px;
  color: #111;
  text-align: center;
  line-height: 1.2;
}


.g-nav--en {
 font-size: .75em; 
}

.g-nav-link {
  position: relative;
  display: inline-block;
}


.g-nav-link::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  width: 90%;
  height: 2px;
  background: #6c3524;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}

.g-nav-link:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

.g-nav-contact {
  background-color: #111;
  height: 80px;
  display: grid;
  place-items: center;
}

#g-nav .g-nav-contact a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 5px;
  height: 80px;
}

#g-nav .g-nav-contact a .g-nav--en {
  letter-spacing: .55em;
}

.g-nav-contact a img {
  width: 20px;
  margin-bottom: -4px;
}

.g-nav-contact a:hover {
  background-color: #6c3524;
}

.header-logo {
  height: 80%;
  margin: auto 0;
}

.header-logo img {
  height: 100%;
}

.openbtn {
  display: none;
}

.g-nav-logo {
  display: none;
  height: 60px;
}

.g-nav-logo img {
  height: 100%;
}

@media screen and (max-width:768px) {
  #top-head {
    height: 60px;
  }

  #top-head .inner {
    width: 100%;
  }

  .header-logo {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);

  }

  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: all 0.6s;
  }

  #g-nav.panelactive {
    right: 0;
  }

  #g-nav.panelactive .g-nav-logo {
    display: block;
    position: absolute;
    top: 2px;
    left: 10px;

  }

  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }

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

  #g-nav li a {
    text-decoration: none;
    padding: 20px;
    margin: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 100%;
  }

  .g-nav-contact {
    background-color: #6c3524;
    height: auto;
    line-height: 1.6;
  }

  .g-nav-contact a {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .g-nav-contact a img {
    margin-bottom: -1px;
  }

  /* hamburger */
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: inline-block;
    background-color: #6c3524;
  }

  /*×*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background-color: #fff;
    width: 55%;
  }

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

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

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

  .openbtn.active span:nth-of-type(1) {
    top: 22px;
    left: 16px;
    transform: translateY(8px) rotate(-45deg);
    width: 50%;
  }

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

  .openbtn.active span:nth-of-type(3) {
    top: 38px;
    left: 16px;
    transform: translateY(-8px) rotate(45deg);
    width: 50%;
  }

}

/* ---/nav */

/* animation */
/* アニメーション */
 
/* fadeIn */
.fadeIn{
  animation-name: fadeInAnime;
  animation-duration:1.3s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  /* fadeUp */
  
  .fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:.8s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }

  
/* fadeDown */

.fadeDown{
  animation-name: fadeDownAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeDownAnime{
    from {
      opacity: 0;
    transform: translateY(-100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
  /* fadeLeft */
  
  .fadeLeft{
  animation-name: fadeLeftAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeLeftAnime{
    from {
      opacity: 0;
    transform: translateX(-100px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
  /* fadeRight */
  
  .fadeRight{
  animation-name: fadeRightAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeRightAnime{
    from {
      opacity: 0;
    transform: translateX(100px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}

.delay02 {
  animation-delay: .2s;
}

.delay04 {
  animation-delay: .4s;
}

.delay06 {
  animation-delay: .6s;
}

.delay08 {
  animation-delay: .8s;
}

.delay10 {
  animation-delay: 1s;
}

/* ---/アニメーション */

/* scrolldown */
.scrolldown1{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
right:80px;
bottom:10px;
  /*全体の高さ*/
height:100px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
  /*描画位置*/
position: absolute;
left:-20px;
top: 50%;
  /*テキストの形状*/
color: #eee;
font-size: 2rem;
font-family: 'playpen', cursive;
font-weight: 600;
transform: translateY(-50%) rotate(90deg);
letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
content: "";
  /*描画位置*/
position: absolute;
top: 0;
  /*線の形状*/
width: 2px;
height: 100px;
background: #fff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
animation: pathmove 1.4s ease-in-out infinite;
opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
0%{
  height:0;
  top:0;
  opacity: 0;
}
30%{
  height:50px;
  opacity: 1;
}
100%{
  height:0;
  top:100px;
  opacity: 0;
}
}

@media screen and (max-width:1366px) {
  .scrolldown1{
    right:60px;
    bottom:-50px;
    }
}

@media screen and (max-width:599px) {
  .scrolldown1{
  right:60px;
  bottom:-10px;
  }
}

@media screen and (max-width:375px) {
  .scrolldown1{
  bottom:20px;
  }
}

/* top */
.mv {
  width: 100%;
  padding-top: 80px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  height: 93vh;
}

.mv__img {
  width: 100%;
}

.mv__img img {
  width: 100%;
  filter: brightness(95%);
}

.mv-catch {
  position: absolute;
  top: 74%;
  left: 7%;
  transform: translateY(-50%);
  font-size: 5rem;
  color: #111;
  font-weight: 600;
}

.mv-catch>.mv-catch-ch {
background-color: #fff;
padding: 5px 10px;
margin: 10px;
}

.mv-catch--en {
  position:absolute;
  top: 40%;
  left: 7%;
  transform: translateY(-50%);
  font-size: 9rem;
  font-family: 'playpen', cursive;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

.pink {
  color: #ea5550;
}

@media screen and (max-width:1366px) {

  .mv {
    height: 95vh;
  }
  
.mv-catch {
  top: 74%;
  left: 7%;
  font-size: 3.7vw;
}

.mv-catch--en {
  top: 37%;
  left: 7%;
  font-size: 5.7vw;
}

}

@media screen and (max-width:1100px) {
  .mv-catch {
    font-size: 4vw;
  }

  .mv-catch--en {
    font-size: 6vw;
    
  }
}

@media screen and (max-width:768px) {
  .mv {
    padding-top: 60px;
    height: 82vh;
  }


  .mv-catch--en {
    font-size: 9vw;  
    top: 66%;
    left: 7%;
  }

  .mv-catch {
    font-size: 7vw;
    top: 85%;
    left: 5%;
  }
}

@media screen and (max-width:375px) {
  .mv {
    height: 92vh;
  }


  .mv-catch--en {
    font-size: 9vw;  
    top: 66%;
    left: 7%;
  }

  .mv-catch {
    font-size: 7vw;
    top: 87%;
    left: 5%;
  }
}


/* 下層 */

.sub-v {
  width: 100%;
  padding-top: 80px;
  padding-left: 20px;
  padding-right: 20px;
}

.sub-v__img {
  width: 100%;
  position: relative;
  height: 300px;
}
/* ページごとに下層ページトップ画像変更 */
.sub-v--product {
  background: url(../img/sub_v_product.jpg)no-repeat;
  background-position: center;
  background-size: cover;
}
.sub-v--company {
  background: url(../img/sub_v_company02.jpg)no-repeat;
  background-position: center;
  background-size: cover;
}
.sub-v--recruit {
  background: url(../img/sub_v_recruit.jpg)no-repeat;
  background-position: center;
  background-size: cover;
}
.sub-v--contact {
  background: url(../img/sub_v_contact.jpg)no-repeat;
  background-position: center;
  background-size: cover;
}

.sub-v__img::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(44, 44, 44, 0.25);
  width: 100%;
  height: 100%;
}

.sub-v__img img {
  width: 100%;
}

.sub-v-catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 5rem;
  color: #fff;
  font-weight: 600;  
  /* text-shadow: 2px 3px 3px rgba(0, 0, 0, .5), -1px -2px 3px rgba(0, 0, 0, .5); */
  z-index: 5;
  width: 100%;
  text-align: center;
}

@media screen and (max-width:1100px) {
  .sub-v-catch {
    font-size: 4vw;
  }
}

@media screen and (max-width:768px) {
  .sub-v {
    padding-top: 60px;
  }

  .sub-v-catch {
    font-size: 6.6vw;
  }

  .sub-v__img {
    height: 200px;
  }

  .sub-v__img img {
    filter: brightness(93%);
  }
}

@media screen and (max-width:599px) {
  
  .sub-v-catch {
    font-size: 8vw;
  }

}

/* 共通 */
/* 共通 */

main {
  padding-left: 20px;
  padding-right: 20px;
}

section {
  padding: 100px 0px;
  width: 100%;
}

@media screen and (max-width:768px) {

  main {
    padding-left: 0px;
    padding-right: 0px;
  }
  section {
    padding: 100px 10px;
    width: 100%;
  }
}
.p-rel {
  position: relative;
}
/* backgroundのパララックスオブジェクト */
.bg-object {
  position: absolute;
  width: 150px;
  z-index: -2;
}

.bg-object-position01 {
  bottom: 7%;
  right: 5%;
}

.bg-object-position02 {
  bottom: 0%;
  right: 10%;
}

.bg-object-position03 {
  bottom: 5%;
  left: 10%;
}

.bg-object-position04 {
  bottom: -40%;
  left: 20%;
}

.bg-object img {
  width: 100%;
  opacity: .7;

}

@media screen and (max-width:599px) {
  .bg-object {
    width: 100px;
  }
}

/* backgroundのパララックスオブジェクトここまで */


/* @media screen and (max-width:480px) {
  .pallax-img__box {
    padding-top: 450px;
  }
} */

/* @media screen and (max-width:428px) {
  .pallax-img__box {
    padding-top: 500px;
  }
} */

/* パララックス画像のボックスにつけるクラス */
/* .pallax-adj {
  margin-top: -300px;
} */


.container--wide {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

.container--wide--left {
  max-width: 1500px;
  margin: 0 auto 0 0;
  width: 90%;
}

.container--wide--right {
  max-width: 1500px;
  margin: 0 0 0 auto;
  width: 90%;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  width: 95%;
}


.container--wide--90 {
  max-width: 1500px;
  margin: 0 auto;
  width: 90%;
}


.bg-white {
  background-color: #fff;
}

.mt-150 {
  margin-top: 150px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-30 {
  margin-top: 30px;
}

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

.centering {
  margin: 20px ;
  text-align: center;
}

.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left;
}

/*右側へ要素を広げる（1カラム）*/
.outside-right{
  margin-right: calc(50% - 50vw);
}

/*左側へ要素を広げる（1カラム）*/
.outside-left{
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width:768px) {
  .container--wide,
  .container--wide--left,
  .container--wide--right
   {
    padding:20px;
  }
  .outside-right{
    margin-right:auto;
    margin-left: auto;
  }
  
  /*左側へ要素を広げる（1カラム）*/
  .outside-left{
    margin-right:auto;
    margin-left: auto;
  }

  .container--wide--90 {
    width: 100%;
    padding: 20px;
  }
}

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

.flex-b-top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}

.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}


.flex-txt {
  width: 40%;
}

.flex-img {
  width: 50%;
}

.flex-img--line {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: start;
}

.flex-img img {
  width: 100%;
}


@media screen and (max-width:768px) {
  .flex-b {
    flex-direction: column;
    margin: 0 auto;
  }

  .flex-b-top {
    flex-direction: column;
    margin: 0 auto;
  }

  .flex-txt {
    width: 100%;
  }
  
.flex-img {
  width: 100%;
}

.fd-cr {
  flex-direction: column-reverse;
}

}



.section-ttl--vr {
  text-align: center;
  font-size: 4.4rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 100px;
  }
  
  .section-ttl--vr::after {
    display: block;
    content: "";
    position:absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    background-color: #6c3524;
  }
  
  @media screen and (max-width:768px) {
    .section-ttl--vr {
      font-size: 2.8rem;
    }
  }

  .section-ttl {
    font-size: 4.4rem;
  }

  .section-ttl--en {
    display: block;
    font-size: 2.6rem;
    position: relative;
    max-width: 160px;
    margin: 5px 0 20px;
  }

  .section-ttl--en::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform:translateY(-50%);
    width: 50px;
    height: 3px;
    background-color: #6c3524;
  }

  .section-ttl--en--right {
    margin-left: auto;
    margin-right: 0;
  }

  .section-ttl--en--left {
    display: block;
    font-size: 2.6rem;
    position: relative;
    max-width: 160px;
    margin: 5px 0 20px;
  }
  

  .section-ttl--en--left::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: -40px;
    transform:translateY(-50%);
    width: 50px;
    height: 3px;
    background-color: #6c3524;
  }
  
  .section-ttl--sub {
    font-size: 2.6rem;
    font-family: 'playpen',cursive;
  }

  @media screen and (max-width:768px) {
    .section-ttl {
      font-size: 2.8rem;
    }

    .section-ttl--en,
  .section-ttl--en--left {
    font-size: 1.8rem;
    max-width: 140px;
  }

  .section-ttl--en::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    transform:translateY(-50%);
    width: 40px;
    height: 2px;
  }

  .section-ttl--en--left::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform:translateY(-50%);
    width: 40px;
    height: 2px;
  }

  .section-ttl--sub {
    font-size: 1.8rem;
  }
  
  }


/* button */
.btn-wrap {
  margin: 50px 0;
  text-align: center;
}
a.btn_17 {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	position: relative;
	width: 220px;
	margin: auto;
	padding: 1.3rem 4rem 1.3rem 3rem;
	font-weight: bold;
	color: #6c3524;
	background: #d0b7af;
	transition: 0.3s ease-in-out;
}
a.btn_17::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #6c3524;
  transition: 0.2s;
}
a.btn_17:hover {
	background: #6c3524;
	color: #fff;
}
a.btn_17:hover::before {
  top: 0;
  left: 0;
}
/* button end */

.button--left {
  margin: 50px auto 50px 0;
  text-align: left;
}

.button--right {
  margin: 50px 0 50px auto;
  text-align: right;
}

/* 会社概要まほろば行くボタン */
.btn15{
  position: relative;
  color: #111;
  text-decoration: underline;
}

.btn15::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: url(../img/tab-arrow.svg)no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}

@media screen and (max-width:768px) { 
.button--left,
.button--right {
  margin: 50px auto;
}
}

/* .card */

.shadow {
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.35));
}
.card__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin: 50px auto;
}

.card {
  background-color: #fff;
  width: 300px;
}

.card dt {
  text-align: center;
}

.card__ttl {
  text-align: left;
  font-size: 1.8rem;
}

.card__img {
  width: 100%;
}

.card__detail {
  padding: 20px;
}

.card__detail__list li {
  list-style-type: disc;
  margin-left: 20px;
}



/* .card__txt {
} */


.g-footer {
  width: 100%;
  height: auto;
  padding: 50px 0 10px;
  background-color: #111;
  color: #fff;
}

.g-footer-logo {
  width: 240px;
}

.g-footer-logo img {
  width: 100%;
}

.g-footer p {
  margin: 20px 0;
}

.g-footer-nav {
  width: 50%;
}

.g-footer-nav a {
  color: #fff;
}

.copyrigiht {
  display: block;
  font-size: 1.3rem;
  text-align: center;
}

@media screen and (max-width:768px) {
  .g-footer {
    height: auto;
    padding: 50px 0 10px;
  }

  /* .g-footer-nav  {
    flex-direction: row;
  } */

  .g-footer-nav {
    width: 100%;
  }

  .g-footer-nav li {
    margin:20px auto;
  }

.g-footer-logo {
    margin: 0 auto;
  }
}
/* ---/共通 */

/* section.message */

.message {
  background: url(../img/top_message_img.jpg)no-repeat;
  background-position: 100% center;
  background-size: 63%;
  padding-top: 200px;
}

.message__txt--vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

/* .suuji-tate {
  text-combine-upright: all;
  text-align: center;
  font-size: 1.1em;
} */

.message .message__txt--vertical {
  width: 80%;
  max-width: 350px;
  margin: 50px auto 50px 9vw;
  white-space: nowrap;
}

.message__txt--vertical h3 {
  font-size: 3rem;
  margin: 0 50px;
  /* text-shadow: #fff -1px 2px 1px; */
}

/* .message .message__txt--vertical h3 {
  white-space: nowrap;
} */

.message__txt {
  text-align: center;
}

.message__txt h3 {
  margin: 10px 0;
  font-size: 2rem;
}



@media screen and (max-width:768px) {

.message {
  background: url(../img/top_message_img.jpg)no-repeat;
  background-position: center 100%;
  background-size: 90%;
  padding-top: 100px;
  padding-bottom: 200px;
}


  .message__txt {
    text-align: left;
  }

  .message__txt--vertical h3 {
    font-size: 2.6rem;
    margin: 0 30px 0 20px;
  }

  .message .message__txt--vertical {
    margin: 50px auto ;
    width: 100%;
  }
}

/* top-service */
/* .top-service {
  background-color:#111 ;
} */

/* パララックス画像のボックスにつけるクラス */
.top-service__img {
  background: url(../img/top-service_img.jpg)no-repeat;
  background-size: cover;
  height: 500px;
}

/* #top-service__img {
  background: url(../img/top-service_img.jpg)no-repeat;
  background-size: cover;
  background-position: center;
  height: 600px;
} */

/* top-product */
.top-product {
  margin-bottom: 200px ;
}

.Slider {
  width: 100%;
}

.Slider .slider_item {
  margin: 0 10px;
}

.slider_item img {
  width: 100%;
}

.c_Slider .slider_item {
  margin: 0 10px;
}

.c_Slider .slider_item img {
  width: 100%;
}

/* top-company */

.top-company__img {
  background: url(../img/top-company_img.jpg)no-repeat;
  background-size: cover;
  height: 500px;
}

.top-company  .js-rellax-1 {
  position:absolute;
  top: 150%;
  left: -47%;
  width: 100%;
}

.bg-txt--v-rl {
font-size: 10rem;
font-family: 'playpen', cursive;
width: 100%;
transform:  rotate(90deg);
white-space: nowrap;
}

@media screen and (max-width:768px) {
  .top-company  .js-rellax-1 {
    position:absolute;
    top: 40%;
    left: -42%;
    width: 100%;
  }
  .bg-txt--v-rl {
    font-size: 7rem;
    font-family: 'playpen', cursive;
    width: 100%;
    transform:  rotate(90deg);
    white-space: nowrap;
    }
}

/* top-recruit */

.top-recruit__img {
  background: url(../img/top-recruit_bg.jpg)no-repeat;
  background-size: cover;
  height: 700px;
  z-index: -1;
}

.top-recruit-ttl {
  position: absolute;
  top: 45%;
  right: 8%;
  transform: translateY(-50%);
  font-size: 4.4rem;
  text-align: right;
}

.top-recruit-button {
  position:absolute;
  top: 80%;
  right: 15%;
  transform: translateY(-50%);
  z-index: 11;
}

@media screen and (max-width:768px) {
  .top-recruit__img {
    background: url(../img/top-recruit_bg.jpg)no-repeat;
    background-size: cover;
    height: 900px;
    z-index: -1;
  }
.top-recruit-ttl {
  position: absolute;
  top: 37%;
  left: 8%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  text-align: left;
}


.top-recruit-button {
  position:absolute;
  top: 83%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 11;
}
}

/* 下層ページ */
/* .product {

} */

.product__link {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 50px auto;
  flex-wrap: wrap;
  max-width: 1000px;
}

.product__link__button {
  background-color: #e1e7e8;
  box-shadow:  0px 1px 1px 0px rgba(0, 0, 0, 0.5), inset 0px -1px 6px -2px rgba(0, 0, 0, 0.3);
  width: 300px;
  text-align: center;
}

.product__link__button a {
  display: block;
  padding: 20px 15px;
  color: #111;
  font-size: 1.8rem;
  position: relative;
}

.product__link__button a::after {
  display: block;
  content: "";
  border-bottom: 1px #111 solid ;
  border-right: 1px #111 solid ;
  width: 10px;
  height: 10px;
position:absolute;
bottom: 13px;
left: 50%;
transform: translateX(-50%) rotate(45deg);
transition: .2s all;
}

.product__link__button:hover {
  background-color: #d0b7af;
}

.product__link__button:hover a::after {
  bottom: 8px;
}

@media screen and (max-width:768px) {
  .product__link {
    justify-content: center;
  }

  .product__link__button {
    width: 200px;
  }

  .product__link__button a {
    display: block;
    color: #111;
    font-size: 1.6rem;
    position: relative;
  }
}

@media screen and (max-width:480px) {
  
  .product__link__button {
    width: 100%;
  }

}

/* パララックス画像のボックスにつけるクラス */
/* .transferSheet_img {
  background: url(../img/transferSheet_img.jpg)no-repeat;
  background-size: cover;
  height: 300px;
}
.marzipanPlate_img {
  background: url(../img/marzipanPlate_img.jpg)no-repeat;
  background-size: cover;
  height: 300px;
}
.neatFlower_img {
  background: url(../img/neatFlower_img.jpg)no-repeat;
  background-size: cover;
  height: 300px;
}
.arugely_img {
  background: url(../img/arugely_img.jpg)no-repeat;
  background-size: cover;
  height: 300px;
}
.case_img {
  background: url(../img/case_img.jpg)no-repeat;
  background-size: cover;
  height: 300px;
} */

@media screen and (max-width:768px) {
  .product__link {
    gap: 10px;
  }
}
/* company */
.company,
.company-profile {
  padding-left: 20px;
  padding-right: 20px;
}


.company .flex-img--line img:nth-child(2) {
  margin-top: 170px;
}

.company-catch .h3 {
  font-size: 2rem;
  margin: 130px 0 70px;
  text-align: center;
}


@media screen and (max-width:768px) {
  .company,
.company-profile {
  padding-left: 0;
  padding-right: 0;
}

.company-catch .h3 {
text-align: center;
}


}


/* table01 */

#table01 {
  border-collapse: collapse;
  width: 60%;
}
#table01 tr {
  border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
  padding: 24px 0;
  border: none;
}

#table01 th {
  width: 30%;
  text-align: left;
}

@media screen and (max-width:768px) {
  #table01 {
    width: 100%;
  }
}


/* recruit */
.container--recruit {
  max-width: 1000px;
  margin: 0 auto;
  width: 95%;
}

.recruit .message__txt p {
  margin: 10px 0;
  font-size: 2rem;
  font-weight: 600;
}
/* 募集要項テーブル */

.recruit-table {
  margin: 0 auto;
}


.recruit-table-bg {
  background-color: #EEE;
  padding: 50px;
  margin: 30px 0;
}

  .recruit-table th,
  .recruit-table td {
  border: 1px solid #ccc;
  padding: 20px;
  }
  
  .recruit-table th {
  font-weight: bold;
  background-color: #dedede; 
  width: 30%;
  }
  .recruit-table td {
  background-color: #fff; 
  }
  
  @media screen and (max-width: 767px) {

    .recruit-title {
      width: 100%;
      font-size: 2.5rem;
    }

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

    .recruit-table-bg {
      padding: 20px;
    }


  .recruit-table,
  .recruit-table tr,
  .recruit-table td,
  .recruit-table th {display:block;}
  .recruit-table th {width:100%;}
  }

  
/* sp */
@media only screen and (max-width: 480px) {
  #table01 th,
  #table01 td {
    width: 100%;
    display: block;
  }

  #table01 th {
    width: 100%;
  }

  #table01 td {
    padding-top: 0;
  }
}

/* map */
.map {
  width: 100%;
  margin-top: 50px;
}

.map iframe {
  width: 100%;
  aspect-ratio: 3/1;
}

@media screen and (max-width:1200px) {
  .map iframe {
    aspect-ratio: 2/1;
  }
}

@media screen and (max-width:768px) {
  .map iframe {
    aspect-ratio: 1/1;
  }
}



/* contact */
  
.contact .message__txt p {
  margin: 10px 0;
  font-size: 2rem;
  font-weight: 600;
}

#formWrap {
  width: 100%;
  margin: 0 auto;
  line-height: 120%;
  font-size: 90%;
  text-align: left;
}

table.formTable {
  width: 100%;
  margin: 0 auto 20px;
  border-collapse: collapse;
}


table.formTable td, table.formTable th {
  /* border:1px solid #ccc; */
  padding: 7px;
  border: solid 1px #e0e0e0;
}

table.formTable td {
  background-color: rgba(255,255,255,.8);
}


table.formTable th {
  width: 40%;
  font-weight: 600;
  /* background:#4ba8de; */
  color: #120d0b;
  vertical-align: middle;
  text-align: left;
  background-color:#f4f4f4;
  padding-left: 15px;
}


.formTable .caution-text {
  color: red;
  font-size: 1.1rem;
}

.under-line {
  text-decoration: underline;
}


table.formTable textarea {
  width: 100%;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  background-color: #fff;
}


.contact-button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸    */
  font-weight: 700;
  font-size: 16px;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 12px 12px;
  /* 余白       */
background-color: #6c3524;/* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 2px 2px 0px #dcdddd;
  /* 影の設定 */
  /* 枠の指定 */
  width: 100%;
  max-width: 150px;
  border: #6c3524 solid 2px;
}

.contact-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #6c3524 ;
  /* 背景色     */
  background: #ffffff;
  border:#6c3524 solid 2px;
  /* 文字色     */
}

.reset-button {
  background: #fff;
  /* 背景色     */
  color: #6c3524;
  /* 文字色     */
}

.reset-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #fff;
  /* 背景色     */
  background: #6c3524;
  /* 文字色     */
}


.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-wrapper input {
  margin-bottom: 20px;
}


.m-form-text {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.m-form-text:hover,
.m-form-textarea:hover {
  background-color: rgba(33, 150, 243,.1) ;
}

.m-form-text:focus,
.m-form-textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}



.button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸       */
  font-size: 12pt;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 10px 25px;
  /* 余白       */
  background: #333333;
  /* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 1px 1px #666666;
  /* 影の設定 */
  border: 1px solid #333333;
  /* 枠の指定 */
}

.button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #333333;
  /* 背景色     */
  background: #ffffff;
  /* 文字色     */
}

/* ラジオボタン */
input[type="radio"] {
  margin-left: 20px;
}
.radio-box-p {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
}
@media screen and (max-width:768px) {
  .radio-box-p {
    display:block;
  }
}

/* セレクト */
select {
  padding: 5px 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  color: #555;
}

/* カレンダー選択 */
input[type="date"] {
  width: 150px;
  position: relative;
  height: 2.4em;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 5px 20px 5px 0;
}
input[type="date"]::-webkit-inner-spin-button {
  appearance: none;
}
input[type="date"]::-webkit-clear-button {
  appearance: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type="date"]:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
.form-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  width: 70%;
  max-width: 250px;
  margin: 0 0 auto 0;
}

.select-box{
  width: 150px;
  height: 2.4em;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 5px 20px 5px 0;
}
.select-box select {
  text-align: center;
}



@media screen and (max-width:599px) {

  .form-container {
    width: 100%;
    max-width: none;
    margin: 30px auto;
  }

  #formWrap {
    width: 95%;
    margin: 0 auto;
  }

  table.formTable th, table.formTable td {
    width: auto;
    display: block;
  }

  table.formTable th {
    border-bottom: 0;
    padding: 10px;
    
  }

  input[type="text"], textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  input[type="submit"], input[type="reset"], input[type="button"] {
    /* display:block; */
    height: 40px;
  }

}

@media screen and (min-width:901px) {
  .form-sp {
    display: none;
  }
}

@media screen and (max-width:900px) {
  .form-sp {
    display: block;
  }
}


/* ----レスポンシブ切替---- */

@media screen and (min-width:769px) {
  .sp {
    display: none !important;
  }

  .pc {
    display: block !important;
  }
}

@media screen and (max-width:768px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

.in {
  display: inline-block;
}

.small {
  font-size: .8em;
  display: block;
  text-align: center;
}

/* -------/レスポンシブ切替---- */