@charset "UTF-8";
/* CSS Document */

/* header */
.header {
  position: fixed;
  height: 50px;
  width: 100vw;
  padding: 14px;
  box-sizing: border-box;
  background-color: #fff;
  z-index: 9999;
}
.header__inner {
  display: block;
  max-width: 1160px;
  text-align: center;
  margin: 0 auto;
}
.header__inner ul {
  display: flex;
  justify-content: space-around;
}
.header__inner ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}
#nav-container {
  display: none;
}
.header img {
  display: none;
}
@media only screen and (max-width: 899px) {
  .header {
    display: none;
  }
  .header__inner {
    display: none;
  }
  #nav-container {
    display: block;
    position: fixed;
    height: 100vh;
    width: 100%;
    pointer-events: none;
    z-index: 9999;
  }
  #nav-container .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 0px);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    background: #000;
  }
  #nav-container:focus-within .bg {
    visibility: visible;
    opacity: 0.6;
  }
  #nav-container * {
    visibility: visible;
  }
  .button-wrapper {
    position: fixed;
    background-color: #fff;
    opacity: 1;
    top: 14px;
    padding: 20px 24px 16px;
    height: 64px;
    width: 64px;
    right: 14px;
    z-index: 1;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    border: solid 1px #f0f0f0;
  }
  .button {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    border-radius: 0;
    height: 70px;
    width: 28px;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .icon-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #707070;
    transition: 0.5s;
  }
  .icon-bar + .icon-bar {
    margin-top: 7px;
  }
  #nav-container:focus-within .button {
    pointer-events: none;
  }
  #nav-container:focus-within .icon-bar:nth-of-type(1) {
    transform: translate3d(0, 8px, 0) rotate(45deg);
  }
  #nav-container:focus-within .icon-bar:nth-of-type(2) {
    opacity: 0;
  }
  #nav-container:focus-within .icon-bar:nth-of-type(3) {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
  }
  #nav-content {
    margin-top: 0px;
    padding: 40px 0 50px 0;
    width: 90%;
    max-width: 280px;
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100% - 0px);
    background: #fafafa;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateX(-100%);
    transition: transform 0.5s;
    will-change: transform;
    contain: paint;
  }
  .nav-wrapper {
    padding-top: 0px;
    padding-left: 20px;
    margin: 0 0 30px;
    text-align: left;
  }
  .nav-wrapper img {
    margin: 0 auto 50px;
    display: block;
    position: relative;
    width: 150px;
    text-align: center;
    padding-top: 10px;
    padding-left: 0;
  }
  .nav-wrapper div {
    margin-bottom: 50px;
  }
  .nav-title {
    font-size: 2.2rem;
    margin: 0 0 16px;
    position: relative;
  }
  .nav-title span {
    display: inline-block;
    padding-right: 30px;
    position: relative;
    background-color: #fafafa;
    z-index: 2;
  }
  .nav-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #dfdfdf;
  }
  .nav-list {
    list-style: none;
    position: relative;
  }
  .nav-wrapper li a {
    padding: 12px 4px 12px 4px;
    transition: color 0.1s;
    display: block;
    text-decoration: none;
    outline: 0;
    color: 707070;
    color: currentColor;
    font-size: 1.6rem;
  }
  .nav-list li a:hover {
    background-color: #efefef;
  }
  .nav-list li a span {
    display: inline-block;
    padding-right: 8px;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left: 5px solid #cfcfcf;
  }
  .nav-image-description {
    font-size: 1rem;
    line-height: 1.4rem;
  }
  #nav-container:focus-within #nav-content {
    transform: none;
  }
  #nav-content .twitter-btn a {
    height: 60px;
    width: 180px;
    background-color: #ffffff;
    border-radius: 8px;
    color: #61bdf6;
    border: #f0f0f0 1px solid;
  }
  #nav-content .twitter-btn a span {
    display: flex;
    flex-direction: column;
    text-align: center;
    list-style: none;
    margin: 0 auto;
    font-size: 2.2rem;
    color: #61bdf6;
    padding-top: 8px;
  }
  .twitter-btn.nav-twitter-btn a {
    text-decoration: none;
  }
}

.main {
  background-color: #fcfaf4;
  padding-bottom: 120px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* top */
.top-wrapper {
  max-width: 1160px;
  margin: 0 auto;
}
.section-top {
  padding-top: 100px;
  margin-bottom: 60px;
}
.section-top__container {
  display: flex;
  justify-content: center;
}
.section-top__lead {
  width: 30%;
  text-align: left;
}
.section-top__lead img {
  max-width: 260px;
  height: auto;
  display: block;
  padding-top: 20px;
}
.section-top__lead-content {
  margin-top: 50px;
  padding-left: 10px;
}
.section-top__lead-content a {
  color: blue;
  text-decoration: none;
}
.twitter-btn a {
  display: flex;
  flex-direction: column;
  text-align: center;
  list-style: none;
  font-size: 12px;
  font-weight: 400;
}
.twitter-btn a + a {
  margin-left: 15px;
}
.section-top__lead-content .twitter-btn a {
  height: 60px;
  width: 180px;
  background-color: #ffffff;
  border-radius: 8px;
  color: #61bdf6;
  border: #f0f0f0 1px solid;
}
.section-top__lead-content .twitter-btn a span {
  display: flex;
  flex-direction: column;
  text-align: center;
  list-style: none;
  margin: 0 auto;
  font-size: 2.2rem;
  color: #61bdf6;
  padding-top: 8px;
}
.section-top__lead-title {
  margin-bottom: 40px;
}
.section-top__lead-description {
  line-height: 3.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-top__image h2 {
  display: none;
}
.section-top__image-btn {
  display: block;
  width: 260px;
  margin: 0 auto;
}
.section-top__image-btn > a {
  display: block;
  height: 50px;
  line-height: 48px;
  background-color: #ffffff;
  font-weight: 700px;
  font-style: normal;
  border-radius: 400px;
  color: #707070;
  padding: 0 70px;
  font-size: 1.6rem;
  letter-spacing: 2.4px;
  position: relative;
  text-decoration: none;
  overflow: auto;
  border: solid 2px #d2c379;
  margin-top: 8px;
  overflow: hidden;
}
.section-top__image-btn > a:after {
  content: "";
  position: absolute;
  top: 56%;
  right: 16%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
  transform: rotate(45deg);
  margin-top: -5px;
}
figure.hover-parent {
  width: 320px;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  margin: 0 auto;
}
figcaption.hover-mask {
  width: 320px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
}
figure.hover-parent:hover .hover-mask {
  　opacity: 1;
}
.section-top__image img {
  border: 1px solid #afafaf;
  margin-top: 20px;
  width: 320px;
}
.section-top__lead-content {
  margin-top: 30px;
  line-height: 2.8rem;
}
.section-top__title {
  /*
    padding: 40px 20px 40px 60px;
    */
  max-width: 32%;
  padding-left: 46px;
  text-align: left;
}
.section-top__title h2 {
  font-size: 2.6rem;
  margin-top: 14px;
  line-height: 1.2;
}
.section-top__title-description {
  margin: 30px 0 30px;
  font-size: 1.4rem;
  line-height: 2.6rem;
}
.section-top__title h3 {
  font-size: 2rem;
  padding-bottom: 10px;
}
.section-top__title ul {
  line-height: 2.6rem;
  list-style: none;
}
@media only screen and (max-width: 859px) {
  .section-top {
    padding-top: 60px;
  }
  .section-top__container {
    display: block;
  }
  .section-top__lead {
    display: block;
    text-align: center;
    width: 100%;
  }
  .section-top__lead img {
    margin: 0 auto;
    max-width: 260px;
    padding-left: 16px;
  }
  .section-top__image {
    margin: 0 auto;
  }
  .section-top__title {
    max-width: 440px;
    padding: 0px 0px;
    margin: 0 auto;
  }
  .section-top__lead-title {
    margin-bottom: 50px;
  }
  .section-top__lead-description {
    font-size: 2rem;
    line-height: 3.8rem;
    font-weight: 600;
    margin-bottom: 30px;
  }

  .twitter-btn a {
    display: flex;
    flex-direction: column;
    text-align: center;
    list-style: none;
    margin: 0 auto;
    font-size: 12px;
    font-weight: 400;
  }
  .twitter-btn a + a {
    margin-left: 15px;
  }
  .section-top__lead-content .twitter-btn a {
    height: 60px;
    width: 200px;
    background-color: #ffffff;
    border-radius: 8px;
    color: #61bdf6;
    border: #f0f0f0 1px solid;
  }
  .section-top__lead-content .twitter-btn a span {
    display: flex;
    flex-direction: column;
    text-align: center;
    list-style: none;
    margin: 0 auto;
    font-size: 2.2rem;
    color: #61bdf6;
    padding-top: 8px;
  }

  .section-top__image-btn {
    width: 280px;
  }
  .section-top__image-btn > a:hover {
    background-color: #333;
    opacity: 0.1;
  }
  .section-top__image h2 {
    display: block;
    font-size: 2.8rem;
    text-align: left;
    margin: 80px 24px 2px;
    line-height: 1.2;
  }
  .section-top__title h2 {
    display: none;
  }
  .section-top__title-description {
    margin: 40px 24px 30px;
  }
  .section-top__title h3 {
    margin: 0 24px;
  }
  .section-top__title ul {
    margin: 0 24px;
  }
}
@media only screen and (min-width: 860px) and (max-width: 1079px) {
  .section-top__container {
    display: flex;
    flex-wrap: wrap;
  }
  .section-top__lead {
    width: 100%;
    margin: 0 auto 70px;
    text-align: center;
  }
  .section-top__lead > img {
    margin: 0 auto;
    padding-left: 30px;
  }
  .section-top__lead-content .twitter-btn a {
    margin: 0 auto;
  }
  .section-top__image {
    max-width: 50%;
  }
  .section-top__title {
    max-width: 50%;
    padding-left: 60px;
  }
  .section-top__title-description {
    max-width: 420px;
  }
}

/* news */
.section-news {
  margin-bottom: 60px;
}
.section-wrapper:after {
  content: "";
  display: block;
  height: 15px;
  max-width: 1160px;
  background-color: #f0f0f0;
  box-sizing: border-box;
  bottom: 20px;
  margin: 0 24px;
}
.book {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #d0d0d0;
  margin: 0 auto;
  right: 0;
}
.book1 {
  bottom: -3px;
}
.book2 {
  bottom: -6px;
}
.book3 {
  bottom: -9px;
}
.book4 {
  bottom: -12px;
}
.book5 {
  bottom: -15px;
}

.section-news__wrapper {
  max-width: 1208px;
  margin: 0 auto;
}
.title-wrapper {
  margin-bottom: 30px;
}
.title-wrapper p {
  font-size: 2rem;
  color: #afafaf;
  margin-bottom: 14px;
}
.title-wrapper h3 {
  font-size: 3.2rem;
  color: #333333;
  position: relative;
}
.title-wrapper-content {
  display: block;
}
.title-wrapper-content h3 {
  display: inline-block;
  margin: 0 auto;
}
.title-wrapper-content h3 img {
  position: absolute;
  width: 20px;
  right: -26px;
  top: -18px;
}
.content-box {
  max-width: 1160px;
  background-color: #ffffff;
  padding: 50px 60px;
  box-sizing: border-box;
  position: relative;
  margin: 0 24px;
}
.content-box .bookmark {
  position: absolute;
  right: 40px;
  top: -32px;
  width: 24px;
  height: auto;
  padding: 0;
}
.wrapper-shadow {
  box-shadow: 0px 4px 14px -4px rgba(10, 10, 10, 0.1);
}
.content-box.news-wrapper ul li {
  display: flex;
  margin-bottom: 20px;
}
.content-box.news-wrapper ul li:last-child {
  margin-bottom: 0;
}
.section-news__date {
  margin-right: 90px;
  position: relative;
  display: inline-block;
  color: #afafaf;
}
.section-news__date::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #afafaf;
  position: absolute;
  top: 4px;
  right: -48px;
}
.section-news__title p {
  text-align: left;
}
@media only screen and (max-width: 599px) {
  .section-news {
    margin-bottom: 80px;
  }
  .section-wrapper:after {
    max-width: 440px;
    margin: 0 24px;
  }
  .section-news__wrapper {
    margin: 0 auto;
  }
  .title-wrapper {
    margin-bottom: 30px;
  }
  .content-box {
    background-color: #ffffff;
    padding: 60px 24px;
    box-sizing: border-box;
    max-width: 550px;
    margin: 0 24px;
  }
  .content-box .bookmark {
    position: absolute;
    right: 20px;
    top: -36px;
    width: 24px;
    height: auto;
    padding: 0;
  }
  .content-box.news-wrapper ul li {
    display: block;
    text-align: left;
  }
  .content-box.news-wrapper li div {
    display: block;
  }
  .section-news__date p {
    margin-right: 0;
    display: block;
    color: #afafaf;
  }
  .section-news__date::after {
    display: none;
  }
  .section-news__date {
    display: block;
  }
}

/* about */
.section-about {
  margin-bottom: 80px;
}
.section-about__wrapper {
  max-width: 1208px;
  margin: 0 auto;
}
.about-wrapper {
  display: flex;
}
.about-wrapper img {
  width: 240px;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  justify-content: center;
  padding-top: 60px;
}
.section-about__descritpion {
  text-align: left;
  padding-left: 80px;
  padding-right: 80px;
  line-height: 3.2rem;
}
@media only screen and (max-width: 1099px) {
  .about-wrapper {
    display: block;
  }
  .about-wrapper img {
    max-width: 220px;
    height: auto;
    display: block;
    padding-top: 30px;
    padding-left: 6px;
    margin: 0 auto;
  }
  .section-about__descritpion {
    text-align: left;
    padding: 60px 0 0 0;
    line-height: 3.2rem;
  }
}

/* backnumber */
.section-backnumber {
  margin-bottom: 80px;
}
.section-backnumber__wrapper {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  max-width: 1160px;
}

.section-backnumber__wrapper img:not(.arrow) {
  max-width: 260px;
  border: 1px solid #707070;
}


.section-backnumber__wrapper-content-description {
  text-align: left;
  font-size: 1.4rem;
}

.arrow:hover {
  opacity: 0.5;
}
.owl-prev {
  left: -6vw;
}

.owl-next {
  right: -6vw;
}

 .owl-prev, .owl-next{
  position: absolute;
  top: 30%;
  /*margin: 0 100px 0 100px;*/
}

@media only screen and (max-width: 1024px){
  .owl-prev {
  left: 1vw;
}

.owl-next {
  right: 1vw;
}
}

@media only screen and (max-width: 999px) {
  .section-backnumber__wrapper {
    display: block;
  }
  .section-backnumber__wrapper p {
    max-width: 260px;
  }
  .section-backnumber__wrapper-content-description {
    max-width: 260px;
    margin: 0 auto 40px;
  }
  .section-backnumber__wrapper img:not(.arrow) {
    max-width: 280px;
    border: 1px solid #afafaf;
  }
}

/* howtoget */
.section-howtoget {
  margin-bottom: 80px;
}
.section-howtoget__wrapper {
  max-width: 1208px;
  margin: 0 auto;
}
.section-howtoget__content {
  display: flex;
  flex-wrap: wrap;
}
.section-howtoget__content-item {
  text-align: center;
  padding: 10px 20px 40px 20px;
  margin: 0 auto;
}
.section-howtoget__content-item > div > p {
  font-size: 1.6rem;
}
.section-howtoget__content-item > div > .title {
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.section-howtoget__content-item > div > p > span {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  margin-top: 16px;
  margin-bottom: 2px;
  color: #c0c0c0;
}
.section-howtoget__supplement {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-top: 10px;
}
@media only screen and (max-width: 599px) {
  .section-howtoget__content {
    margin-bottom: 0;
  }
  .section-howtoget__content-item {
    padding-bottom: 40px;
  }
}

/* staff */
/*staff-tab*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  max-width: 1160px;
  margin: 0 auto;
}
.tab-wrap:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #dccc54;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: lightgray;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px 0.5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-switch:checked + .tab-label {
  background: #dccc54;
}
.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: 0.5s opacity;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.tab-switch {
  display: none;
}
/*staff-list*/
.section-staff {
  margin-bottom: 80px;
}
.content-box.staff-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  background-color: #fcfaf4;
  padding: 20px 0px;
}
.section-staff__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}
.section-staff__list li a {
  display: flex;
  text-align: center;
  cursor: pointer;
  padding: 30px 30px;
  min-width: 270px;
  max-width: 300px;
}

html.modalset {
  overflow: hidden;
}
.modal1,
.modal2,
.modal3,
.modal4,
.modal5,
.modal6,
.modal7,
.modal8,
.modal9,
.modal10,
.modal11, 
.modal12,
.modal13,
.modal14,
.modal15,
.modal16,
.modal17,
.modal18,
.modal19 {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.modal-wrap {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  white-space: nowrap;
}
.modal-wrap::-webkit-scrollbar {
  display: none;
}
.modal-wrap:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 100%;
}
.modal-bg {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(51, 51, 51, 0.8);
  width: 100%;
  height: 100%;
}
.modal-box {
  width: 100%;
  max-width: 600px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.modal-box .inner {
  background: #fff;
  padding: 40px 50px 30px;
  text-align: left;
  border-radius: 10px;
}
.modal-box .inner h3 {
  font-size: 2.4rem;
  padding-bottom: 30px;
}
.modal-box .inner span {
  font-size: 1.6rem;
}
.modal-box .inner > :first-child {
  margin-top: 0;
}
.sp-br {
  display: none;
}
.modal-square-btn {
  display: block;
  position: relative;
  width: 140px;
  margin: 40px auto 0px;
  padding: 6px;
  border: 2px solid #111;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: 300;
  color: #111;
  text-align: center;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.15s;
  cursor: pointer;
}
.modal-square-btn:hover {
  background: #111;
  color: #fff;
}
.modal-circle-btn {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 30px;
  height: 30px;
  background-color: #555;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: 0.15s;
  cursor: pointer;
}
.modal-circle-btn_1,
.modal-circle-btn_2 {
  content: "";
  position: absolute;
  top: 14px;
  right: 12px;
  width: 2px;
  height: 16px;
  background-color: #fff; /* バツ印の色 */
}
.modal-circle-btn_1 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-circle-btn_2 {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.section-staff__list li a img {
  width: 100px;
}
.section-staff__list li a div {
  text-align: left;
  padding-top: 20px;
  padding-left: 12px;
}
@media only screen and (max-width: 599px) {
  .content-box.staff-wrapper {
    max-width: 440px;
    margin: 0 auto;
    padding: 0 0;
    padding-top: 20px;
  }
  .section-staff__list {
    display: block;
    max-width: 280px;
    padding-bottom: 0px;
    margin: 0 24px;
    /*
        display: flex;
        flex-direction: column;
        */
    text-align: center;
    list-style: none;
    margin: 0 auto;
    font-size: 1.6rem;
  }
  .section-staff__list li {
    text-align: center;
    list-style: none;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
  }
  .section-staff__list li a img {
    display: inline-block;
    width: 80px;
    text-align: center;
    margin: 0 auto;
  }
  .section-staff__list li a div {
    display: inline-block;
    text-align: center;
    padding-top: 20px;
    padding-left: 14px;
    min-width: 100px;
  }
  .modal-box {
    width: 100%;
    max-width: 330px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: max-content;
    overflow: hidden;
  }
  .modal-box .inner {
    background: #fff;
    padding: 50px 24px 26px;
    text-align: left;
    width: 100%;
  }
  .modal-box .inner h3 {
    font-size: 2rem;
    padding-bottom: 30px;
  }
  .modal-box .inner p {
    text-align: left;
  }
  .sp-br {
    display: block;
  }
  .modal-circle-btn {
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
  }
  .modal-circle-btn_1,
  .modal-circle-btn_2 {
    top: 14px;
    right: 12px;
    width: 2px;
    height: 16px;
  }
}

/* contact */
.section-contact {
  margin-bottom: 80px;
}
.content-box.contact-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  background-color: #fcfaf4;
  padding: 50px 30px;
}
.contact-form p {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.contact-form .form_contact_privacy {
  display: block;
  text-align: left;
  margin-bottom: 10px;
}
.contact-form .form_contact_privacy p {
  padding-bottom: 12px;
  margin-bottom: 0;
}
.contact-form .form_contact_privacy a {
  color: blue;
  text-decoration: none;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  height: 40px;
  padding: 0 10px;
  border: solid 1px #777;
  display: inline-block;
  max-width: 600px;
  min-width: 300px;
  border-radius: 6px;
  font-size: 1.6rem;
}
.contact-form textarea {
  height: 240px;
  padding-top: 10px;
  min-height: 200px;
  width: 100%;
}
.contact-form p label {
  font-size: 1.6rem;
  display: inline-block;
  min-width: 300px;
  vertical-align: top;
  font-weight: 500;
  text-align: left;
}
.contact-form p label span {
  color: #ff7497;
}
.contact-form__submit {
  display: block;
  height: 48px;
  max-width: 200px;
  width: 100%;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  letter-spacing: 0.1em;
  background-color: #b0afaa;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
}
@media only screen and (max-width: 599px) {
  .content-box.contact-wrapper {
    max-width: 440px;
    margin: 0 24px;
    padding: 20px 0;
  }
  .contact-form p {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
  }
  .contact-form p {
    display: block;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    width: 100%;
  }
  .contact-form p label {
    width: 100%;
  }
}
