@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Noto+Sans+JP:wght@400;500&family=Noto+Serif+JP&family=PT+Serif:ital@0;1&family=Roboto:wght@500&display=swap");
@media screen and (min-width: 680px) {
  .pc {
    display: inline;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fdfbef;
  color: rgb(35, 35, 35);
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #00a63c;
}

p {
  line-height: 2;
  padding: 1rem;
  font-weight: 500;
  font-size: 1rem;
}

section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

img {
  max-width: 100%;
  height: auto;
}

.flex-center {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

/* fadeUp */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeRtoL {
  animation-name: fadeRtoLanime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRtoLanime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeLtoR {
  animation-name: fadeLtoRanime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLtoRanime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　jsも変更すること*/
.fadeInT {
  opacity: 0;
}

.fadeUpT {
  opacity: 0;
}

.fadeRtoLT {
  opacity: 0;
}

.fadeLtoRT {
  opacity: 0;
}

.delay1 {
  animation-delay: 0.3s;
}

.delay2 {
  animation-delay: 0.6s;
}

.delay3 {
  animation-delay: 0.9s;
}

h2 {
  font-family: "PT Serif", serif;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
  font-style: italic;
  color: #835d25;
  line-height: 1.4;
}
h2 span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  display: block;
  font-weight: 400;
  font-style: normal;
}

h3 {
  font-family: "Kiwi Maru", serif;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.1rem;
  padding: 0.4rem 1rem;
  line-height: 1.7;
  background-color: #6cbb63;
  color: white;
  margin-bottom: 2rem;
}

h4 {
  font: 1.4rem "Kiwi Maru", serif;
  border-left: 5px solid #6cbb63;
  background-color: #f1eae5;
  color: #835d25;
  padding: 0.5rem 1rem;
}

h5 {
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  border-bottom: 1px solid rgb(187, 187, 187);
}

span.label {
  background-color: #ea613b;
  color: white;
  padding: 0.1rem 0.3rem;
  border-radius: 5px;
  font-size: 0.8rem;
  margin-left: 0.8rem;
}

.red {
  color: red;
}

ul.list {
  margin-left: 1rem;
  font-size: 1rem;
}
ul.list li {
  padding-left: 1.5em;
  text-indent: -1.5em;
  line-height: 1.6;
}
ul.list li:before {
  font-family: "Material Icons";
  content: "\e061";
  color: #a79780;
  padding-right: 0.4rem;
}
@media (max-width: 768px) {
  ul.list li {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  ul.list {
    padding: 1rem;
  }
}

.btn {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.15rem;
  border-radius: 6px;
  padding: 0.8rem 1.5rem;
  text-align: center;
  border: 3px solid #00a63c;
  background-color: #00a63c;
  color: white;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.btn:hover {
  background-color: white;
  color: #00a63c;
}
@media (max-width: 768px) {
  .btn {
    letter-spacing: 0;
    padding: 0.6rem 1rem;
  }
}

.btn2 {
  font-family: "Roboto", sans-serif;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
  border-radius: 6px;
  padding: 1.5rem 2.5rem;
  border: 3px solid #00a63c;
  background-color: #00a63c;
  color: white;
  transition: 0.3s;
  cursor: pointer;
}
.btn2 span {
  font-size: 0.9rem;
  letter-spacing: 0;
}
.btn2:hover {
  background-color: #028131;
  border: 3px solid #028131;
}

.btn-white {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.15rem;
  padding: 1rem 1.5rem;
  text-align: center;
  border: 3px solid white;
  background-color: transparent;
  color: white;
  transition: 0.3s;
  align-items: center;
  cursor: pointer;
}
.btn-white:hover {
  background-color: white;
  color: #00a63c;
}

.text-center {
  text-align: center;
}

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

.text-center-pcnomi {
  text-align: center;
}
@media (max-width: 768px) {
  .text-center-pcnomi {
    text-align: left;
  }
}

.scroll-table {
  overflow: auto;
  white-space: nowrap;
}

label {
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  color: #835d25;
}

.m-form-text {
  margin: 0.5rem 0 1rem;
  height: 3em;
  width: 100%;
  padding: 0 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px rgba(131, 93, 37, 0.2470588235) inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: 0.2s;
  background-color: #fff;
}

.m-form-text:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #00a63c inset;
}

.m-form-radio-name {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
}

.kubun {
  letter-spacing: 0.2rem;
  margin: 0.4rem;
}

.m-form-textarea {
  margin: 0.5rem 0 1rem;
  display: block;
  width: 100%;
  padding: 4px 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px rgba(131, 93, 37, 0.2470588235) inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  resize: vertical;
  transition: 0.2s;
  background-color: #fff;
}

.m-form-textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #00a63c inset;
}

footer {
  background-color: #fdf1cb;
  padding: 2.5rem 0 0;
  text-align: center;
}
footer .copy {
  margin-top: 2rem;
  letter-spacing: 0.1rem;
  font-size: 0.7rem;
  color: gray;
  padding: 0.6rem;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .sphide {
    display: none;
  }
}

#header {
  top: 0;
  position: fixed; /*fixedを設定して固定*/
  height: 85px; /*高さ指定*/
  width: 100%; /*横幅指定*/
  z-index: 999; /*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #524742;
  text-align: center;
  padding: 20px;
  transition: 0.4s;
}
@media (max-width: 768px) {
  #header {
    background-color: white;
  }
}
#header #headlogo {
  margin: 1rem;
}
#header #headlogo img {
  padding: 1rem;
  transition: 0.4s;
}
@media (max-width: 768px) {
  #header #headlogo img {
    padding: 0.4rem;
    width: 200px;
  }
}

#header.kotei {
  height: 70px; /*高さ指定*/
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

nav {
  display: flex;
  align-items: center;
}

.gnav {
  color: #835d25;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  height: 2rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .gnav {
    display: none;
  }
}

/*全てのリスト・リンク共通*/
.gnav li {
  list-style: none;
  position: relative;
}

.gnav li a {
  display: block;
  height: 2rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.15rem;
  padding: 0 1rem;
}
.gnav li a span {
  display: block;
  font-family: "PT Serif", serif;
  font-style: italic;
  font-size: 0.7rem;
  font-weight: bold;
}

/*子階層以降共通*/
.gnav li li {
  height: 0;
  overflow: hidden;
  transition: 0.5s;
  width: 250px;
  top: 10px;
  background-color: #fff;
}

.gnav li li a {
  border-top: 1px solid #eee;
  line-height: 3;
  text-align: left;
}

.gnav li:hover > ul > li {
  height: 3rem;
  overflow: visible;
}

.gnav > li > ul:before {
  /*子階層*/
  border: 5px solid transparent;
  border-top: 5px solid rgb(78, 78, 78);
  content: "";
  right: 1rem;
  position: absolute;
  top: 1rem;
  transform: translateY(-40%);
}

.nav_toggle {
  display: block;
  position: relative;
  width: 1.75rem;
  height: 1.5rem;
}

.nav_toggle i {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #00a63c;
  position: absolute;
  transition: transform 0.5s, opacity 0.5s;
}

.nav_toggle i:nth-child(1) {
  top: 0;
}

.nav_toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.nav_toggle i:nth-child(3) {
  bottom: 0;
}

.nav_toggle.show i:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}

.nav_toggle.show i:nth-child(2) {
  opacity: 0;
}

.nav_toggle.show i:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}

.nav {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  height: 80vh;
}

.nav.show {
  opacity: 1;
  visibility: visible;
  background-color: #00a63c;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

ul.nav_menu_ul {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  line-height: 3rem;
  text-align: center;
  letter-spacing: 0.15rem;
  color: white;
}
@media (max-width: 768px) {
  ul.nav_menu_ul {
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  ul.nav_menu_ul li {
    margin-bottom: 1rem;
  }
}
ul.nav_menu_ul li a {
  border-bottom: 1px solid #fdd000;
}
ul.nav_menu_ul li a span {
  display: block;
  font-family: "PT Serif", serif;
  font-style: italic;
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  ul.nav_menu_ul li a {
    color: white;
    border-bottom: 0px;
  }
}

#topvisual {
  position: relative;
}

#topcopy {
  width: 100vw;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.8));
  height: 100vh;
}

.slide div {
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
}

.slide div.img01 {
  background-image: url(../img/top02.jpg);
}

.slide div.img02 {
  background-image: url(../img/top01.jpg);
}

.slide div.img03 {
  background-image: url(../img/top03.jpg);
}

.slide div.img04 {
  background-image: url(../img/top04.jpg);
}

.slide div.img05 {
  background-image: url(../img/top05.jpg);
}

.slide .slick-dots {
  bottom: 10%;
  z-index: 1;
}

.tel a {
  font-size: 2rem;
  letter-spacing: 0.2rem;
  font-family: "Exo", sans-serif;
  color: #00a63c;
}

#footspace {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #footspace {
    margin-bottom: 6rem;
  }
}

thead {
  font-size: 0.9rem;
}

.price {
  font-weight: bold;
  color: #00a63c;
  font-size: 1.2rem;
}

#menu {
  background-color: #f6b148;
}

#menubox-area {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(24%, 1fr));
}
@media (max-width: 768px) {
  #menubox-area {
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  }
}

.menubox {
  overflow: hidden;
}
.menubox h2 {
  font-family: "Kiwi Maru", serif;
  background-color: white;
  color: #835d25;
  text-align: center;
  padding: 1.3rem;
  font-size: 1.4rem;
  font-style: normal;
  margin: -1.5rem 1rem 0;
  position: relative;
  z-index: 10;
  letter-spacing: 0.15rem;
}
@media (max-width: 768px) {
  .menubox h2 {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    padding: 0.6rem;
  }
}
.menubox img {
  max-width: 100%;
  height: auto;
  transition: 0.3s;
}
.menubox img:hover {
  transform: scale(1.2, 1.2);
  filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.35));
}

.iconsoroe {
  display: inline-flex;
  align-items: center;
}

#kasovisual {
  margin: 100px 0 4rem;
  background-image: url(../img/kasoback01.jpg);
  background-attachment: fixed;
  background-position: top right;
  background-size: 100%;
}
#kasovisual .title {
  padding: 5rem 1rem;
  background-color: #00a63c;
  color: white;
  width: 35%;
  text-align: center;
}
@media (max-width: 768px) {
  #kasovisual .title {
    width: 100%;
  }
}
#kasovisual .title img {
  width: 45px;
  margin-bottom: 2rem;
}
#kasovisual h1 {
  font-family: "Kiwi Maru", serif;
  letter-spacing: 0.3rem;
  line-height: 1.4;
  font-size: 2rem;
}
@media (max-width: 768px) {
  #kasovisual h1 {
    font-size: 1.7rem;
    letter-spacing: 0.1rem;
  }
}
#kasovisual h1 span {
  font-family: "PT Serif", serif;
  display: block;
  font-size: 1.4rem;
}

.logos {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  place-items: center;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .logos {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 25%;
  position: relative;
}
@media (max-width: 768px) {
  .gmap {
    padding-bottom: 75%;
  }
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.topbox {
  border: 3px solid #ea613b;
  border-radius: 7px;
  margin: 1.5rem auto;
  background-color: #fff;
}
.topbox h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ea613b;
  padding: 0.5rem;
  color: white;
  margin: 0;
  border-bottom: 0;
  border-left: 0px;
}
.topbox .inner {
  text-align: left;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .topbox .inner {
    padding: 0.5rem;
  }
}

.namearea {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  .namearea {
    display: block;
  }
}

.name {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}
.name span {
  font-size: 1.2rem;
  display: block;
}
@media (max-width: 768px) {
  .name {
    margin: 1.2rem 0;
    text-align: right;
  }
}

.line {
  text-align: center;
  font-size: 0.7rem;
  margin-left: 1rem;
}
.line img {
  margin-bottom: 0.4rem;
}

.spec {
  font-size: 0.75rem;
  line-height: 1.2;
  margin: 0 2rem;
}

.scroll-table {
  overflow: auto;
  white-space: nowrap;
}

.infotable {
  letter-spacing: 0.1rem;
  text-align: center;
  width: 100%;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.infotable .infotitle {
  font-weight: bold;
  color: #a8790b;
}
.infotable .infotitle .bgwhite {
  background-color: white;
}
.infotable tr {
  border-bottom: 1px dotted rgb(197, 197, 197);
}
.infotable td {
  padding: 0.6rem;
  vertical-align: middle; /* 中央揃え */
}
.infotable td img {
  width: 30px;
}
.infotable td.bold {
  width: 60%;
}

.bold {
  font-weight: bold;
}

.machine {
  padding: 0.5rem;
  line-height: 2;
  border-bottom: 1px solid rgb(221, 221, 221);
  margin: 0 1rem;
}

.machinename {
  font-weight: bold;
  color: #00a63c;
}

.blogfeed {
  margin-bottom: 2rem;
}
.blogfeed li {
  border-bottom: 1px dotted rgb(175, 175, 175);
  padding: 1.2rem;
  transition: 0.3s;
}
.blogfeed li:hover {
  background-color: #fff;
  color: #835d25;
}

.date {
  color: #835d25;
  font-family: "PT Serif", serif;
}

.footbtns {
  display: flex;
  justify-content: center;
}/*# sourceMappingURL=iroha.css.map */