body {
  background-color: #f4efeb;
  color: #101010;
  font-weight: 400;
  font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
}

/* フォント */
.font {
  font-family: 'Roboto Slab',
    'Times New Roman', 'Kaisei Decol',
    'Yu Mincho Light',
    'YuMincho',
    'Yu Mincho',
    '游明朝体',
    'ヒラギノ明朝 ProN',
    'Hiragino Mincho ProN',
    serif;
}


/* 見出し */
.common_h2 {
  position: relative;
  display: inline-block;
  color: #80553c;
  font-weight: 500;
  font-size: 48px;
}

.common_h2::before {
  content: url(../img/common/heading_decorate.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.common_h-center {
  display: block;
  text-align: center;
}

/* 本文 */
.common_text {
  font-size: 14px;
  line-height: 170%;
}

/* 画像 */

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

.round_c {
  border-radius: 6px;
}

/* flex */
.flex {
  display: flex;
}

.jc_sb {
  justify-content: space-between;
}

.ai_c {
  align-items: center;
}

/* 改行 */
.new_line {
  display: inline-block;
}


/* コンテンツ幅 */
.wraper_1080 {
  margin: 0 auto;
  max-width: 1080px;
  width: 95%;
}

.wraper_1400 {
  margin: 0 auto;
  max-width: 1400px;
  width: 98%;
}

/* 余白 */
.mg_top_10 {
  margin-top: 10px;
}

.mg_top_15 {
  margin-top: 15px;
}

.mg_top_20 {
  margin-top: 20px;
}

.mg_top_30 {
  margin-top: 30px;
}

.mg_top_40 {
  margin-top: 40px;
}

.mg_top_50 {
  margin-top: 50px;
}

.mg_top_70 {
  margin-top: 70px;
}

.pd_top_150 {
  padding-top: 150px;
}

/* ボタン */
.btn_area {
  margin-top: 30px;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 11px 63px;
  border: 1.5px solid #101010;
  border-radius: 50px;
  font-size: 18px;
  transition: .8s;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-block;
  width: 20px;
  height: 6px;
  border-right: 1.3px solid #101010;
  border-bottom: 1.3px solid #101010;
  transition: .8s;
  transform: skew(45deg) translateY(-50%);
}

.btn:hover {
  background-color: #72b4bd;
  color: #f4efeb;
}

.btn:hover::after {
  right: 15px;
  width: 30px;
  border-right: 1px solid #f4efeb;
  border-bottom: 1px solid #f4efeb;
}

.btn_font {
  font-size: 18px;
  font-family: 'Roboto Slab',
    'Times New Roman', serif;
}

.btn_center {
  text-align: center;
}

/* スクリーンリーダー */
.sr-only {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  margin: -1px !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}


/* ヘッダー */
.header_container {
  margin: 0 auto;
  padding: 10px 0;
  max-width: 1440px;
  width: 93%;
}

.logo {
  min-width: 138px;
}

.header_gnav {
  gap: 30px;
  margin-top: 32px;
  font-weight: 500;
}

.header_gnav_link {
  position: relative;
  height: 30px;
}

.header_gnav_link {
  overflow: hidden;
}

.header_gnav_link::before {
  content: url(../img/common/header_fish.svg);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateX(-70%);
  animation: fish_in .8s ease-out forwards;
}

@keyframes fish_in {
  0% {
    transform: translateX(25%);
  }

  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

.header_gnav_link:hover::before {
  animation: fish_out .8s ease-out forwards;
}

@keyframes fish_out {
  0% {
    opacity: 0;
    transform: translateX(-70%);
  }

  100% {
    opacity: 1;
    transform: translateX(25%);
  }
}

.header_btn {
  padding: 20px 40px;
  border-radius: 6px;
  background-color: #64b47a;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  transition: .8s;
}

.header_btn::before {
  content: url(../img/common/mail_icon.svg);
  display: inline-block;
  margin-right: 10px;
  color: #fff;
}

.header_btn:hover {
  opacity: .5;
}

/* SNS */
.sns_container {
  position: relative;
  overflow: hidden;
  padding: 0 0 920px;
}

.wave_bg {
  position: absolute;
  z-index: -1;
  display: flex;
  width: 100vw;
}

.wave1,
.wave2 {
  min-width: 1440px;
}

.wave1 {
  animation: wave1 9.3s -9.3s linear infinite;
}

.wave2 {
  animation: wave2 9.3s linear infinite;
}

@keyframes wave1 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* 画像の繋ぎ目削除用 */
@keyframes wave2 {
  0% {
    transform: translateX(-.1%);
  }

  to {
    transform: translateX(-100%);
  }
}

.sns_decoration.on {
  transform: translateX(-50%);
}

.sns_decoration {
  position: absolute;
  left: 54%;
  z-index: -1;
  margin-top: 150px;
  width: 1500px;
  text-align: center;
}

.sns_img {
  max-width: 1563px;
  width: 100%;
}

.sns_inner {
  position: absolute;
  top: 15%;
  left: 50%;
  z-index: 2;
  justify-content: center;
  transform: translateX(-50%);
}

.sns_x {
  margin-right: clamp(100px, 10.41vw, 200px);
}

.sns_h2 {
  padding-top: 100px;
  color: #f4efeb;
  font-weight: 500;
  font-size: 48px;
}

.sns_title {
  text-align: center;
  font-weight: 500;
  font-size: 36px;
  font-family: 'Kaisei Decol',
    'Yu Mincho Light',
    'YuMincho',
    'Yu Mincho',
    '游明朝体',
    'ヒラギノ明朝 ProN',
    'Hiragino Mincho ProN',
    serif;
}

.sns_post {
  margin-top: 20px;
}

/* Xの投稿サイズ調整 */
.sns_x .twitter-timeline {
  width: 420px !important;
}

.sns_x iframe {
  width: 100% !important;
}

/* Instagramの投稿サイズ調整 */
.sns_instagram .sns_post {
  width: 420px !important;
}

.sns_instagram iframe {
  max-width: 100% !important;
  width: 420px !important;
}

/* お問い合わせ */
.contact_container {
  padding-top: 200px;
}

.contact_inner {
  padding: 80px;
  background-color: #c7e6c4;
}

.contact_wraper {
  margin: 0 auto;
  max-width: 1280px;
}

.contact_read {
  margin: 0 auto;
  max-width: 520px;
  text-align: center;
  font-size: 20px;
  line-height: 170%;
}

.contact_area {
  padding: 20px 0 25px;
  width: 600px;
  border-radius: 6px;
  background-color: #64b47a;
  text-align: center;
}

.contact_area:first-child {
  margin-right: 40px;
}

.contact_title {
  font-size: 24px;
}

.contact_tel {
  margin-top: 20px;
  color: #fff;
  font-weight: 500;
  font-size: 40px;
}

.contact_time {
  margin: 25px auto 0;
  width: 216px;
  color: #fff;
}

/* お問い合わせあしらい */
.contact_container {
  overflow: hidden;
}

.contact_wraper {
  position: relative;
}

.wood_shrimp_illust_1 {
  position: absolute;
  top: -130px;
  left: -10%;
  width: 26%;
}

.wood_shrimp_illust_2 {
  position: absolute;
  top: 200px;
  right: -11%;
  width: 22%;
}

/* お問い合わせあしらい ここまで*/

/* お問い合わせボタン */
.contact_btn_area {
  margin-top: 52px;
}

.contact_btn {
  position: relative;
  display: inline-block;
  padding: 14px 63px;
  border-radius: 50px;
  background-color: #f4efeb;
  font-weight: 500;
  font-size: 24px;
  transition: .8s;
}

.contact_btn:hover {
  background-color: #46885a;
  color: #f4efeb;
}

.contact_btn::before {
  content: '';
  display: inline-block;
  margin-right: 5px;
  width: 20px;
  height: 16px;
  background-color: #101010;
  transition: .8s;
  transform: scale(1.2);

  -webkit-mask-image: url(../img/common/mail_icon.svg);
  mask-image: url(../img/common/mail_icon.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  fill: red;
}

.contact_btn:hover:before {
  background-color: #f4efeb;
}

.contact_btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-block;
  width: 20px;
  height: 6px;
  border-right: 1.3px solid #101010;
  border-bottom: 1.3px solid #101010;
  transition: .8s;
  transform: skew(45deg) translateY(-50%);
}

.contact_btn:hover::after {
  right: 15px;
  width: 30px;
  border-right: 1px solid #f4efeb;
  border-bottom: 1px solid #f4efeb;
}

/* お問い合わせボタン ここまで */

/* フッター */

.footer_container {
  overflow: hidden;
  background-image: url(../img/common/footer_background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.footer_inner {
  margin: 70px auto 0;
  max-width: 1080px;
  width: 95%;
}

.footer_shop {
  width: 485px;
}

.footer_contact {
  margin-top: 10px;
}

.footer_icon {
  padding: 6px;
  border-radius: 50%;
  background-color: #007e93;
}

.footer_icon:nth-child(n+2) {
  margin-left: 10px;
}

.footer_icon a {
  transition: .5s;
}

.footer_icon a:hover {
  opacity: .5;
}

.footer_info {
  margin-left: 5%;
  min-width: 294px;
  width: 27%;
}

.footer_list:nth-child(n+2) {
  margin-top: 15px;
}

.footer_item,
.footer_detail {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}

.footer_item {
  width: 32%;
}

.footer_nav {
  min-width: 400px;
  width: 37%;
}

.footer_nav_inner {
  width: 45%;
}

.footer_content_mg {
  margin-top: 10px;
}

.footer_content {
  padding-bottom: 10px;
  border-bottom: 1px solid #00434f;
  font-size: 18px;
}

.footer_article {
  margin-top: 10px;
  font-size: 14px;
}



/* フッターお問い合わせボタン */
.footer_btn_area {
  margin-top: 30px;
}

.footer_btn {
  position: relative;
  display: inline-block;
  padding: 11px 62px;
  border: 1px solid #101010;
  border-radius: 50px;
  font-size: 14px;
  transition: .8s;
}

.footer_btn:hover {
  background-color: #007e93;
  color: #f4efeb;
}

.footer_btn::before {
  content: '';
  display: inline-block;
  margin-right: 5px;
  width: 12px;
  height: 9px;
  background-color: #101010;
  transition: .8s;

  -webkit-mask-image: url(../img/common/footer_mail_icon.svg);
  mask-image: url(../img/common/footer_mail_icon.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.footer_btn:hover:before {
  background-color: #f4efeb;
}

.footer_btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-block;
  width: 20px;
  height: 6px;
  border-right: 1px solid #101010;
  border-bottom: 1px solid #101010;
  transition: .8s;
  transform: skew(45deg) translateY(-50%);
}

.footer_btn:hover::after {
  right: 15px;
  width: 30px;
  border-right: 1px solid #f4efeb;
  border-bottom: 1px solid #f4efeb;
}

/* フッターお問い合わせボタン ここまで */

.footer_nav a {
  transition: .5s;
}

.footer_nav a:hover {
  color: #f4efeb;
}

.footer_policy {
  display: none;
}

.footer_copyright {
  display: block;
  margin: 99px 0 20px;
  text-align: end;
}

/* トップに戻る */
.page_top_btn {
  position: fixed;
  right: 50px;
  bottom: 30px;
  z-index: 10;
  visibility: hidden;
  color: #007e93;
  font-weight: 500;
  opacity: 0;
  transition: .8s;
}

.btn_active {
  visibility: visible;
  opacity: 1;
}

.page_top_btn::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 8px;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #007e93;
}

.page_top_btn::after {
  content: '';
  position: absolute;
  top: -29px;
  left: 26px;
  display: block;
  width: 15px;
  height: 15px;
  border-top: 3px solid #f4efeb;
  border-right: 3px solid #f4efeb;
  transform: rotate(-45deg);
}

/* アニメーション on・off */
.scroll_Anime {
  opacity: 0;
}

.scroll_Anime.on {
  opacity: 1.0;
  transition: opacity 1.5s ease-in-out;
}

.scroll_Anime.scroll_up.on,
.scroll_Anime.scroll_down.on,
.scroll_Anime.slider_left.on,
.scroll_Anime.slider_right.on,
.scroll_Anime.slider_left-diagonal.on,
.scroll_Anime.slider_right-diagonal.on {
  transition: transform 1.5s ease-in-out;
  transform: translateX(0);
  transform: translateY(0);
}

/* 下から上へ出現 */
.scroll_up {
  transition: 1.5s ease-in-out;
  transform: translateY(50px);
}

/* 上から下へ出現 */
.scroll_down {
  transition: 1.5s ease-in-out;
  transform: translateY(-50px);
}

/* 左から右へ出現 */
.slider_left {
  transition: 1.5s ease-in-out;
  transform: translateX(-50px);
}

/* 右から左へ出現 */
.slider_right {
  transition: 1.5s ease-in-out;
  transform: translateX(50px);
}

/* 左下から右上へ出現 */
.slider_left-diagonal {
  transition: 2.5s ease-in-out;
  transform: translate(-50px, 50px);
}

/* 右下から左上へ出現 */
.slider_right-diagonal {
  transition: 2.5s ease-in-out;
  transform: translate(50px, 50px);
}

/* レスポンシブ */
.none {
  display: none;
}

/* レスポンシブ 1440px以上 */
@media (min-width: 1441px) {

  /* SNS */
  .sns_container {
    padding: 0 0 950px;
  }

  .wave1,
  .wave2 {
    min-width: 2560px;
  }
}

/* レスポンシブ 1000px */

@media (max-width: 1000px) {

  /* ヘッダー */
  .header {
    position: fixed;
    top: 10px;
    z-index: 15;
    width: 100%;
  }

  /* ハンバーガーメニュー */
  .header_container nav {
    margin-top: 30px;
  }

  .toggle_btn {
    position: relative;
    z-index: 15;
    display: inline-block;
    width: 32px;
    height: 2px;
    background-color: #101010;
    transition: background-color 10ms 300ms ease;
  }

  .toggle_btn::before,
  .toggle_btn::after {
    content: '';
    position: absolute;
    z-index: 15;
    width: 32px;
    height: 2px;
    background: black;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  }

  .toggle_btn::before {
    top: -8px;
  }

  .toggle_btn::after {
    top: 8px;
  }

  .toggle .toggle_btn {
    background-color: transparent;
  }

  .toggle .toggle_btn::before,
  .toggle .toggle_btn::after {
    top: 0;
    z-index: 15;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  }

  .toggle .toggle_btn::before {
    transform: rotate(45deg);
  }

  .toggle .toggle_btn::after {
    transform: rotate(-45deg);
  }

  /* ハンバーガーメニューここまで */

  /* gnav */

  .header_gnav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
    width: 50%;
    height: 100vh;
    background-color: #72b4bd;
    color: #101010;
    font-size: 18px;
    transition: .8s;
    transform: translateX(200%);
  }

  .toggle .header_gnav {
    transform: translateX(100%);
  }

  .is-resize {
    transition: none;
  }

  .header_gnav {
    gap: 0;
  }

  .header_gnav_link {
    height: auto;
  }

  .header_gnav_link:not(:first-child) {
    margin-top: 30px;
  }

  .header_gnav_link.none {
    display: flex;
  }

  .header_gnav_link::before {
    display: none;
  }

  .header_btn {
    padding: 30px 50px;
    background-color: #f4efeb;
    color: #101010;
    font-size: 18px;
  }

  .header_btn::before {
    content: url(../img/responsive/common/mail_icon.svg);
  }

  .header_gnav_btn {
    margin-top: 70px;
  }

  /* gnavここまで */

  .page_top {
    display: none;
  }

  /* SNS */

  .sns_container {
    padding: 0 0 810px;
  }

  .wave1,
  .wave2 {
    min-width: 1000px;
  }

  .wave1 {
    animation: wave1 8.3s -8.3s linear infinite;
  }

  .wave2 {
    animation: wave2 8.3s linear infinite;
  }

  .sns_decoration {
    margin-top: 110px;
    width: 1250px;
  }

  .sns_x .twitter-timeline {
    overflow: hidden;
    width: clamp(326px, 35vw, 350px) !important;
    height: 532px !important;
  }

  .sns_instagram .sns_post {
    width: clamp(326px, 35vw, 350px) !important;
  }

  .sns_instagram iframe {
    width: clamp(326px, 35vw, 350px) !important;
  }

  .sns_x {
    margin-right: 5vw;
  }

  /* お問い合わせ */

  .contact .responsive_column {
    flex-direction: column;
  }

  .contact_inner {
    padding: 70px 0;
  }

  .contact_wraper {
    max-width: 700px;
    width: 92%;
  }

  .contact_area {
    padding: 20px 0 20px;
    width: 100%;
    height: 192px;
  }

  .contact_area:first-child {
    margin-right: auto;
  }

  .responsive_mg_top_30 {
    margin-top: 30px;
  }

  .contact_btn_area {
    margin-top: 40px;
  }

  .contact_time {
    margin: 20px auto 0;
  }

  .wood_shrimp_illust_1 {
    top: -22%;
    left: -16%;
    min-width: 183px;
    width: 32%;
  }

  .wood_shrimp_illust_2 {
    top: 80%;
    right: -7%;
    min-width: 104px;
    width: 26.5%;
  }

  /* フッター */
  .footer_inner {
    margin: 50px auto 0;
  }

  .footer_shop {
    justify-content: center;
    width: 100%;
  }

  .footer_info,
  .footer_nav {
    display: none;
  }

  .footer_logo {
    margin-left: 21px;
  }

  .footer_logo .logo {
    width: 100%;
  }

  .footer_contact {
    margin-left: 9px;
  }

  .footer_policy {
    display: block;
    margin-top: 50px;
    text-align: center;
    transition: .5s;
  }

  .footer_policy:hover {
    color: #f4efeb;
  }

  .footer_copyright {
    margin: 10px 0 20px;
    text-align: center;
  }
}

/* レスポンシブ 768px */
@media (max-width: 768px) {
  /* SNS */

  .sns .responsive_column {
    flex-direction: column;
  }

  .sns_container {
    padding: 40px 0 1700px;
  }

  .wave1,
  .wave2 {
    min-width: 768px;
  }

  .wave1 {
    animation: wave1 14.6s -14.6s linear infinite;
  }

  .wave2 {
    animation: wave2 14.6s linear infinite;
  }

  .sns_decoration {
    top: 13.5%;
    left: 56%;
    margin-top: auto;
    width: 100%;
  }

  .sns_inner {
    top: 11%;
    margin: auto;
  }

  .sns_img {
    max-width: 100%;
  }

  .sns_x {
    margin: 40px auto 0;
  }

  .sns .responsive_mg_top_40 {
    margin-top: 40px;
  }

  .sns_x .twitter-timeline {
    width: 420px !important;
    height: 570px !important;
  }

  /* Instagramの投稿サイズ調整 */
  .sns_instagram .sns_post {
    width: 420px !important;
  }

  .sns_instagram iframe {
    width: 420px !important;
  }
}

/* レスポンシブ 620px */

@media (max-width: 620px) {

  /* 余白 */
  .responsive_mg_top_15 {
    margin-top: 15px;
  }

  .responsive_mg_top_20 {
    margin-top: 20px;
  }

  .responsive_mg_top_30 {
    margin-top: 30px;
  }

  .responsive_mg_top_40 {
    margin-top: 40px;
  }

  .responsive_mg_top_150 {
    margin-top: 150px;
  }

  .responsive_pd_top_100 {
    padding-top: 100px;
  }

  .contact_container {
    padding-top: 100px;
  }

  /* 見出し */
  .common_h2 {
    display: block;
    text-align: center;
    font-size: 40px;
  }

  .common_h2::before {
    content: url(../img/responsive/common/heading_decorate.svg);
  }

  /* 本文 */
  .responsive_common_text {
    font-size: 14px;
    line-height: 170%;
  }

  /* ボタン */
  .btn_font {
    font-size: 16px;
  }

  .btn {
    padding: 11px 63px 13px;
  }

  /* ヘッダー */
  .header {
    position: fixed;
    top: 20px;
    z-index: 15;
    width: 100%;
  }

  .header_container {
    padding: 0;
    width: 92%;
  }

  .logo {
    z-index: 15;
    min-width: auto;
    width: 54px;
  }

  /* ハンバーガーメニュー */

  .header_container nav {
    margin-top: 3px;
  }

  .toggle_btn,
  .toggle_btn::before,
  .toggle_btn::after {
    width: 24px;
  }

  .toggle_btn::before {
    top: -5px;
  }

  .toggle_btn::after {
    top: 5px;
  }

  /* ハンバーガーメニューここまで */

  /* gnav */

  .header_gnav {
    width: 100%;
    transform: translateX(100%);
  }

  .toggle .header_gnav {
    transform: translateX(0);
  }

  /* gnavここまで */

  /* SNS */

  .sns_h2 {
    font-size: 40px;
  }

  .sns_container {
    padding: 20px 0 1420px;
  }

  .wave1,
  .wave2 {
    min-width: 620px;
  }

  .wave1 {
    animation: wave1 13.6s -13.6s linear infinite;
  }

  .wave2 {
    animation: wave2 13.6s linear infinite;
  }

  .sns_decoration {
    top: 12.5%;
    left: 61%;
  }

  .sns_img {
    max-width: 550px;
  }

  .sns_title {
    font-size: 28px;
  }

  .sns_x .twitter-timeline {
    overflow: hidden;
    width: 311px !important;
    height: 470px !important;
  }

  /* Instagramの投稿サイズ調整 */
  .sns_instagram .sns_post {
    width: 326px !important;
  }

  /* お問い合わせ */

  .contact_wraper {
    min-width: 343px;
    width: 80.7%;
  }

  .contact_read {
    font-size: 18px;
  }

  .contact_tel {
    font-size: 32px;
  }

  .contact_btn_area {
    margin-top: 40px;
  }

  .wood_shrimp_illust_1 {
    top: -22%;
  }

  .wood_shrimp_illust_2 {
    top: 89%;
  }

  .contact_btn {
    font-size: 20px;
  }

  /* フッター */

  .footer_container {
    background-image: url(../img/responsive/common/footer_background_620.jpg);
  }
}

/* レスポンシブ 375px */

@media (max-width: 375px) {
  /* SNS */

  .sns_decoration {
    top: 11.5%;
    left: 53%;
  }

  .sns_container {
    padding: 20px 0 1390px;
  }

  /* フッター */
  .footer_container {
    background-image: url(../img/responsive/common/footer_background_375.jpg);
  }
}