@charset "UTF-8";
/*
Theme Name: shorebreakwp
*/

html {
  font-size: 100%;
}
body {
  color: #121212;
  font-size: 0.9rem;
  line-height: 1.7;
  /* font-family: Arial, Helvetica, sans-serif; */
  font-family: 'Times New Roman', Times, serif;
  overflow-wrap: break-word;
}

.wrapper {
  /* 横スクロールのスクロールバー隠し */
  overflow-x: hidden;
}

a {
  color: #121212;
  text-decoration: none;
}
img {
  width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}

h3 {
  font-size: 2em;
  color: rgb(253, 253, 41);
  text-align: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 40px;
}

h3::after {
  content: "";
  width: 120px;
  height: 5px;
  background-color: rgb(253, 253, 41);
  position: absolute;
  top: 150px;
  left: calc(50% - 60px);
}

h4 {
  font-size: 1.25em;
}


/* ヘッダー */
#header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  position: fixed;
  z-index: 10;
  background-color: #fff;
}
.sns li i {
  font-size: 1.5em;
}

/* ハンバーガーメニュー */
#navi {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  color: #fff;
  padding: 60px 25px;
  background-color: #121212;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all .5s;
  z-index: 20;
  opacity: 0;
}

#navi a {
  color: #fff;
}
.open #navi {
  left: 0;
  opacity: 1;
}

#navi ul {
  margin: 0;
  padding: 0;
}
#navi ul.nav-menu {
  margin-bottom: 60px;
  border-top: solid 1px #fff;
}
#navi ul.nav-menu li {
  position: relative;
  margin: 0;
  padding: 20px 0;
  border-bottom: solid 1px #fff;
}
#navi ul.nav-sns li {
  padding: 5px 0;
}

.menu-btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 45px;
  transition: all .5s;
  cursor: pointer;
  z-index: 20;
}

.menu-btn i {
  font-size: 2em;
}

#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 10;
  cursor: pointer;
}
/*-------------------------------------------
Main
-------------------------------------------*/
#main {
  padding-top: 100px;
}

/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
  color: #fff;
  background-color: #121212;
  padding: 10px;
}
#footer div {
  display: flex;
}
#footer ul {
  padding-right: 50px;
}
#footer a {
  color: #fff;
}
#footer p {
  text-align: center;
  padding-top: 50px;
  font-size: 0.75rem;
}

/*-------------------------------------------
Visual
-------------------------------------------*/

#noodles {
  padding: 10px;
}

.side {
  display: flex;
  width: 100%;
  padding: 10px;
}

.side .pic {
  width: 100%;
}
.side .pic img {
  border-radius: 10px;
}

.side .text {
  padding: 20px;
  width: 100%;
}

.wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.above {
  width: 50%;
  height: 100%;
  padding: 10px;
}
.above .pic {
  width: 100%;
}
.above .pic img {
  border-radius: 10px;
}
.above .text {
  padding: 20px;
  width: 100%;
}

.chef {
  padding: 10px;
}
.chef .pic {
  text-align: center;
}
.chef .pic img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
}
.chef .text {
  padding: 0 20%;
}

#shop {
  padding: 10px;
}

#shop iframe {
  text-align: center;
  width: 100%;
  vertical-align: bottom;
}

#shop .address dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-weight: bold;
}
#shop .address dt {
  width: 25%;
  border-bottom: 1px solid #000;
  background-color: #DADADA;
}
#shop .address dd {
  width: 75%;
  border-bottom: 1px solid #000;
  background-color: #F3F3F3;
}
#shop .address p {
  font-size: 1.25em;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 50px;
}

/* js */
.animate {
  /* opacity: 0; */
  transform: translateY(40px);
  transition: opacity .3s, transform .3s;
}

.animate.side {
  transform: translateX(40px);
}

.animate.appear{
  opacity: 1;
  transform: none;
}

#to_top {
  position: fixed;
  bottom: 16px;
  right: 16px;
  opacity: 0;
  transition: opacity .3s;
}

#to_top.scrolled {
  opacity: 1;
}

#to_top i {
  font-size: 32px;
  color: #21587c;
}