:root {
  /*カラー*/
  --text-color: #000;
  --text-color-W: #fff;
  --background-navbar: rgba(55, 55, 55, 0.5);
  --background-gray: #f2f2f2;

  /*フォント*/
  --noto-sans-font-family: '游ゴシック体', YuGothic, '游ゴシック Medium',
    'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
  --arial-font-family: Arial, sans-serif;
  --font-yu-mincho: YuMincho, 'Yu Mincho', serif;

  /*jp*/
  --paragraph-jp-md-font-family: var(--noto-sans-font-family);
  --font-size-XL: 30px;
  --font-size-L: 22px;
  --font-size-M: 18px;
  --font-size-S: 16px;
  --font-weight_M: 400;
  --font-weight_B: bold;
  --line-height_M: 2;
  --line-height_S: 1.5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  padding: 0px;
  margin: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}
body {
  font-family: var(--font-yu-mincho);
  font-size: var(--font-size-M);
  line-height: var(--line-height_M);
  font-weight: var(--font-weight_M);
  color: var(--text-color);
  scroll-behavior: smooth;
}

/*ふぇーどいん*/
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeInTrigger {
  opacity: 0;
}

/*ふぇーどあっぷ*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.blurTrigger {
  opacity: 0;
}

#wrapper {
  width: 100%;
}
main {
  background: url(../images/main.jpg) center top no-repeat;
  background-size: conatin;
  height: 500px;
  width: 100%;
  position: relative;
  background-attachment: fixed;
}
header {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 60px;
  padding: 5px 0;
}
h1 {
  font-size: var(--font-size-L);
  font-family: var(--yu-mincho);
  color: var(--text-color-W);
  padding: 0 0.5rem;
}

/* Nav items */
.nav {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 60px;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

/* Hamburger nav button */
.nav-btn:checked ~ .nav {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger nav text */
.nav a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #ddd;
  opacity: 0;
  transition: 0.5s;
}

.nav li {
  border-top: 1px solid rgb(75, 75, 75);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}
.nav li a img {
  margin-right: 1.2rem;
}
.nav-btn:checked ~ .nav a,
.nav-btn:checked ~ .nav li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.nav-btn {
  display: none;
}

.nav-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #ddd;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #ddd;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger nav Animation Start */
.nav-btn:checked ~ .nav-icon .navicon:before {
  transform: rotate(-45deg);
}

.nav-btn:checked ~ .nav-icon .navicon:after {
  transform: rotate(45deg);
}

.nav-btn:checked ~ .nav-icon:not(.steps) .navicon:before {
  top: 0;
}
.nav-btn:checked ~ .nav-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.nav-btn:checked ~ .nav-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger nav Animation -----------End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  color: #707070;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin: auto;
}
.navtext img {
  width: auto;
  height: 50px;
}
/*Nav end--------------------------*/

section {
  margin: 0 auto;
  padding: 2% 0;
}

h2 {
  font-family: var(--yu-mincho);
  text-align: center;
  margin: 2rem 0;
  font-weight: bold;
  font-size: var(--font-size-L);
}

.concept {
  margin: 2rem 1rem;
  background: url(../images/red_bream.png) no-repeat center;
  background-size: contain;
}
.concept p {
  margin: 1.5rem auto;
  font-family: var(--yu-mincho);
  font-size: var(--font-size-S);
}

h2.section_title {
  margin: 1.5rem auto;
  padding: 1.2rem 0;
  font-size: var(--font-size-L);
  font-weight: var(--font-weight_B);
  position: relative;
}
h2.section_title::after {
  content: '';
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 1px;
  background-color: #707070;
}

/*news----------------------------*/
.news_area {
  background: url(../images/news_bg.png) no-repeat;
  background-size: cover;
  padding: 2%;
  padding-bottom: 100px;
}
.news {
  padding: 2%;
  font-size: var(--font-size-S);
  background-color: rgba(255, 255, 255, 0.5);
  margin: 10px 0;
}
figure img {
  width: 100%;
  margin: 0 auto;
}
.news_title {
  font-family: var(--noto-sans-font-family);
  font-size: var(--font-size-M);
  font-weight: var(--font-weight_B);
  border-bottom: 1px solid #879a73;
  margin-bottom: 10px;
}
.news_title span {
  font-family: var(--noto-sans-font-family);
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 10px;
  margin-left: 0;
  display: block;
}
.news_area h3 {
  color: #879a73;
}
.news_box {
  display: flex;
  flex-direction: column;
}
.news_box p {
  margin-top: 10px;
}
/*about-----------------------------*/
.about_area {
  background-image: url(../images/bg2.jpg);
}
.inner {
  padding: 1rem;
  position: relative;
  margin-bottom: 150px;
  margin-top: 50px;
}
.inner h2 {
  margin: 1rem 0;
}
.about {
  display: flex;
  flex-direction: column;
}
.about_text h2 {
  background-color: #879a73;
  color: var(--text-color-W);
}
.about_text {
  background-color: #fff;
  padding: 1rem;
  position: absolute;
  top: 80%;
  bottom: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  height: auto;
}
.about_area p {
  margin-bottom: 20px;
  line-height: var(--line-height_S);
  font-size: var(--font-size-S);
}

/*menu-----------------------------*/
.menu {
  margin: 0 auto;
  padding: 0 1rem;
}
.menu p {
  margin: 1rem auto;
}
dl {
  display: flex;
  flex-direction: column;
  margin: 10px auto;
  padding: 5px 0;
  width: 100%;
  border-bottom: 1px dotted #707070;
}
dd {
  text-align: center;
}
.menu ul {
  list-style: square;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.menu ul li {
  line-height: 1.7;
}
.menu_img {
  background: url(../images/menu_img.jpg) no-repeat top center;
  background-size: cover;
  padding-top: 200px;
}

/*access---------------------------------*/
.access {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.access h1 {
  color: #707070;
  text-align: center;
}
.access_shop img {
  width: 100%;
  padding: 0 1rem 1rem;
}
address table {
  font-size: var(--font-size-S);
  margin: 1rem;
}
address th {
  color: var(--text-color-W);
  font-weight: normal;
  background-color: #707070;
  width: calc(100% / 4);
  vertical-align: middle;
  text-align: center;
  border-bottom: 1px solid #fff;
}
address td {
  padding: 1rem;
  background-color: var(--background-gray);
  border-bottom: 1px solid #707070;
}
address tr:last-child td {
  border-bottom: none;
}
.map_iframe_wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 45%;
  margin: 0 auto;
}
iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.info_area {
  background: url(../images/info_img.jpg) 10% top no-repeat;
  background-size: cover;
  height: 30vh;
  position: relative;
}
.info_area::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.info_area h2 {
  color: var(--text-color-W);
  position: absolute;
  font-size: var(--font-size-L);
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.info {
  color: var(--text-color-W);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.info p {
  font-size: var(--font-size-S);
  padding: 20px;
  text-align: center;
  line-height: 1;
}
.tel {
  display: block;
}
.tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  width: 80%;
  margin: auto;
  position: absolute;
  top: 80%;
  left: 0;
  right: 0;
}
.tel span {
  text-align: center;
  font-size: var(--font-size-L);
  margin-left: 10px;
}
.section_info {
  margin-bottom: 0 !important;
}

.footer {
  background-color: #707070;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer img {
  max-height: 30px;
}
.instagram {
  height: 45px;
}
.instagram a {
  margin: 0;
  padding: 0;
}
.instagram img {
  margin: 0;
  padding: 0;
}
.copy {
  font-size: smaller;
  text-align: center;
}

/*タブレット----------------------------*/
@media (min-width: 600px) {
  main {
    background-size: contain;
    height: 100vh;
    width: 100%;
    position: relative;
  }
  h1 img {
    width: auto;
  }
  figure {
    width: 100%;
  }
  .news_box {
    flex-direction: row;
  }
  .news_title span {
    display: inline;
    font-family: var(--noto-sans-font-family);
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 10px;
    margin-left: 20px;
  }
  .news_box p {
    width: 100%;
    margin-left: 10px;
  }
  .about {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .about > .inner {
    width: 50%;
    margin-bottom: 150px;
  }
  .about > .inner p {
    top: 90%;
    bottom: unset;
  }
  .about_text {
    padding: 1rem;
    bottom: unset;
  }
  .menu {
    margin: 0 1rem;
  }
  .menu dl {
    flex-direction: row;
  }
  .menu dt,
  dd {
    width: 100%;
  }
  .menu_img {
    width: 100%;
    background: url(../images/menu_img2.jpg) no-repeat center left;
    background-size: cover;
    padding-top: 300px;
    margin: 0 auto;
  }
  .access {
    padding: 0 2rem;
  }
  .access_shop img {
    width: 100%;
  }
  address {
    width: 100%;
  }
  address table {
    margin: 1rem auto;
    width: 95%;
  }
}

/*PC--------------------------------------------------*/
@media (min-width: 1025px) {
  header {
    height: 80px;
    padding: 15px 0;
  }
  .container {
    position: relative;
    /* z-index: 1; */
    background: #fff;
  }
  main {
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
  }
  .wrap {
    width: 1000px;
    max-width: 100%;
  }
  h2.section_title {
    padding: 2.5rem;
    font-size: var(--font-size-XL);
  }
  h2.section_title::after {
    content: '';
    position: absolute;
    top: 70%;
  }
  h2 {
    font-family: var(--yu-mincho);
    font-size: var(--font-size-L);
    text-align: center;
    margin: 2rem 0;
  }
  .nav {
    margin-top: 80px;
  }
  .navtext {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navtext img {
    width: auto;
    height: auto;
  }
  .concept {
    display: flex;
    flex-direction: row-reverse;
    height: 420px;
    width: 30%;
    margin: 5rem auto;
  }
  .concept h2 {
    writing-mode: vertical-rl;
    margin: 0 auto;
    padding: 0;
  }
  .concept p {
    writing-mode: vertical-rl;
    line-height: 2.75;
  }

  /*news-PC-----------------------------------*/
  .news {
    width: 100%;
    max-width: 980px;
    margin: 20px auto;
  }
  .news_title {
    font-size: var(--font-size-L);
  }

  .news_box p {
    margin-left: 20px;
  }

  /*about-PC-----------------------------------*/
  .about {
    width: 1000px;
    max-width: 100%;
    margin: auto;
    flex-direction: column;
  }
  .about > .inner {
    width: auto;
    padding: 0 1rem;
    position: relative;
    margin-bottom: 150px;
  }
  .about_text {
    top: 80%;
    right: -50%;
    left: 0;
    bottom: -20%;
    width: 50%;
    height: auto;
  }
  figure {
    text-align: left;
  }
  figure img {
    width: auto;
    margin: 0 auto;
  }

  .inner figure {
    text-align: left;
  }

  /*偶数----------------------*/
  .inner:nth-child(even) {
    padding: 1rem;
    position: relative;
    margin-bottom: 150px;
  }
  .inner:nth-child(even) figure {
    text-align: right;
  }
  figure img {
    margin: 0 auto;
  }
  .inner:nth-child(even) .about_text {
    padding: 1rem;
    position: absolute;
    top: 80%;
    bottom: -20%;
    left: -50%;
    right: 0;
    margin: 0 auto;
    width: 50%;
    height: auto;
  }
  .about_area p {
    width: 80%;
    margin: 20px auto;
    margin-bottom: 20px;
    line-height: var(--line-height_M);
  }
  /*偶数END----------------------*/

  /*menu-PC-------------------------*/
  .menu ul {
    padding-bottom: 2%;
  }
  .menu_img {
    width: 100%;
    background: url(../images/menu_img2.jpg) no-repeat top right;
    background-size: cover;
    padding-top: 800px;
    margin: 0 auto;
  }

  dt {
    width: 180px;
  }
  dd {
    width: calc(100% - 180px);
    text-align: left;
  }
  address {
    width: 100%;
  }
  address table {
    margin: 1rem 0;
  }
  .access_area {
    background-color: #f2f2f2;
  }
  .access {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
  }
  .access h1 {
    color: #707070;
    text-align: center;
  }
  .access_shop img {
    width: 100%;
    padding: 0 0 1rem 1rem;
  }
  .map_iframe_wrap {
    padding-top: 35%;
  }
  address table {
    width: 100%;
  }
  address table td {
    background-color: #fff;
  }
  address {
    width: 100%;
  }

  .info {
    width: 30%;
  }
}
