@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
body {
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
}
@media (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}
@media (min-width: 1320px) {
  body {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}

p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
}
p.large {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 768px) {
  p.large {
    font-size: 1.8rem;
  }
}

.title_en {
  color: #767879;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .title_en {
    margin-bottom: 24px;
    text-align: center;
  }
}

h2 {
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

figcaption {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
  margin-top: 1em;
}
@media (max-width: 768px) {
  figcaption {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

footer {
  font-family: "Noto Sans JP", sans-serif;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  overflow-x: hidden;
  transition: transform 0.3s ease;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-text-size-adjust: 100%;
  background-color: #1a1800;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

.align_center {
  text-align: center;
}

.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}

span.inline_block {
  display: inline-block;
}

li {
  list-style: none;
}

.inner {
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 769px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.inner_large {
  max-width: 1640px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 769px) {
  .inner_large {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.inner_ml {
  max-width: 1260px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 769px) {
  .inner_ml {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.inner_m {
  max-width: 1128px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1101px) {
  .pc_s_visible {
    display: none;
  }
}
@media (min-width: 769px) {
  .pc_align_center {
    text-align: center;
  }
  span.pc_inline_block {
    display: inline-block;
  }
}
@media (max-width: 1100px) {
  .pc_m_visible {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc_visible, .pc_m_visible {
    display: none;
  }
  .pc_s_visible.sp_hidden {
    display: none;
  }
}
.spacer_m {
  margin-bottom: 56px;
}
@media (max-width: 1100px) {
  .spacer_m {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .spacer_m {
    margin-bottom: 24px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

.button {
  display: block;
  color: #344f9e;
  border: solid 1px #000000;
  font-size: 2rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  line-height: 1;
  padding-top: 1.2em;
  padding-bottom: 1.3em;
  width: 100%;
  transition: all 0.3s;
}
.button:hover {
  color: #fff;
  background-color: #344f9e;
  border: solid 1px #344f9e;
}
@media (max-width: 1100px) {
  .button {
    font-size: 1.8rem;
  }
}
.button.sakama {
  color: #349e93;
}
.button.sakama:hover {
  color: #fff;
  background-color: #349e93;
  border: solid 1px #349e93;
}

.button_pagetop {
  position: fixed;
  cursor: pointer;
  opacity: 0;
  right: 10px;
  bottom: 10px;
  z-index: 10;
}
.button_pagetop img {
  width: 56px;
  height: 56px;
}
.button_pagetop.show {
  opacity: 1;
  transition: opacity 1s;
}

button.toggle_btn {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
}
@media (min-width: 1101px) {
  button.toggle_btn {
    display: none;
  }
}
@media (max-width: 768px) {
  button.toggle_btn {
    top: 0;
    right: 0;
  }
}
button.toggle_btn .button_parts > span {
  background-color: #ffffff;
  width: 32px;
  height: 2px;
  display: block;
  margin-bottom: 8px;
  transition: transform 0.7s;
}
button.toggle_btn .button_parts > span:last-child {
  margin-bottom: 0;
}
button.toggle_btn .button_parts.add_color > span {
  background-color: #000000;
}
button.toggle_btn.open span {
  background-color: #000000;
}
button.toggle_btn.open span:nth-child(1) {
  transition-delay: 25ms;
  transform: translateY(10px) rotate(135deg);
}
button.toggle_btn.open span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-10px) scaleX(0);
}
button.toggle_btn.open span:nth-child(3) {
  transition-delay: 50ms;
  transform: translateY(-10px) rotate(-135deg);
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.justify_center {
  justify-content: center;
}

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

.gap8 {
  gap: 8px 8px;
}

.gap1em {
  gap: 1em 1em;
}

.col5 {
  width: 16%;
}

@media (min-width: 769px) {
  .pc_flex {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_space_between {
    justify-content: space-between;
  }
  .pc_center {
    justify-content: center;
  }
  .pc_flex_reverse {
    flex-direction: row-reverse;
  }
  .pc_col70 {
    width: 70%;
  }
  .pc_col30 {
    width: 30%;
  }
  .pc_align_items_center {
    align-items: center;
  }
  .pc_align_items_end {
    align-items: flex-end;
  }
}
.flex_column {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1101px) {
  .flex_wide_m {
    display: flex;
    flex-wrap: wrap;
  }
}
.add_separate_line::after {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  background-color: #ffffff;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .add_separate_line::after {
    width: 64px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}

header {
  position: relative;
  background-image: linear-gradient(148deg, #000000 0%, #000000 60%, #636db0 120%);
  color: #ffffff;
  padding-top: 40px;
  padding-bottom: 100px;
}
@media (max-width: 1100px) {
  header {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  header {
    padding-top: 20px;
    padding-bottom: 40px;
    background-image: linear-gradient(148deg, #000000 0%, #000000 60%, #636db0 120%);
  }
}
header .site_logo {
  width: 148px;
}
@media (max-width: 768px) {
  header .site_logo {
    width: 80px;
  }
}
header ul.nav {
  margin-left: auto;
}
@media (min-width: 1101px) {
  header ul.nav {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 1100px) {
  header ul.nav {
    padding-top: 80px;
    background-color: #fff;
    width: 320px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    left: 100%;
    z-index: 50;
    transition: all 0.4s;
  }
  header ul.nav li:not(:last-child) a {
    color: #000000;
  }
  header ul.nav li:last-child {
    margin-left: 20px;
    margin-top: 20px;
  }
  header ul.nav li:last-child a {
    width: -moz-fit-content;
    width: fit-content;
    padding: 16px;
  }
}
header ul.nav li a {
  color: inherit;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0.65em 28px 0.75em;
  line-height: 1;
  transition: all 0.3s;
  display: block;
}
header ul.nav li a:hover {
  opacity: 0.7;
}
header ul.nav li:last-child a {
  background-color: #001945;
  border-radius: 25px;
}
header ul.nav li:last-child a:hover {
  opacity: 0.8;
  background-color: #344f9e;
}

@media (max-width: 1100px) {
  body.open ul.nav {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

footer {
  background-color: #1a1800;
  color: #ffffff;
  padding-top: 72px;
  padding-bottom: 72px;
}
@media (max-width: 1100px) {
  footer {
    padding-top: 56px;
    padding-bottom: 24px;
  }
}
@media (max-width: 768px) {
  footer {
    padding-top: 40px;
    padding-bottom: 24px;
  }
}
footer .logo {
  width: min(100%, 406px);
}
@media (max-width: 1100px) {
  footer .logo {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  footer .logo {
    margin-bottom: 24px;
  }
}
footer dl {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.8;
  padding-bottom: 8px;
}
@media (min-width: 1101px) {
  footer dl {
    border-left: solid 1px #ffffff;
    margin-left: auto;
    padding-left: 55px;
  }
}
@media (max-width: 768px) {
  footer dl {
    font-size: 1.4rem;
    margin-right: auto;
    margin-left: auto;
  }
}
footer dl .flex {
  align-items: baseline;
}
@media (max-width: 1100px) {
  footer dl .flex:not(:last-child) {
    margin-bottom: 0.5em;
  }
}
footer dl dt {
  width: 104px;
}
@media (max-width: 768px) {
  footer dl dt {
    width: 70px;
  }
}
@media (max-width: 768px) {
  footer dl dd {
    width: calc(100% - 80px);
  }
}
footer dl dd span {
  display: block;
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  footer dl dd span {
    font-size: 1.6rem;
  }
}
@media (min-width: 769px) {
  footer .link {
    padding-left: 5%;
  }
}
@media (max-width: 1280px) {
  footer .link {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media (max-width: 1100px) {
  footer .link {
    margin-top: 24px;
  }
}
footer .link a {
  display: block;
  color: inherit;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.2;
  transition: all 0.3s;
}
footer .link a:hover {
  opacity: 0.7;
}
footer .link .qrcode {
  width: 100px;
  margin-bottom: 20px;
}
@media (max-width: 1280px) {
  footer .link .qrcode {
    margin-bottom: 0;
    margin-right: 40px;
  }
}
footer .link .instagram {
  position: relative;
  padding-left: 40px;
  height: -moz-fit-content;
  height: fit-content;
}
footer .link .instagram::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background-image: url(../images/common/icon_instagram.svg);
  background-size: contain;
  width: 28px;
  height: 28px;
}
footer p {
  font-size: 1.8rem;
}
@media (max-width: 1100px) {
  footer p {
    margin-bottom: 1em;
  }
}
@media (max-width: 768px) {
  footer p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2em;
  }
}
footer .copyright {
  font-size: 1.4rem;
}
@media (min-width: 769px) {
  footer .copyright {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  footer .copyright {
    font-size: 1.1rem;
  }
}

@media (min-width: 769px) {
  #kv {
    position: relative;
    margin-top: 20px;
  }
}
@media (min-width: 1101px) {
  #kv .kv_img {
    width: 806px;
    position: absolute;
    left: 525px;
  }
}
@media (max-width: 1100px) {
  #kv .kv_img {
    width: 96%;
    margin-left: auto;
    margin-top: 16px;
  }
}
#kv h1 {
  padding-top: 60px;
}
@media (max-width: 1100px) {
  #kv h1 {
    padding-top: initial;
  }
}
#kv h1 img {
  width: min(35%, 234px);
}
#kv h2 {
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 24px;
}
@media (max-width: 1100px) {
  #kv h2 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #kv h2 {
    font-size: 2.5rem;
    letter-spacing: 0em;
  }
}
#kv h2 span {
  display: inline-block;
}
#kv p {
  line-height: 2;
  letter-spacing: 0.08em;
  font-feature-settings: "palt" 1;
  display: inline-block;
}
@media (max-width: 1100px) {
  #kv p {
    letter-spacing: 0.1em;
  }
}

#about {
  background-color: #232b3b;
  padding-top: 100px;
  padding-bottom: 160px;
}
@media (max-width: 1100px) {
  #about {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  #about {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
#about .block {
  position: relative;
  background-color: #000000;
  color: #ffffff;
  padding-top: 56px;
  padding-bottom: 56px;
}
@media (max-width: 1100px) {
  #about .block {
    padding: 40px 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  #about .block {
    padding: 32px 24px;
  }
}
#about .block::before, #about .block::after {
  position: absolute;
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 150px;
  height: 103px;
}
@media (max-width: 768px) {
  #about .block::before, #about .block::after {
    width: 19.53125vw;
    height: 13.4114583333vw;
  }
}
#about .block::before {
  background-image: url(../images/common/fish_top_right.png);
  top: -48px;
  right: 30px;
}
@media (max-width: 768px) {
  #about .block::before {
    top: -6.25vw;
    right: 3.90625vw;
  }
}
#about .block::after {
  background-image: url(../images/common/fish_bottom_left.png);
  bottom: -70px;
  left: -35px;
}
@media (max-width: 768px) {
  #about .block::after {
    bottom: -9.1145833333vw;
    left: -1.3020833333vw;
  }
}
#about .flex_wide_m {
  align-items: center;
}
#about .logo {
  text-align: center;
}
@media (min-width: 1101px) {
  #about .logo {
    width: 30%;
  }
}
#about .logo img {
  width: 162px;
}
@media (max-width: 768px) {
  #about .logo img {
    width: 120px;
  }
}
@media (min-width: 1101px) {
  #about .text {
    width: 70%;
  }
}
@media (max-width: 1100px) {
  #about .text {
    display: inline-block;
    text-align: left;
  }
}
#about h2 {
  margin-bottom: 0.25em;
  font-feature-settings: "palt" 1;
}
@media (max-width: 768px) {
  #about h2 {
    margin-bottom: 0.25em;
    margin-top: 24px;
  }
}
#about h3 {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-family: inherit;
  font-weight: 500;
  font-variant-east-asian: proportional-width;
  font-feature-settings: "palt" 1;
  margin-bottom: 1em;
  text-indent: -0.5em;
}
@media (max-width: 768px) {
  #about h3 {
    font-size: 1.8rem;
  }
}
#about p + p {
  margin-top: 1em;
}

#kodawari {
  padding-top: 100px;
  padding-bottom: 68px;
  color: #ffffff;
  background-color: #1a1800;
  position: relative;
}
@media (max-width: 1100px) {
  #kodawari {
    padding-top: 70px;
    padding-bottom: 48px;
  }
}
@media (max-width: 768px) {
  #kodawari {
    padding-top: 40px;
    padding-bottom: 16px;
  }
}
#kodawari::before {
  position: absolute;
  top: 72px;
  right: 0;
  content: "";
  display: block;
  background-image: url(../images/common/bg_fish.svg);
  background-size: contain;
  width: 363px;
  height: 120px;
}
@media (max-width: 1100px) {
  #kodawari::before {
    top: 72px;
  }
}
@media (max-width: 768px) {
  #kodawari::before {
    width: 254px;
    height: 84px;
  }
}
#kodawari h2 {
  text-align: center;
}
@media (min-width: 1101px) {
  #kodawari h2 {
    margin-top: -105px;
  }
}
#kodawari .block_line {
  border: solid 1px #ffffff;
  padding: 38px 32px 40px;
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 769px) {
  #kodawari .block_line {
    width: 48.5%;
  }
}
@media (max-width: 768px) {
  #kodawari .block_line {
    padding: 24px 32px 32px;
  }
}
#kodawari .pc_flex {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 72px;
}
@media (max-width: 1100px) {
  #kodawari .pc_flex {
    margin-top: 56px;
  }
}
@media (max-width: 768px) {
  #kodawari .pc_flex {
    margin-top: 40px;
  }
}
#kodawari .number {
  font-size: 5.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  margin-bottom: 0.7em;
}
@media (max-width: 768px) {
  #kodawari .number {
    font-size: 4rem;
  }
}
#kodawari h3 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1em;
  text-align: center;
}
@media (max-width: 768px) {
  #kodawari h3 {
    font-size: 2.2rem;
  }
}
#kodawari h3 span.inline_block {
  display: inline-block;
}
#kodawari .block_inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  #kodawari .block_inner {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
#kodawari .block_inner p {
  text-align: left;
  letter-spacing: 0;
}
#kodawari .block_inner p span {
  display: block;
}

#kuetama {
  background-color: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1100px) {
  #kuetama {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  #kuetama {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#kuetama .title_en {
  margin-bottom: 10px;
  text-align: right;
}
#kuetama h2 {
  margin-bottom: 1em;
}
@media (max-width: 1100px) {
  #kuetama h2 {
    margin-top: 0.6em;
    margin-bottom: 0.6em;
  }
}
#kuetama p.large {
  margin-bottom: 1em;
}
#kuetama p.inline_block {
  display: inline-block;
}
@media (min-width: 1101px) {
  #kuetama .image_block {
    width: 50%;
    margin-right: 5%;
  }
}
@media (min-width: 1101px) {
  #kuetama .text_block {
    width: min(45%, 520px);
    margin-top: 48px;
  }
}
#kuetama .text_block p {
  font-feature-settings: "palt" 1;
}
#kuetama .num-style {
  margin-top: 64px;
  counter-reset: number;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1100px) {
  #kuetama .num-style {
    flex-direction: column;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  #kuetama .num-style {
    margin-top: 32px;
  }
}
#kuetama .num-style li {
  counter-increment: number;
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  background-color: #ffffff;
  box-shadow: 1px 2px 10px 0px rgba(50, 76, 142, 0.1);
  width: min(100%, 480px);
  padding-top: 0.33em;
  padding-bottom: 0.43em;
  padding-left: 9px;
  border-radius: 40px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 1180px) {
  #kuetama .num-style li {
    width: 515px;
  }
}
@media (min-width: 1101px) {
  #kuetama .num-style li:nth-child(even) {
    margin-top: 30px;
  }
  #kuetama .num-style li:nth-child(3) {
    margin-left: 40px;
  }
  #kuetama .num-style li:nth-child(5) {
    margin-left: 80px;
  }
}
@media (max-width: 1100px) {
  #kuetama .num-style li {
    width: 520px;
  }
  #kuetama .num-style li:nth-child(2) {
    margin-left: 40px;
  }
  #kuetama .num-style li:nth-child(3) {
    margin-left: 80px;
  }
  #kuetama .num-style li:nth-child(4) {
    margin-left: 120px;
  }
  #kuetama .num-style li:nth-child(5) {
    margin-left: 160px;
  }
}
@media (max-width: 768px) {
  #kuetama .num-style li {
    font-size: 1.8rem;
    width: 100%;
  }
  #kuetama .num-style li:nth-child(2) {
    margin-left: 0;
  }
  #kuetama .num-style li:nth-child(3) {
    margin-left: 0;
  }
  #kuetama .num-style li:nth-child(4) {
    margin-left: 0;
  }
  #kuetama .num-style li:nth-child(5) {
    margin-left: 0;
  }
}
#kuetama .num-style li::before {
  content: counter(number);
  font-weight: bold;
  font-weight: 500;
  font-size: 3.5rem;
  margin-right: 0.5em;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  line-height: 1;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.1em;
}
@media (max-width: 768px) {
  #kuetama .num-style li::before {
    font-size: 2.4rem;
    width: 48px;
    height: 48px;
  }
}

#dishes {
  background-color: #232b3b;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #ffffff;
}
@media (max-width: 1100px) {
  #dishes {
    padding-top: 70px;
    padding-bottom: 32px;
  }
}
@media (max-width: 768px) {
  #dishes {
    padding-top: 40px;
    padding-bottom: 16px;
  }
}
#dishes h2 {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  #dishes h2 {
    margin-bottom: 24px;
  }
}
#dishes .flex {
  gap: 2%;
}
@media (max-width: 768px) {
  #dishes .flex {
    gap: 4%;
  }
}
@media (min-width: 769px) {
  #dishes figure {
    width: 18.4%;
  }
}
@media (max-width: 1100px) {
  #dishes figure {
    width: 32%;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  #dishes figure {
    width: 48%;
    margin-bottom: 24px;
  }
}

#contact {
  background-image: linear-gradient(152deg, #000000 0%, #000000 55%, #636db0 110%);
  color: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 1100px) {
  #contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  #contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#contact::before {
  position: absolute;
  top: 32px;
  left: 40px;
  content: "";
  display: block;
  background-image: url(../images/common/bg_fish_left.svg);
  background-size: contain;
  width: 363px;
  height: 120px;
}
@media (max-width: 1100px) {
  #contact::before {
    top: 32px;
    left: 10px;
  }
}
@media (max-width: 768px) {
  #contact::before {
    width: 47.265625vw;
    height: 15.625vw;
  }
}
#contact h2 {
  text-align: center;
  margin-bottom: 1em;
}
#contact .pc_flex {
  margin-top: 48px;
}
@media (max-width: 768px) {
  #contact .pc_flex {
    margin-top: 24px;
  }
}
#contact .block {
  background-color: #ffffff;
  color: #000000;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  #contact .block {
    width: 49%;
    padding: 56px 20px;
  }
}
@media (max-width: 1100px) {
  #contact .block {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  #contact .block {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  #contact .block + .block {
    margin-top: 32px;
  }
}
#contact .block h3 {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media (max-width: 1100px) {
  #contact .block h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  #contact .block h3 {
    font-size: 2.4rem;
  }
}
#contact .block p {
  font-size: 1.7rem;
  line-height: 1.76;
  display: inline-block;
  text-align: left;
  margin-bottom: 1em;
  max-width: 460px;
}
@media (max-width: 768px) {
  #contact .block p {
    font-size: 1.5rem;
  }
}
#contact .block p.pc_align_center {
  font-size: 1.6rem;
  margin-top: 1em;
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 768px) {
  #contact .block p.pc_align_center {
    font-size: 1.4rem;
  }
}
#contact .block .button {
  margin-top: auto;
  max-width: 460px;
  margin-right: auto;
  margin-left: auto;
}
#contact .block_inner {
  max-width: 466px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/*# sourceMappingURL=styles.css.map */
