@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@600&family=Zen+Kaku+Gothic+New:wght@500;900&display=swap");
:root {
  --svh: 100vh;
  --color-text: var(--color-black);
  --color-bg: var(--color-white);
  --color-black: #000;
  --color-white: #fff;
  --color-green: #5b826f;
  --color-green-dark: #1c6643;
  --color-ruri: #004898;
  --color-nagi: #99ab4e;
  --ease_out: cubic-bezier(0.5, 1, 0.89, 1);
  --ease_inout: cubic-bezier(0.65, 0, 0.35, 1);
  --font-en: "Cormorant Unicase", serif;
}

@-webkit-keyframes bganime {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1333px 0;
  }
}

@keyframes bganime {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1333px 0;
  }
}
@-webkit-keyframes bganime_sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -889px 0;
  }
}
@keyframes bganime_sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -889px 0;
  }
}
body {
  position: relative;
}

.l-wrap {
  position: relative;
}
.l-wrap::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/main_01.jpg);
  background-size: cover;
}

.c-deco {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 150px;
  background: url(../img/img_cut.jpg) repeat-x;
  background-position: top left;
  background-size: 1333px 150px;
  -webkit-animation: bganime 40s linear infinite;
          animation: bganime 40s linear infinite;
}
@media only screen and (max-width:768px) {
  .c-deco {
    height: 100px;
    background: url(../img/img_cut.jpg) repeat-x;
    background-position: top left;
    background-size: 889px 100px;
    -webkit-animation: bganime_sp 20s linear infinite;
            animation: bganime_sp 20s linear infinite;
  }
}

.l-title {
  position: relative;
  z-index: 2;
  margin: 40px 40px 60px;
  padding: 40px 0;
  border: 4px solid #000;
  background: #fff;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .l-title {
    margin: 10.66vw 5.33vw;
    padding: 15vw 0;
  }
}
.l-title__logo {
  width: 400px;
  margin: auto;
  max-width: 750px;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media only screen and (max-width:768px) {
  .l-title__logo {
    width: 100%;
    padding: 0 5.33vw;
  }
}
.is-load .l-title__logo {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.l-title__mainttl {
  font-size: 5rem;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  color: var(--color-green-dark);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media only screen and (max-width:768px) {
  .l-title__mainttl {
    margin-top: 1rem;
    font-size: 3rem;
    line-height: 1;
  }
}
.l-title__mainttl small {
  font-size: 75%;
  vertical-align: baseline;
}
.is-load .l-title__mainttl {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.l-title__lead {
  display: block;
  position: relative;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media only screen and (max-width:768px) {
  .l-title__lead {
    font-size: 1.3rem;
  }
}
.is-load .l-title__lead {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.l-title__deco {
  display: block;
  position: absolute;
}
.l-title__deco.--deco01 {
  width: 17rem;
  bottom: -4.3rem;
  left: -2.5rem;
  max-width: 132px;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media only screen and (max-width:768px) {
  .l-title__deco.--deco01 {
    width: 8rem;
    bottom: -4rem;
    left: -2rem;
  }
}
.is-load .l-title__deco.--deco01 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.l-title__deco.--deco02 {
  width: 29rem;
  top: -4.3rem;
  right: -6.5rem;
  max-width: 320px;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media only screen and (max-width:768px) {
  .l-title__deco.--deco02 {
    width: 10rem;
    top: -3.5rem;
    right: -3rem;
  }
}
.is-load .l-title__deco.--deco02 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.p-section {
  position: relative;
  width: 90%;
  max-width: 104rem;
  display: block;
  margin: 100px auto;
  color: #000;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  background: rgba(255, 255, 255, 0.95);
}
@media only screen and (max-width:768px) {
  .p-section {
    margin: 10.66vw auto;
  }
}
.p-section__deco {
  display: block;
  position: absolute;
  z-index: 2;
}
.p-section__deco.--deco03 {
  width: 29rem;
  top: -7.3rem;
  right: -7.5rem;
  max-width: 160px;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media only screen and (max-width:768px) {
  .p-section__deco.--deco03 {
    width: 10rem;
    top: -4rem;
    right: -1.5rem;
  }
}
.is-active .p-section__deco.--deco03 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.p-section__deco.--deco04 {
  width: 21rem;
  bottom: -4.3rem;
  left: -3.5rem;
  max-width: 190px;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media only screen and (max-width:768px) {
  .p-section__deco.--deco04 {
    width: 8rem;
    bottom: -4rem;
    left: -2rem;
  }
}
.is-active .p-section__deco.--deco04 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.p-section__deco.--deco05 {
  width: 21rem;
  top: -7.3rem;
  right: -7.5rem;
  max-width: 160px;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media only screen and (max-width:768px) {
  .p-section__deco.--deco05 {
    width: 10rem;
    top: -2rem;
    right: -1.5rem;
  }
}
.is-active .p-section__deco.--deco05 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.p-section__deco.--deco06 {
  width: 18rem;
  bottom: -8.3rem;
  left: -8.5rem;
  max-width: 178px;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media only screen and (max-width:768px) {
  .p-section__deco.--deco06 {
    width: 8rem;
    bottom: -4rem;
    left: -2rem;
  }
}
.is-active .p-section__deco.--deco06 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.p-section__deco.--deco07 {
  width: 18rem;
  bottom: -8.3rem;
  right: -8.5rem;
  max-width: 178px;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media only screen and (max-width:768px) {
  .p-section__deco.--deco07 {
    width: 8rem;
    bottom: -4rem;
    right: -2rem;
  }
}
.is-active .p-section__deco.--deco07 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.p-section__in {
  max-width: 100%;
  display: block;
  position: relative;
  margin-left: auto;
  padding: 5rem 10rem 7rem;
}
@media only screen and (max-width:768px) {
  .p-section__in {
    padding: 5.33vw 5.33vw 7.33vw;
  }
}
.p-limit .p-section__in {
  padding: 5rem 0;
}
@media only screen and (max-width:768px) {
  .p-limit .p-section__in {
    padding: 7.33vw 0;
  }
}
.p-section__cap {
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .p-section__cap {
    margin-bottom: 5.33vw;
  }
}
.p-section__cap .--en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 7rem;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media only screen and (max-width:768px) {
  .p-section__cap .--en {
    font-size: 6rem;
  }
}
.is-active .p-section__cap .--en {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.p-section__cap .--jp {
  display: inline-block;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  padding: 3px 0;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media only screen and (max-width:768px) {
  .p-section__cap .--jp {
    font-size: 1.4rem;
  }
}
.is-active .p-section__cap .--jp {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.p-section .--notice {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 11px;
  line-height: 1.6;
}
@media only screen and (max-width:768px) {
  .p-section .--notice {
    font-size: 1rem;
  }
}
.p-section__main {
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
.is-active .p-section__main {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.p-about__lead {
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .p-about__lead {
    font-size: 1.3rem;
    text-align: left;
  }
}
.p-about__info {
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.8;
  border-bottom: 2px dotted var(--color-black);
}
@media only screen and (max-width:768px) {
  .p-about__info {
    font-size: 1.3rem;
  }
}
.p-about__info_item {
  padding: 2rem 0;
  border-top: 2px dotted var(--color-black);
}
@media only screen and (min-width:768px) {
  .p-about__info_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-about__info_item_cap {
  position: relative;
  font-weight: bold;
}
@media only screen and (min-width:768px) {
  .p-about__info_item_cap {
    width: 150px;
  }
}
.p-about__info_item_cap span {
  position: relative;
}
@media only screen and (min-width:768px) {
  .p-about__info_item_cap span {
    display: inline-block;
    width: 9rem;
    -moz-text-align-last: justify;
         text-align-last: justify;
  }
}

.p-limit {
  text-align: center;
}
.p-limit__info {
  padding: 0 10rem;
}
@media only screen and (max-width:768px) {
  .p-limit__info {
    padding: 0 5.33vw;
  }
}
.p-limit__info + .p-limit__info {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 4px solid #000;
}
@media only screen and (max-width:768px) {
  .p-limit__info + .p-limit__info {
    margin-top: 7.33vw;
    padding-top: 7.33vw;
  }
}
.p-limit__info_item + .p-limit__info_item {
  margin-top: 40px;
}
@media only screen and (max-width:768px) {
  .p-limit__info_item + .p-limit__info_item {
    margin-top: 5.33vw;
  }
}
.p-limit__info_item_cap {
  position: relative;
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  margin-bottom: 13px;
  font-size: 3rem;
}
@media only screen and (max-width:768px) {
  .p-limit__info_item_cap {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
  }
}
.p-limit__info_item_cap::before {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -2rem;
  background: url(/assets/img/title_deco.svg) no-repeat center/contain;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
@media only screen and (max-width:768px) {
  .p-limit__info_item_cap::before {
    width: 2rem;
    height: 2rem;
    left: -1rem;
  }
}
.p-limit__info_item_cap::after {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  right: -2rem;
  background: url(/assets/img/title_deco.svg) no-repeat center/contain;
  -webkit-transform: translate(100%, -50%) scale(-1, 1);
          transform: translate(100%, -50%) scale(-1, 1);
}
@media only screen and (max-width:768px) {
  .p-limit__info_item_cap::after {
    width: 2rem;
    height: 2rem;
    right: -1rem;
  }
}
.p-limit__info_item_detail {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .p-limit__info_item_detail {
    font-size: 1.8rem;
    line-height: 1.75;
  }
}

form input,
form select,
form textarea {
  outline: none;
  font-weight: 400;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  width: auto;
  width: 100%;
  margin: 0;
  padding: 9px 0.5em;
  border: 2px solid #000;
  background: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  -webkit-transition: background-color 0.4s var(--ease_out), color 0.4s var(--ease_out), border-color 0.4s var(--ease_out);
  transition: background-color 0.4s var(--ease_out), color 0.4s var(--ease_out), border-color 0.4s var(--ease_out);
  vertical-align: baseline;
}
@media only screen and (min-width:768px) {
  form input,
  form select,
  form textarea {
    padding: 10px 0.5em;
  }
}
form input::-webkit-input-placeholder, form select::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
form input::-moz-placeholder, form select::-moz-placeholder, form textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
form input:-ms-input-placeholder, form select:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
form input::-ms-input-placeholder, form select::-ms-input-placeholder, form textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
form input::placeholder,
form select::placeholder,
form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
form input:focus,
form select:focus,
form textarea:focus {
  color: var(--color-black);
  border-color: var(--color-green);
}
@media only screen and (min-width:768px) {
  form input:hover,
  form select:hover,
  form textarea:hover {
    border-color: var(--color-green-dark);
  }
}
form input[name=serial] {
  width: calc(100% - 1em - 4px);
  max-width: 802px;
}
form input[id=elem_address] {
  width: calc(100% - 1em - 4px);
}
form input[id=i_short] {
  width: calc(20% - 1em - 4px);
}
form input[id=i_short_02] {
  width: calc(40% - 1em - 4px);
}
form select,
form textarea {
  width: 100%;
}

.p-form__main {
  font-size: 14px;
}
@media only screen and (min-width:768px) {
  .p-form__main-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-form__main-item + .p-form__main-item {
  margin-top: 2.5rem;
}
@media only screen and (min-width:768px) {
  .p-form__main-item + .p-form__main-item {
    margin-top: 30px;
  }
}
.p-form__main-item dt {
  letter-spacing: 0.2rem;
  font-weight: bold;
}
@media only screen and (max-width:768px) {
  .p-form__main-item dt {
    padding-bottom: 1rem;
  }
}
@media only screen and (min-width:768px) {
  .p-form__main-item dt {
    width: 110px;
    margin-right: 20px;
    padding-top: 12px;
  }
}
.--enquete .p-form__main-item dt {
  line-height: 1.4;
}
@media only screen and (min-width:768px) {
  .--enquete .p-form__main-item dt {
    width: 15em;
    padding-top: 9px;
  }
}
.p-form__main-item dt span {
  display: inline-block;
  padding: 0px 6px;
  vertical-align: baseline;
  font-size: 11px;
  font-weight: bold;
  color: var(--color-orange);
  background: var(--color-white);
  letter-spacing: 0.02rem;
}
.p-form__main-item dd {
  position: relative;
}
@media only screen and (min-width:768px) {
  .p-form__main-item dd {
    width: calc(100% - 130px);
  }
  .--enquete .p-form__main-item dd {
    width: calc(100% - 15em);
  }
}
.p-form__main-item dd p {
  font-size: 13px;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media only screen and (max-width:768px) {
  .p-form__main-item dd p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    padding-left: 12px;
    position: relative;
  }
  .p-form__main-item dd p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--color-white);
  }
}
.p-form__main-item dd span {
  font-size: 1.4rem;
  font-weight: 600;
}
@media only screen and (min-width:768px) {
  .p-form__main-item dd span {
    margin-top: 12px;
    display: inline-block;
    font-size: 17px;
  }
}
.p-form__main-item dd small.--error {
  display: inline-block;
  color: var(--color-black);
  font-weight: 600;
  margin-top: 0.8rem;
  font-size: 1.2rem;
}
@media only screen and (min-width:768px) {
  .p-form__main-item dd small.--error {
    font-size: 13px;
  }
}
.p-form__main-item dd .c-formInputNameContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-form__main-item dd .c-formInputNameContainer .c-formInputName {
  width: 49%;
}
@media only screen and (min-width:768px) {
  .p-form__main-item dd .c-formInputNameContainer .c-formInputName {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-form__main-item dd .c-formInputNameContainer .c-formInputName:nth-child(2) {
  margin-left: 2%;
}
.p-form__main-item dd .c-formInputNameContainer .c-formInputName__label {
  width: 34px;
  font-size: 13px;
}
@media only screen and (max-width:768px) {
  .p-form__main-item dd .c-formInputNameContainer .c-formInputName__label {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
.p-form__main-item dd select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.p-form__main-item dd .c-formSelectItem {
  position: relative;
}
.p-form__main-item dd .c-formItem--select {
  position: relative;
}
.p-form__main-item dd .c-formItem--select::before {
  content: "aaaaaaaaaa";
  display: block;
  position: absolute;
  right: 10px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  opacity: 1;
}
.p-form__main__btn input {
  cursor: pointer;
  position: relative;
  display: block;
  width: 53.33vw;
  margin: 3.3rem auto 0;
  padding: 15px 0;
  color: #fff;
  border: 0;
  background: #000;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: background-color 0.4s var(--ease_out), color 0.4s var(--ease_out);
  transition: background-color 0.4s var(--ease_out), color 0.4s var(--ease_out);
  text-align: center;
}
@media only screen and (min-width:768px) {
  .p-form__main__btn input {
    width: 100%;
    margin-top: 40px;
    -webkit-transition: background-color 0.4s var(--ease_out), color 0.4s var(--ease_out);
    transition: background-color 0.4s var(--ease_out), color 0.4s var(--ease_out);
  }
  .p-form__main__btn input:hover {
    background-color: var(--color-green-dark);
  }
}
.p-form__main__btn-text {
  line-height: 1;
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  vertical-align: baseline;
}
@media only screen and (min-width:768px) {
  .p-form__main__btn-text {
    font-size: 13px;
  }
}

.p-attention__list {
  font-size: 12px;
}
@media only screen and (max-width:768px) {
  .p-attention__list {
    font-size: 1.2rem;
  }
}
.p-attention__list + .p-attention__list {
  margin-top: 40px;
}
@media only screen and (max-width:768px) {
  .p-attention__list + .p-attention__list {
    margin-top: 5.33vw;
  }
}
.p-attention__list_item {
  padding-left: 1rem;
  text-indent: -1rem;
}
.p-attention__list_item + .p-attention__list_item {
  margin-top: 6px;
}
@media only screen and (max-width:768px) {
  .p-attention__list_item + .p-attention__list_item {
    margin-top: 4px;
  }
}
.p-attention__list_item.--cap {
  font-weight: bold;
}