body {
  background-color: #f5f3f1;
  font-family: "Noto Serif JP", serif;
}

p {
  font-size: 12px;
}

h2 {
  font-size: 16px;
  margin: 0;
}

@media (min-width:768px){
  p {
    font-size: 16px;
  }

  h2 {
    font-size: 20px;
  }
}
.content_heading {
  display: flex;
  margin: 20px 10px;
  width: auto;
  border-bottom: solid 2px black;
}

.heading_en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
}

/*ヘッダー部分(768px以下)*/
header {
  background-color: #071E48;
  width: auto;
  height: 60px;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  /*headerの上部絶対配置*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; 
  transition: background-color 0.3s; 
}
.logo_container img {
  width: 40px;
  height: auto;
}
.logo_container a{
  color: #fff;
  text-decoration: none;
}
.logo_container a h1 {
  font-weight: normal;
  margin: auto;
  white-space: nowrap;
}
.logo_container {
  display: flex;
  align-items: center;
  width: 140px;
  height: 40px;
  padding: 10px 10px;
}
nav a {
  display: none;
}
nav a:hover{
  font-weight: bold;
}

nav li {
  list-style: none;
}

@media (max-width: 767px) {
  header {
    flex-direction: column; 
    align-items: center;     
    height: auto;            
  }

  .logo_container {
    justify-content: center; 
  }

  nav ul {
    display: flex;         
    padding: 0;
    margin: 0;
    text-align: center;
  }

  nav li {
    margin: 10px 2px;          
  }

  nav a {
    display: block;         
    color: #fff;
    text-decoration: none;
  }

  nav a p {
    font-size: 10px;
  }

  nav .menu_jpn {
    margin: 0;
  }

  nav .menu_en {
    margin: 5px 0 0 0;
    font-size: 8px;
  }
}

@media (min-width: 768px) {
  header {
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo_container {
    margin: 0 0 0 10px;
  }

  nav ul {
    display: flex;
    margin: 10px;
    width: auto;
    padding: 0;
    white-space: nowrap;
  }
   nav a {
    display: block;
    text-decoration: none;
    color: #fff;
    text-align: center;
    margin-right: 10px;
 }

 nav a p {
    margin: 0;
    font-size: 16px;
 }
}

/*ファーストビュー*/
.first_view {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(images/img01.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    margin: 0;
  }
.logo-shopname {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    width: 50%;
    height: auto;
    transform:  translate(0,50%);
  }

@media (min-width:768px) {
  .first_view {
    width: 90%;
    margin-left: 5%;
  }
  .logo-shopname {
    width: 200px;
    height: auto;
    transform: translate(0, 40%);
  }
}
/*about(768px以下)*/
#about{
  background-image: url(images/img02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  min-height: 270px;
  display: flex;
  align-items: center;
  position: relative;
}

.content_heading_about li{
  display: flex;
  justify-content: center;
  padding: 5px;
  margin: 10px 10px 0 10px;
}

.content_heading_about ul {
  margin: 0;
  padding: 0;
}

.content {
  width: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: 20px;
  top: 10%;
  bottom: 10%;
}

#about p {
  padding: 0 5px 5px 5px;
  margin: 0 10px 10px 10px;
}

/*about 376px以下*/
@media (max-width:376px) {
  #about {
    min-height: 200px;
    display: flex;
    align-items: center;
  }
  .content {
    width: 80%;
    position: absolute;
    left: 10%;
  }
}

/*about 768px以上*/
@media (min-width:768px) {
  #about {
    background-size: 70%;
    background-position: center;
    margin: 20px 0 0 20px;
    height: 350px;
  }

  .content {
    width: 37%;
    position: absolute;
    left: 20%;
  }
}

/*about 1024px以上*/
@media (min-width:1024px) {
  #about {
    background-size: 50%;
    height: 400px;
  }
  .content {
    width: 25%;
    position: absolute;
    left: 30%;
  }
}

@media (min-width:1200px) {
  .content{
    width: 20%;
    height: 75%;
    position: absolute;
    top: 12%;
  }
}

@media (min-width:2400px) {
  .content {
    height: 45%;
    width: 20%;
    position: absolute;
    top: 27%;
  }
}

/*News 768px以下*/
.news_contents ul {
  margin: 1px 10px 1px 10px;
  padding: 0;
}

.news_contents li {
  list-style: none;
  border-bottom: solid 1px #000;
}

.news_contents li p{
  margin: 3px;
}

.news_contents li a {
  font-size: 12px;
  color: #000;
  display: flex;
  justify-content: flex-start;
}
.news_contents a {
  color: #8c8c8c;
  font-size: 10px;
  display: flex;
  justify-content: flex-end;
  margin: 0 10px 0 0;
}

.news_contents li p :hover {
    color: #8c8c8c;
}

/*news　768px以上*/
@media (min-width:768px){
  #news {
    width: 70%;
    margin: 0 15% 0 15%;
  }

  .news_contents p {
    font-size: 16px;
  }

  .news_contents li a {
    font-size: 16px;
  }

  .news_contents a {
    font-size: 14px;
  }
}



/*order 768px以下*/
#order {
  position: relative;
  padding: 20px;
  color: #333;
  background-image: url("images/img03.jpeg"); /* 背景画像 */
  background-size: cover;  
  background-position: center; 
  background-repeat: no-repeat;
  overflow: hidden;
}

#order::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.85); 
}

/* 中身を前面に出す */
#order .content_heading,
#order p,
#order .order_flow {
  position: relative;
  z-index: 1;
}

#order .content_heading {
  margin: 20px 0px;
}
#order > p {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}

.order_flow {
  margin-top: 10px;
}

.flows {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: flow-counter; 
}

.flow {
  position: relative;
  padding-left: 48px;
  margin-bottom: 24px;
}

.flow h3 {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
}

.flow p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

/* オプションリスト */
.flow ol {
  margin-top: 8px;
  padding-left: 16px;
}

.flow .bold {
  font-weight: bold;
  margin-bottom: 4px;
}

.price h2 {
  font-size: 14px;
  margin-bottom: 8px;
}

.price ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 8px 0;
}

.price li {
  font-size: 12px;
  margin-bottom: 4px;
}

.flow::before {
  counter-increment: flow-counter; /* カウンター進める */
  content: counter(flow-counter);  /* 数字を表示 */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  /* 丸スタイル */
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #666;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*order 768px 以上*/
@media(min-width:768px) {
  #order {
    width: 67%;
    margin: 0 15% 0 15%;
  }
  #order p {
    font-size: 16px;
  }
  #order p br {
    display: none;
  }

  #order li {
    font-size: 16px;
  }

}

@media (min-width:1440px) {
  #order {
    width: 69%;
  }
}

/*recruit*/
#recruit .message {
  display: flex;
  justify-content: center;
}

#recruit .message p {
  width: 45%;
  padding: 0 2.5% 0 0;
  margin: 0;
}

#recruit .message .img_pc {
  display: none;
}

#recruit .message .img_sp {
  width: 45%;
  height: auto;
  box-shadow: 4px 4px 4px #666;
}

/*recruit 768px以上*/
@media (min-width:768px) {
   #recruit {
     width: 70%;
     margin: 0 15% 0 15%;
   }

   #recruit .message {
    display: flex;
    justify-content: flex-start;
    margin: 0 2% ;
   }

   #recruit .message p {
    width: 50%;
    margin: 0 8% 0 0;
   }
}

/*recruit 1024px以上*/
@media (min-width:1024px) {
  #recruit {
    width: 70%;
    margin: 0 15% 0 15%;
  }

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

  #recruit .message p {
    width: 69%;
    margin: 0 0 10px 0;
    padding: 0;
  }

  #recruit .message .img_pc {
    display: block;
    width: 42%;
    box-shadow: 4px 4px 4px #666;
  }

  #recruit .message .img_sp {
    display: none;
  }
}

/*contact 768px以下*/

#contact .contact_message {
  text-align: center;
}

#contact .contact_pc {
  display: none;
}

#contact .contact_sp {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

#contact .contact_sp .sp_tel {
  text-align: center;
  margin-bottom: 15px;
}

#contact .contact_sp .bold16 {
  margin: 0;
}

#contact .contact_sp .bold16 a {
  color: #000;
}

#contact .contact_sp .bold16 :hover{
  color: #8c8c8c;
}

/*contact 768px以上*/
@media(min-width:768px) {
  #contact {
     width: 70%;
     margin: 0 15% 0 15%;
   }

  #contact .contact_sp {
    display: none;
  }

  #contact .contact_pc {
    display: block;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
  }

  #contact .contact_pc .bold26 {
    font-size: 16px;
  }

  #contact .contact_pc .bold26 a {
    color: #000;
  }

  #contact .contact_pc .bold26 :hover {
    color: #8c8c8c;
  }


}

/*access*/
#access iframe {
  width: 100%;
  aspect-ratio: 4 / 3 ;
  height: auto;
  box-shadow: 4px 4px 4px #666;
}

#access table {
  width: 100%;
  border-collapse: separate;  
  border-spacing: 0 15px;
  display: table; 
}

#access table th {
  font-size: 12px;
  width: 28%;
  padding: 0 0 0 10%;
  text-align: left;
}

#access table td {
  font-size: 12px;
  padding: 0 0 0 10%;
}

#access .station ul {
  padding: 0;
  margin: 0;
}

#access .station li {
  list-style: none;
}

@media (min-width:768px) {
  #access {
    width: 70%;
    margin: 0 15% 0 15%;
  }

  #access iframe {
    width: 50%;
    aspect-ratio: 4 / 3 ;
    height: auto;
    margin: 0 20%;
  }

  #access table td,
  #access table th {
    font-size: 16px;
  }

}


@media (min-width:1440px) {
  #access .information {
    display: flex;
    gap: 40px; 
    align-items: flex-start;
  }

  #access iframe {
    flex: 1;
    width: 500px;
    height: auto; 
    margin: 0;
  }

  #access table {
    flex: 1;
    width: 100%;
  }

}


/*footer*/

footer {
  background-color: #071E48;
  width: auto;
  height: 60px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer p {
  color: #fff;
  margin: 0;
  font-size: 14px;
}

main {
  padding-bottom: 60px;
}
