@charset "utf-8";
/*
Theme Name: サイトタイトル
Theme URI:
Description:
Author:
Version: 1.0
License:
License URI:
Tags:
*/
/*-----------------------------------------------------
@@ Reset
------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap : break-word;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  /*overflow-x: hidden;*/
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  max-width: 100%;
}
:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

/* For modern browsers */
.clearfix:before,.clearfix:after,.cf:before,.cf:after{
  content:"";
  display:table;
}
.clearfix:after,.cf:after{clear:both;}
.clearfix,.cf{zoom:1;}/* For IE 6/7 (trigger hasLayout) */

ul{
  padding: 0;
}

/*-----------------------------------------------------
@@ 基本
------------------------------------------------------*/
:root {
  --primary-color: #ffff00;
  --text-color: #333;
  --form-border: #777777;
}
a{
  color: #0066cc;
  text-decoration: underline;
  transition-duration: 0.3s;
}


html{
  color: #333333;
  background: white;
  block-size: 100%;
  -webkit-text-size-adjust: none;
}
body{
  /*text-align: center;*/
  font-size: 16px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', 'メイリオ', sans-serif;
  background-color: white;
  overflow-y: scroll;
}

@media screen and (max-width: 767.9px) {/* @@ sm xs 767px以下(スマホ) */
  #layer {
      position: fixed;
      /*z-index: 500;*/
      background: #000000;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      filter: alpha(opacity=0);
      opacity: 0.0;
      display: none;
  }
}

/*-----------------------------------------------------
@@ ヘッダ <!-- スマホメニュー -->
------------------------------------------------------*/
@media screen and (min-width: 768px) {

  header#page-header{
    width: min(100% - 20px, 1000px);
    margin-inline: auto;
    position: relative;
  }

  header#page-header h1{
  }
  header#page-header h1 a{
  }
  header#page-header h1 a:hover{
  }

}/* PC ここまで */

@media screen and (max-width: 767.9px) {/* スマホ */

  .wrap-header{
  }
  header#page-header{
    margin-inline: auto;
    position: relative;

    z-index: 900;
    border-bottom: 3px solid #035089;
  }

  header#page-header h1 {
  }
  header#page-header h1 a{
  }

}/* スマホ ここまで */

/*-----------------------------------------------------
@@ ヘッダメニュー <!-- スマホメニュー -->
------------------------------------------------------*/
@media screen and (min-width: 768px) {

  .wrap-headermenu{
    background-color: #005696;
  }
  #headermenu{
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }

  #headermenu-btn{display: none;}

  ul.headermenu-list{
    font-size: 0;
    height: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    border-right: 1px solid white;
  }
  ul.headermenu-list > li{
    flex: 1;
    font-size: 16px;
    display: block;
    list-style-type: none;
    border-left: 1px solid white;
  }
  ul.headermenu-list > li > a{
    display: block;
    line-height: 40px;
    text-align: center;
    color: white;
    text-decoration: none;
  }
  ul.headermenu-list > li > a:hover{
    text-shadow: 0 0 10px yellow;
  }

}/* PC ここまで */

@media screen and (max-width: 767.9px) {

  .wrap-headermenu{
    position: relative;
  }

  #headermenu-btn{
    display: block;
    width: 50px;/*★*/
    height: 50px;/*★*/
    position: absolute;
    top: -80px;
    right: 5px;
    background-color: white;
    border: 2px solid #a0a0a0;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    z-index: 1000;
  }
  #headermenu-btn span {
    position: absolute;
    display: block;
    width: 70%;
    height: 5px;
    border-radius: 2px;
    background-color: #666;
    left: 0;
    right: 0;
    margin: auto;
    transition: all .3s;
  }
  #headermenu-btn span:first-child {
    top: 22%;
  }
  #headermenu-btn span:nth-child(2) {
    top: 0;
    bottom: 0;
    opacity: 1;
  }
  #headermenu-btn span:nth-child(3) {
    bottom: 22%;
  }
  #headermenu-btn.clicked span:first-child {
    transform: rotate(45deg);/*★*/
    top: 45%;
  }
    #headermenu-btn.clicked span:nth-child(2) {
    opacity: 0;
  }
  #headermenu-btn.clicked span:nth-child(3) {
    transform: rotate(-45deg);/*★*/
    bottom: 46%;
  }

  #headermenu{
    display: none;  /* 最初は非表示 */
    z-index: 1000;
    position: absolute;
    width: 100%;
    background-color: white;
    padding: 1em 0.5em;
    border-bottom: 1px solid #333;
  }

  .headermenu-list{
    font-size: 0;
    list-style-type: none;
    /*width: 320px;*/
    margin: 30px 0;
  }
  .headermenu-list > li{
    font-size: 16px;
    line-height: 1.25;
    border-top: 1px dotted #707070;
    text-align: left;
  }
  .headermenu-list > li:last-child{
    border-bottom: 1px dotted #707070;
  }
  .headermenu-list > li > a{
    display: block;
    padding: 0.5em 1.75em 0.5em 0.5em;
    text-decoration: none;
    color: #333;
    background-color: white;
    position: relative;
  }
  .headermenu-list > li > a:hover{
    background-color: #ccc;
  }
  .headermenu-list > li > a:before{
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 3px solid #999;
    border-right: 3px solid #999;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.75em;
    margin: auto;
    transition-duration:0.3s;
  }
  .headermenu-list > li > a:hover:before{
    right: 0.6em;
  }


}/* スマホ ここまで */


/*-----------------------------------------------------
@@ メイン
------------------------------------------------------*/
.contents{
  margin-inline: auto;
  text-align: left;
}
@media screen and (min-width: 768px) {

  .wrap-contents{
    width: min(1000px);
  }
  .contents{
    padding: 0 0 0 0;
  }

}/* PC ここまで================================ */


/*-----------------------------------------------------
@@ 段落
------------------------------------------------------*/
p{
  line-height: 1.5;
  margin-bottom: 1em;
}


@media screen and (min-width: 768px) {
  .sp, .smp{display: none !important;}
}
@media screen and (max-width: 767.9px) {
  .pc{display: none !important;}
}






.mainmess{

  text-align : center;
  font-size : 110%;
  font-weight: bold;
  line-height : 2;
  margin : 0 auto;

}
.mainmess h1{
  color : #aacc08;
  font-size : 120%;
  margin-bottom: 10px;
}
.anshinmess h1 , .dx-mess span{
  color : #aacc08;
  letter-spacing : 0.2em;
  font-weight: bold;
}
.anshinmess h1{
  font-size : 110%;
}
.dx-mess span{
  font-size : 120%;
}


.anshinmess{
  text-align : center;
  line-height : 1.8;
}


.contents-inner h2{
  background:#aacc08;
  color : #ffffff;
  font-size : 120%;
  text-align: center;
  padding : 4px 0;
  letter-spacing : 0.3em;
}


.infotable , .infotable2{
  border-collapse: collapse;
  vertical-align:middle;
  width: 100%;
}
.infotable th , .infotable td , .infotable2 th , .infotable2 td{
  font-weight: normal;
  letter-spacing : 0.1em;
}

.infotable th , .infotable2 th{
  background:#eef5d6;
}
.infotable td , .infotable2 td{
  background:#eeeeee;
}

/*	●●●●●●●●●●	*/

/* PC ここから-------------------------------- */
@media (min-width: 768px) {
	.smp , .sp{display:none;}

  .wrap-header img{
    height : 110px;
  }
  .mainmess{
    background:url(./image/bg.jpg) no-repeat;
    background-size:100%;    letter-spacing : 0.4em;
    width : 1000px;
    letter-spacing : 0.4em;
    padding : 145px 0;
    margin : 0 auto;
  }

  .contents-inner , .contents-inner2 , .contents-inner3{
    width : 800px;
  }

  .contents-inner{
    margin : 0 auto 150px auto;
  }

  
  .contents-inner2{
    margin : -150px auto 0 auto;
  }

  
  .contents-inner3{
    margin : 150px auto;
  }



  .contents-inner h2{
    margin-bottom: 50px;
  }

  .recruith2{
    margin-bottom: 2px !important;

  }


  .infotable th , .infotable td , .infotable2 th , .infotable2 td{
    border-bottom: 2px solid #ffffff;
  }
  .infotable th{
    background:#eef5d6;
    width : 22%;
    border-right: 2px solid #ffffff;
  }
  .infotable2 th{
    background:#eef5d6;
    width : 30%;
    border-right: 2px solid #ffffff;
  }

  .shopinfo , .recruitinfo{
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .shopinfo div{
    text-align: center;
    width: 240px;
    margin-bottom: 25px;
  }
  .shopinfo img{
    margin-bottom: 7px;
  }
  .dx{
    margin-top: 50px;
  }
  .dx img{
    width: 460px;
    position: relative;
  }
  .dx-mess{
    width : 360px;
    height : 170px;
    background:rgba(255,255,255,0.9);
    position: relative;

    box-shadow: 4px 4px 4px #c8c8c8;
    padding : 30px 25px;
  }
  .dx-right img{
    float : right;
  }

  .dx-right{
    margin-top : -120px;
  }

  .dx-left .dx-mess{
    top : -190px;
    left : 400px;
  }



  .dx-right .dx-mess{
    top : 135px;
    left : 45px;
  }

  .bt-icon-map{
    margin : 40px auto;
    width : 301px;
  }


  .bt-icon-map img{
    width : 100%;
  
  }

  .recruitinfo-img{
    margin-bottom: 30px;
  }
  .recruitinfo img{
    width : 385px;
    margin : 15px 0;
  }

  .infotable th , .infotable td , .infotable2 th , .infotable2 td{
    padding : 12px 15px;
  }
  .saigaimess{
    margin : -120px 0 0 0;
    padding-bottom: 100px;
  }


}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {
	.pc{display:none;}

  .wrap-content{
    padding-bottom: 50px;
  }

  .wrap-header{
    width: 100%;
  }
  .wrap-header img{
    width : 45%;
    margin-left : 15px;
  }

  .infotable th , .infotable td , .infotable2 th , .infotable2 td{
    padding : 12px 20px;
    display: block;
  }
  .mainmess{
    background:url(./image/bg_smp.jpg) no-repeat;
    background-size:100%;    width :100%;
    letter-spacing : 0.1em;
  }
  .mainmess h1{
    margin-top : 20px;
  }

  .contents-inner{
    margin-top : 50px;
  }
  .shopinfo , .recruitinfo{
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .recruitinfo{
    width:100%;
  }
  .shopinfo{
    width:96%;
    margin : 5px auto;
  }

  .shopinfo div{
    width : 49%;
    margin-bottom: 15px;
    text-align: center;
  }

  .anshinmess{
    margin : 15px 0;
  }

  .dx-mess{
    padding : 4px 15px 15px 15px;
  }

  .bt-icon-map{
    width : 60%;
    margin : 15px auto 0 auto;
  }

  .recruitinfo{
    width : 90%;
    margin : 15px auto;
  }
  .recruitinfo img{
    margin : 10px 0;
  }




  .saigaimess{
    margin : 20px;
  }


}
/* スマホ ここまで-------------------------------- */





/* ●●●●●●●●●●  ここまで */
iframe {
  width: 100%;
  aspect-ratio: 16/6; //アスペクト比（縦横比）を指定
}



footer{
  text-align: center;
  font-size : 90%;
  padding : 10px 0;
}




input[type="text"] ,input[type="email"] ,input[type="tel"] , textarea {
	padding : 5px 10px;
  width : 90%;
  border-radius: 4px;
  border : 1px solid #aacc08;
}


.bt-wrap{
  margin : 30px auto 100px auto;
  width : 50%;
}
.bt{
  border : 1px solid #aacc08;
  border-radius: 4px;
  background:#aacc08;
  color : #ffffff;
  font-weight: bold;
  width : 100%;
  text-align: center;
  font-size : 120%;
  padding : 10px 0;
}

.hissu{
  color : #ff0000;
  display: inline;
  margin-left:5px;
  font-size: 90%;
}


.sendok{
  text-align: center;
  padding : 50px 0;
}