@charset 'UTF-8';
:root {
  --headline: #272343;
  --text: #2d334a;
  --stroke: #272343;
  --background: #fffffe;
  --secondly: #e3f6f5;
  --thirdly: #bae8e8;
  --button: #ffd803;
  --hilight: #ffd803;
  --Button-text: #272343;
  --font-xsm: 0.875rem;
  --font-sm: 1rem;
  --font-md: 1.25rem;
  --font-lg: 1.5rem;
  --font-pc-h2: 3rem;
  --font-sp-h2: 2rem;
  --sp-spacing-l: 80px;
  --sp-title-buttom: 40px;
  --pc-spacing-l: 120px;
  --pc-title-buttom: 80px;
  --round: 4px;
}
html {
  touch-action: manipulation;
}
body {
  font-family:  sans-serif;
  font-size: var(--font-sm);
  line-height: 1.8;
  font-weight: 400;
}
p {
  color: var(--text);
  margin-bottom: 10px;
}
h2 {
  font-family: "Montserrat", sans-serif;
  color: var(--headline);
  font-size: var(--font-sp-h2);
  margin-bottom: 1rem;
  line-height: 1.15;
  font-weight: 700;
}
h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--headline);
  font-size: var(--font-md);
  line-height: 30px;
  font-weight: 700;
}
nav {
  width: 100%;
  background-color: var(--background);
  z-index: 2;
}
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--background);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.nav-center {
  width: 90vw;
  justify-content: space-between;
  margin: 0 auto;
}
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-title {
  line-height: 1px;
}
.site-title img {
  width: 80%;
}
.nav-toggle {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.nav-toggle span {
  position: absolute;
  transition: all 0.4s;
  display: inline-block;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #dac92e;
  width: 45%;
  position: absolute;
}
.nav-toggle span:nth-of-type(1) {
  top: 15px;
}
.nav-toggle span:nth-of-type(2) {
  top: 23px;
}
.nav-toggle span:nth-of-type(3) {
  top: 31px;
}
.nav-toggle.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.nav-toggle.active span:nth-of-type(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.links {
  display: block;
}
li {
  font-family: "Montserrat", sans-serif;
  font-size: var(--font-sm);
  padding: 1rem;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
}
.links a,
.footer-links a {
  transition: all 0.3s linear;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.links a:hover,
.footer-links a:hover {
  border-bottom: 2px solid var(--hilight);
  color:var(--headline);
  text-decoration: none;
}
.link-container {
  height: 0;
  overflow: hidden;
  transition: all 0.3s linear;
}
#contact-form {
  padding-top: var(--sp-spacing-l);
  padding-bottom: var(--sp-spacing-l);
  background-color: var(--secondly);
}
.section-header {
  text-align: center;
  margin-bottom: var(--sp-title-buttom);
  padding: 0 1.8rem;
}
.section-description {
  max-width: 650px;
  margin: 0 auto;
}
.form-check-input {
  position: absolute;
  margin-top: .4rem;
  margin-left: -1.25rem;
  width: 20px;
  height: 20px;
}

/* ラベルとラジオボタンを中央揃え */
.form-check {
  display: flex;
  align-items: center;
}

/* ラジオボタンとラベルの間隔 */
.form-check-label {
  margin-left: 10px;
}

.thankyou-icon,
.sorry-icon {
  display: block;
  max-width: 250px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.grecaptcha-badge { 
  visibility: hidden; 
}

.reCAPTCHA-dsc {
  text-align: center;
  margin: 0 auto;
  margin-top: 2rem;
  font-size: 1rem;
  padding: 0 1.8rem;
}

.footer-logo {
  margin: 1rem;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1014px;
  margin: 0 auto;
  padding: 5rem 0;
}

.footer-links {
  order: 2;
}

.footer-links li {
  padding: 0.5rem;
}

.Copyright {
  font-size: var(--font-xsm);
  text-align: right;
  background-color: var(--background);
  padding: 6px 10px;
}

@media (min-width: 800px) {
  body {
    font-size: var(--font-md);
  }

  h2 {
    font-size: var(--font-pc-h2);
  }

  h3 {
    font-size: var(--font-lg);
  }
  
.nav-center {
  width: 90vw;
  margin: 0 auto;
  display: flex;
  max-width: 1170px;
}

.nav-toggle {
  display: none;
}

.link-container {
  display: block;
  height: auto !important;
}

.links {
  display: flex;
}

li {
  font-size: var(--font-md);
}

#contact-form {
  padding-top: var(--pc-spacing-l);
  padding-bottom: var(--pc-spacing-l);
}

.footer-wrap {
  flex-direction: row;
  justify-content: space-between;
  padding-right: 1rem;
  padding-left: 1rem;
}

.footer-logo {
  order: 2;
}

.footer-links li{
  text-align: left;
}

}