@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: none;
  box-sizing: border-box;
}

/* iOSのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* iOSサファリで発生する部分的な文字の拡大表示の抑制 */
html {
  -webkit-text-size-adjust: 100%;
}

:root {
  --bg-color_01: #CDD7D6;
  --bg-color_02: #CECECE;
  --bg-color_03: #E5E5E5;
  --bg-color_04: #053931;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  color: #2d2d2d;
  line-height: 1.8;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a:link {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border: none;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

button {
  border: 0;
  outline: none;
  font-size: 0;
  color: transparent;
  background-color: transparent;
}

.mgn_b_10 {
  margin: 0 0 10px 0;
}

.mgn_b_20 {
  margin: 0 0 20px 0;
}

.mgn_b_30 {
  margin: 0 0 30px 0;
}

.mgn_b_40 {
  margin: 0 0 40px 0;
}

.mgn_b_50 {
  margin: 0 0 50px 0;
}

.mgn_b_60 {
  margin: 0 0 60px 0;
}

.mgn_b_70 {
  margin: 0 0 70px 0;
}

header {
  width: 100%;
  padding: 20px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
}
header.sticky {
  transition: 0.3s;
  background-color: #2d2d2d;
}
header #top {
  width: min(1240px, 100%);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header #top {
    width: 100%;
  }
}
header #top #logo_01 {
  width: 175px;
}
@media screen and (max-width: 768px) {
  header #top #logo_01 {
    display: none;
  }
}
header #top #logo_02 {
  display: none;
  width: 44px;
}
@media screen and (max-width: 768px) {
  header #top #logo_02 {
    display: block;
  }
}
header #top #trigger {
  width: 30px;
  height: 20px;
  display: none;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  header #top #trigger {
    display: block;
  }
}
header #top #trigger span {
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  background-color: #fff;
  transition: 0.2s;
}
header #top #trigger span:nth-of-type(1) {
  top: 0;
}
header #top #trigger span:nth-of-type(2) {
  top: 9px;
}
header #top #trigger span:nth-of-type(3) {
  bottom: 0;
}
header #top #trigger.open span {
  background-color: #2d2d2d;
}
header #top #trigger.open span:nth-of-type(1) {
  transform: translateY(8px) scale(0);
}
header #top #trigger.open span:nth-of-type(2) {
  transform: rotate(-45deg);
}
header #top #trigger.open span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  header #top #g_nav {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--bg-color_01);
    z-index: 1;
  }
}
header #top #g_nav #logo_03 {
  display: none;
  width: 50px;
  margin: 80px auto 40px auto;
}
@media screen and (max-width: 768px) {
  header #top #g_nav #logo_03 {
    display: block;
  }
}
header #top #g_nav ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  header #top #g_nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0 60px 0;
  }
}
header #top #g_nav ul li a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  header #top #g_nav ul li a {
    font-size: 16px;
    color: #2d2d2d;
  }
}
header #top #g_nav ul li a:hover {
  color: #2d2d2d;
  transition: 0.3s;
  background-color: #83DCBF;
}
@media screen and (max-width: 768px) {
  header #top #g_nav ul li a:hover {
    color: #83DCBF;
    background-color: transparent;
  }
}
header #top #g_nav ul li a#nav_contact {
  color: #2d2d2d;
  background-color: #83DCBF;
}
@media screen and (max-width: 768px) {
  header #top #g_nav ul li a#nav_contact {
    color: #2d2d2d;
    background-color: transparent;
  }
  header #top #g_nav ul li a#nav_contact:hover {
    color: #83DCBF;
  }
}
header #top #g_nav ul li a#nav_contact:hover {
  color: #83DCBF;
  background-color: transparent;
}
header #top #g_nav #credit_1 {
  display: none;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  header #top #g_nav #credit_1 {
    display: block;
  }
}

.headline h1 {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .headline h1 {
    font-size: 20px;
  }
}
.headline span {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 40px 0 0 0;
  display: block;
}

.button a {
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1;
  display: block;
  padding: 20px 30px;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin-inline: auto;
  background-color: #2d2d2d;
  transition: 0.3s;
}
.button a:hover {
  color: #2d2d2d;
  background-color: #fff;
}

footer {
  padding: 30px 20px 10px 20px;
  color: #fff;
  background-color: #053931;
}
footer #footer_logo {
  width: min(1200px, 100%);
  padding: 0 0 30px 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer #footer_logo {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
}
footer #footer_logo div {
  width: 44px;
}
footer #footer_logo p {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  text-align: right;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  footer #footer_logo p {
    text-align: center;
  }
}
footer #footer_nav {
  padding: 20px 0;
  margin: 0 auto 20px auto;
  border-top: 1px solid rgba(206, 206, 206, 0.2);
  border-bottom: 1px solid rgba(206, 206, 206, 0.2);
}
footer #footer_nav ul {
  width: min(1200px, 100%);
  margin: auto;
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer #footer_nav ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
footer #footer_nav ul a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
}
footer #sns {
  margin: 0 0 20px 0;
  border-bottom: 1px solid rgba(206, 206, 206, 0.2);
}
footer #sns ul {
  width: min(1200px, 100%);
  margin: 0 auto 20px auto;
  display: flex;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer #sns ul {
    width: 100%;
    padding: 0 0 20px 0;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  footer #sns ul li:last-child {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translate(-50%, 0);
    margin: 0;
  }
}
footer #sns ul a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #fff;
}
footer #credit_2 {
  width: min(1200px, 100%);
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 768px) {
  footer #credit_2 {
    width: 100%;
    text-align: center;
  }
}/*# sourceMappingURL=common.css.map */