@charset "UTF-8";
.hamburger {
  display: none;
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 150;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.hamburger span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background-color: #fff;
  transition: transform .3s;
}
.hamburger.is-active span {
  background-color: #ffffff;
}
.hamburger span:nth-child(1) {
  top: 30%;
}
.hamburger span:nth-child(2) {
  top: 60%;
}
.hamburger span:nth-child(3) {
  top: 90%;
}
/*=========================================
#drawer
=========================================*/
.drawer {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;
	   z-index: 11111;
  background-color: #000000;
  transition: opacity .3s, visibility .3s;
}
.drawer.is-active {
  visibility: visible;
  opacity: 1;
}
.drawer-inner {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 150px;
  padding: 0px 0px 30px 0px;
  border-bottom: 1px solid #000;
}
.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer__list  li{

	margin-bottom: 50px;
	
}
.drawer__list  a{
text-decoration: none;
  color: #ffffff;
	font-size:24px;;
	

}
.drawer__link {
  color: #ffffff;
}





/* CSS Document */
.header {
  width: 100%;
  padding: 20px 0px;
  background-color: #000;
  position: fixed;
  top: 0;
}
.header__inner {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_right ul {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 20px;
}
.header_right ul li a {
  text-decoration: none;
  color: #fff;
}
.topimg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
	padding-top: 30px;
}
#all_box {
  width: 100%;
  background-color: #000;
}
.wrap {
  width: 80%;
  margin: 0 auto;
}
.about_box {
  width: 100%;
  height: auto;
  padding-top: 50px;
  display: flex;
  align-items: center;
}
@media screen and (min-width:0) and (max-width:960px) {
  .about_box, .news_box {
    flex-flow: column;
  }
  .news_left {
    margin: 0 0 30px;
  }
}
.about_left {
  width: 50%;
}
.about_img {
  width: 80%;
}
.about_text h1 {
  width: 100%;
  font-size: 25px;
  line-height: 50px;
  border-bottom: solid #fff 2px;
  letter-spacing: 1px;
  color: #fff;
}
.about_text p {
  text-align: left;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 1px;
  margin-top: 15px;
  color: #fff;
}
.news_box {
  width: 100%;
  height: auto;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news_left {
  width: 30%;
}
.news_left h2 {
  width: 100%;
  font-size: 40px;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 1px;
  color: #fff;
}
.news_left p {
  width: 100%;
  font-size: 15px;
  text-align: center;
  letter-spacing: 1px;
  color: #fff;
}
.news_right {
  width: 70%;
  text-align: center;
  font-size: 18px;
  margin-left: 50px;
  line-height: 20px;
  border-bottom: solid #fff 2px;
  letter-spacing: 1px;
  color: #f1f1f1;
}
.news_right p span {
  padding: 10px;
  margin: 0px 20px 20px 20px;
  background-color: #898989;
}
.news_right p {
  text-align: left;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 1px;
  margin-top: 15px;
  color: #fff;
  padding-bottom: 20px;
  border-bottom: solid #fff 2px;
}
.july_box {
  width: 100%;
  font-size: 35px;
  margin-top: 100px;
  text-align: center;
  letter-spacing: 1px;
  color: #fff;
}
.july_img {
  width: 100%;
  margin-top: 50px;
}
#recruit {
  width: 100%;
  font-size: 35px;
  margin-top: 100px;
  text-align: center;
  letter-spacing: 1px;
  color: #fff;
}
.recruit_img {
  width: 100%;
  margin-top: 50px;
  text-align: center;
}
.recruit_text {
  text-align: center;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 1px;
  margin-top: 25px;
  color: #fff;
  padding-bottom: 20px;
}
.recruit_button {
  margin-top: 20px;
}
.recruit_button a {
  background: #9fa0a0;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  padding: 10px 25px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.recruit_button a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.recruit_button a:hover {
  background: #fff;
  color: #000;
}
.recruit_button a:hover:after {
  right: 1.4rem;
}
#shop h2 {
  width: 100%;
  font-size: 35px;
  margin-top: 100px;
  text-align: center;
  letter-spacing: 2px;
  color: #fff;
}
#shop ul {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#shop ul li {
  width: 50%;
  height: auto;
  margin-bottom: 80px;
  text-align: center;
}
#shop ul li img {
  width: 80%;
  height: auto;
}
#Shop ul li:last-child, #Shop ul li:nth-child(3) {
  margin: 0;
}
#shop ul li p {
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 20px;
}
.menu_box {
  width: 100%;
  padding-top: 20px;
}
.menu_box ul {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu_box ul li {
  width: 50%;
  height: auto;
  margin-bottom: 80px;
  text-align: center;
}
.menu_box ul li img {
  width: 80%;
  height: auto;
}
.menu_box ul li:last-child, #Shop ul li:nth-child(3) {
  margin: 0;
}
.menu_box ul li p {
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 20px;
}
.main_under {
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  text-align: right;
  padding: 20px 0px;
}
.Boxall {
  width: 100%;
  display: flex;
  justify-content:space-between;
}

/*241004追記*/
.Box01, .Box02 {
    width:45%;/*数値は適当(スクショ見ただけなので正確な数値わからないから)*/
}
/*ここまで*/

/*同一記述の短縮化*/
.Box01 h2,
.Box02 h2 {
  width: 100%;
  font-size: 35px;
  margin-top: 100px;
  letter-spacing: 2px;
  color: #fff;
  border-bottom: solid 2px #fff;
  padding-bottom: 10px;
}
.Box01 ul,
.Box02 ul {
  width: 100%;
  color:white;/*241004追記*/
  margin-top: 50px;
  display: flex;
  align-items:flex-end;/*flex使用時の下揃え記述*/
  justify-content: space-between;
}
/*ここまで*/

/*左右振分比率で1番目のliと2番目のli指定*/
.Box01 ul li:first-child,
.Box02 ul li:first-child {
  width: 85%;/*スクショ上で見ただけなので正確な数値不明につき適宜直すこと。現状1195pxまで左のli内は折り返さないようにした*/
  height: auto;
  /*margin-bottom: 80px;*//*←この余白いる？？スクショだとこんなに余白ないしulに50pxついているから計130pxも余白になるけど…*/
  text-align:left;/*liの左端からテキスト開始*/
}
.Box01 ul li:last-child,
.Box02 ul li:last-child {
    width: 15%;/*スクショ上で見ただけなので正確な数値不明につき適宜直すこと。現状1195pxまで左のli内は折り返さないようにした*/
    height: auto;
    /*margin-bottom: 80px;*//*←この余白いる？？スクショだとこんなに余白ないしulに50pxついているから計130pxも余白になるけど…*/
    text-align:right;/*liの右端からテキスト開始*/
}
/*ここまで*/
/*li:nth-child(1) li:nth-child(2)でも同様になるが習ってない場合もあるのでfirst-childとlast-childで指定*/
.text_box {
width: 45%;
margin-top: 50px;
letter-spacing: 2px;
line-height: 30px;
color: #fff;
}

.menu-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding-top: 50px;
	margin-bottom: 50px;
    color: #fff;
	margin-top: 30px;
}
.menu_box00 {
  width: 100%;
  height: auto;
  padding-top: 50px;
  display: flex;
  align-items: center;
}
.menu_left {
  width: 50%;
}
.menu_img {
  width: 100%;
}
.menu_text00 {
width: 50%;
text-align: center;
}
.menu_text00 h1 {
  font-size: 23px;
  line-height: 50px;
  letter-spacing: 1px;
  color: #fff;
}
.menu_text00 p {
  text-align: left;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 1px;
  margin-top: 15px;
  color: #fff;
  text-align: center;
}
.menu-section {
	width: 80%;
	margin: 0 auto;
    display: flex;
    justify-content: space-between;
	margin-top: 100px;
    margin-bottom: 30px;
}

.menu-set {
    width: 48%;
	text-align: center;
	margin: 0 auto;
	
}

.menu-set h3 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
	border-bottom: solid #fff 2px;
	line-height: 50px;
}

.menu-set p {
    line-height: 2;
    color: #fff;
	margin-top: 20px;
}

.menu-image {
    width: 50%;
	margin: 0 auto;
}


.menu-notice {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    color: #fff;
	line-height:2;
}
.text p {
color: #fff;
text-align: center;
font-size: 14px;

}

.footer_inner {
  width: 100%;
  height: auto;
  background-color: #000;
  margin-top: 50px;
}
.footer_logo h1 {
  text-align: center;
  background-color: #000;
  margin-bottom: 30px;
}
.footer_logo p {
  background-color: #000;
  text-align: center;
  color: #fff;
}










/*ボタン*/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cp_qa {
  width: 45%;
  margin-bottom: 50px;
}
.cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 1em 0;
  color: #fff;
}
.cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
	font-size:18px;
  font-weight: bold;
  line-height: 3rem;
  position: relative;
  z-index: 0 !important;
  display: block;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 2.5em;
  cursor: pointer;
  text-indent: 1em;
	border-bottom:#fff 1px solid;
}
.cp_qa .cp_actab label::before {
  font-family: serif;
  font-size: 1.5em;
  margin-left: -2em;
  padding-right: 0.5em;
  content: '';
}
.cp_qa .cp_actab label:hover {
  transition: all 0.3s;
  color: #f4f4f4;
}
/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
  font-size: 1.3em;
  font-weight: bold;
  line-height: 5rem;
  position: absolute;
  top: 0;
  right: 0;
  content: '▼';
  display: inline-block;
  width: 3em;
  height: 4em;
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
}
.cp_qa .cp_actab .cp_actab-content::before {
  font-family: serif;
  font-size: 1.5em;
  position: absolute;
  margin: 0.4em 0 0 -1em;
  padding: 0;
  content: '';
}
.cp_qa .cp_actab .cp_actab-content p {
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  text-align: left;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
  max-height: 40em;
  border-bottom: 1px solid #fff;
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked ~ label {
  color: #fff;
}
/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(180deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
/*ボタン*/
.cp_actab-content table {
  width: 100%;
  text-align: left;
}
.cp_actab-content th {
  font-size: 14px;
  line-height: 28px;
  color: #fff;
  padding: 20px 0px;
}
.cp_actab-content th span {
  font-size: 18px;
  color: #fff;
}
.cp_actab-content td {
  text-align: right;
  font-size: 16px;
	  line-height: 32px;
  color: #fff;
  vertical-align: middle;
  padding: 20px 0px;
}
.all_menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 100px;
}

/*ボタン*/
/*