:root {
  --color-white: #ffffff;
  --color-black: #1A1A1A;
  --color-main: #BB9951;
  --color-main2: #C81A1A;
  --color-bg: #EBEBEB;
  --color-bg2: #1C1E28;
  --color-placeholder: #8F9CA4;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  background-color: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

ins {
  text-decoration: none;
}

mark {
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: 0;
  border-top: 1px solid #000000;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  font-size: 0;
  line-height: 0;
  vertical-align: top;
}

* {
  box-sizing: border-box !important;
  font-size: 1.4rem;
}

html {
  font-size: 62.5%;
}
html.is-open {
  overflow: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  background-color: var(--color-white);
  color: var(--color-black);
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-style: normal;
}
body * {
  letter-spacing: 0;
}

a {
  color: var(--color-black);
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

input[type=submit],
input[type=button],
input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=reset],
select,
button,
textarea {
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=text]::-webkit-search-decoration,
input[type=number]::-webkit-search-decoration,
input[type=email]::-webkit-search-decoration,
input[type=tel]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
select::-webkit-search-decoration,
button::-webkit-search-decoration,
textarea::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus,
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=reset]:focus,
select:focus,
button:focus,
textarea:focus {
  outline-offset: -2px;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
.is-pc--inline {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .is-pc--inline {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}
.is-sp--inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp--inline {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .lity-wrap {
    bottom: auto;
    padding-top: calc(20 / 375 * 100vw);
  }
}

.lity-close,
.lity-close:hover {
  background-image: url(../images/icon_close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  content: "";
  cursor: pointer;
  display: inline-block;
  display: none;
  height: 45px;
  overflow: hidden;
  position: absolute;
  right: 20px;
  text-indent: 150vw;
  top: 20px;
  white-space: nowrap;
  width: 45px;
}
@media screen and (max-width: 1199px) {
  .lity-close,
.lity-close:hover {
    height: calc(45 / 1200 * 100vw);
    right: calc(20 / 1200 * 100vw);
    top: calc(20 / 1200 * 100vw);
    width: calc(45 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .lity-close,
.lity-close:hover {
    height: calc(45 / 375 * 100vw);
    right: calc(-12 / 375 * 100vw);
    top: calc(-12 / 375 * 100vw);
    width: calc(45 / 375 * 100vw);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
    @media screen and (max-width: 1199px) {
      transform: translateY(calc(10 / 1200 * 100vw));
    }
    @media screen and (max-width: 767px) {
      transform: translateY(calc(10 / 375 * 100vw));
    }
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
    @media screen and (max-width: 1199px) {
      transform: translateY(calc(10 / 1200 * 100vw));
    }
    @media screen and (max-width: 767px) {
      transform: translateY(calc(10 / 375 * 100vw));
    }
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@-webkit-keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.l-container {
  margin: 0 auto;
  padding-left: 100px;
  padding-right: 100px;
  width: 1200px;
}
@media screen and (max-width: 1199px) {
  .l-container {
    padding-left: calc(100 / 1200 * 100vw);
    padding-right: calc(100 / 1200 * 100vw);
    width: calc(1200 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-left: calc(20 / 375 * 100vw);
    padding-right: calc(20 / 375 * 100vw);
    width: 100%;
  }
}
@media screen and (max-width: 1439px) {
  .l-container--full {
    padding-left: calc(100 / 1440 * 100vw);
    padding-right: calc(100 / 1440 * 100vw);
    width: calc(1200 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-container--full {
    padding-left: calc(20 / 375 * 100vw);
    padding-right: calc(20 / 375 * 100vw);
    width: 100%;
  }
}

.c-form {
  margin: 0 auto;
  width: 640px;
}
@media screen and (max-width: 1199px) {
  .c-form {
    width: calc(640 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form {
    width: 100%;
  }
}
.c-form__block {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-form__block {
    display: block;
  }
}
.c-form__block + * {
  margin-top: 38px;
}
@media screen and (max-width: 1199px) {
  .c-form__block + * {
    margin-top: calc(38 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block + * {
    margin-top: calc(40 / 375 * 100vw);
  }
}
.c-form__block label {
  font-size: 1.5rem;
  font-weight: bold;
  width: 190px;
}
@media screen and (max-width: 1199px) {
  .c-form__block label {
    font-size: calc(15 / 1200 * 100vw);
    width: calc(190 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block label {
    display: block;
    font-size: calc(15 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
    width: 100%;
  }
}
.c-form__block label.is-required {
  align-items: center;
  display: flex;
  position: relative;
}
.c-form__block label.is-required::after {
  background-image: url(../images/icon_hissu.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  content: "";
  display: inline-block;
  height: 20px;
  margin-left: 10px;
  width: 34px;
}
@media screen and (max-width: 1199px) {
  .c-form__block label.is-required::after {
    height: calc(20 / 1200 * 100vw);
    margin-left: calc(10 / 1200 * 100vw);
    width: calc(34 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block label.is-required::after {
    height: calc(20 / 375 * 100vw);
    margin-left: calc(7 / 375 * 100vw);
    width: calc(34 / 375 * 100vw);
  }
}
.c-form__block select {
  background-image: url(../images/icon_select.svg);
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 17px 9px;
  border-radius: 3px;
  border-radius: 3px;
  font-size: 1.4rem;
  height: 50px;
  padding: 0 15px;
  width: 118px;
}
@media screen and (max-width: 1199px) {
  .c-form__block select {
    background-position: right calc(15 / 1200 * 100vw) center;
    background-size: calc(17 / 1200 * 100vw) calc(9 / 1200 * 100vw);
    border-radius: calc(3 / 1200 * 100vw);
    border-radius: calc(3 / 1200 * 100vw);
    font-size: calc(14 / 1200 * 100vw);
    height: calc(50 / 1200 * 100vw);
    padding: 0 calc(15 / 1200 * 100vw);
    width: calc(118 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block select {
    background-position: right calc(15 / 375 * 100vw) center;
    background-size: calc(17 / 375 * 100vw) calc(9 / 375 * 100vw);
    border-radius: calc(3 / 375 * 100vw);
    font-size: 16px;
    height: calc(50 / 375 * 100vw);
    padding: 0 calc(15 / 375 * 100vw);
    width: 100%;
  }
}
.c-form__block input[type=text],
.c-form__block input[type=tel],
.c-form__block input[type=email] {
  border-radius: 3px;
  font-size: 1.4rem;
  height: 50px;
  padding: 0 15px;
  width: 450px;
}
@media screen and (max-width: 1199px) {
  .c-form__block input[type=text],
.c-form__block input[type=tel],
.c-form__block input[type=email] {
    border-radius: calc(3 / 1200 * 100vw);
    font-size: calc(14 / 1200 * 100vw);
    height: calc(50 / 1200 * 100vw);
    padding: 0 calc(15 / 1200 * 100vw);
    width: calc(450 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block input[type=text],
.c-form__block input[type=tel],
.c-form__block input[type=email] {
    border-radius: calc(3 / 375 * 100vw);
    font-size: 16px;
    height: calc(50 / 375 * 100vw);
    padding: 0 calc(15 / 375 * 100vw);
    width: 100%;
  }
}
.c-form__block input[type=text]::-moz-placeholder, .c-form__block input[type=tel]::-moz-placeholder, .c-form__block input[type=email]::-moz-placeholder {
  font-size: 1.4rem;
}
.c-form__block input[type=text]:-ms-input-placeholder, .c-form__block input[type=tel]:-ms-input-placeholder, .c-form__block input[type=email]:-ms-input-placeholder {
  font-size: 1.4rem;
}
.c-form__block input[type=text]::placeholder,
.c-form__block input[type=tel]::placeholder,
.c-form__block input[type=email]::placeholder {
  font-size: 1.4rem;
}
@media screen and (max-width: 1199px) {
  .c-form__block input[type=text]::-moz-placeholder, .c-form__block input[type=tel]::-moz-placeholder, .c-form__block input[type=email]::-moz-placeholder {
    font-size: calc(14 / 1200 * 100vw);
  }
  .c-form__block input[type=text]:-ms-input-placeholder, .c-form__block input[type=tel]:-ms-input-placeholder, .c-form__block input[type=email]:-ms-input-placeholder {
    font-size: calc(14 / 1200 * 100vw);
  }
  .c-form__block input[type=text]::placeholder,
.c-form__block input[type=tel]::placeholder,
.c-form__block input[type=email]::placeholder {
    font-size: calc(14 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block input[type=text]::-moz-placeholder, .c-form__block input[type=tel]::-moz-placeholder, .c-form__block input[type=email]::-moz-placeholder {
    font-size: 16px;
  }
  .c-form__block input[type=text]:-ms-input-placeholder, .c-form__block input[type=tel]:-ms-input-placeholder, .c-form__block input[type=email]:-ms-input-placeholder {
    font-size: 16px;
  }
  .c-form__block input[type=text]::placeholder,
.c-form__block input[type=tel]::placeholder,
.c-form__block input[type=email]::placeholder {
    font-size: 16px;
  }
}
.c-form__block__horizontal {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-form__block__horizontal__choice {
    margin-left: calc(10 / 375 * 100vw);
    margin-right: calc(30 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
  }
}
.c-form__block__horizontal__choice + .c-form__block__horizontal__choice {
  margin-left: 30px;
}
@media screen and (max-width: 1199px) {
  .c-form__block__horizontal__choice + .c-form__block__horizontal__choice {
    margin-left: calc(30 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block__horizontal__choice + .c-form__block__horizontal__choice {
    margin-left: calc(10 / 375 * 100vw);
  }
}
.c-form__block__horizontal__choice input[type=radio] {
  display: none;
}
.c-form__block__horizontal__choice input[type=radio]:checked + label {
  position: relative;
}
.c-form__block__horizontal__choice input[type=radio]:checked + label::after {
  background-color: var(--color-main);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 10px;
  left: 5px;
  margin: auto;
  position: absolute;
  top: 5px;
  width: 10px;
}
@media screen and (max-width: 1199px) {
  .c-form__block__horizontal__choice input[type=radio]:checked + label::after {
    height: calc(10 / 1200 * 100vw);
    left: calc(5 / 1200 * 100vw);
    top: calc(5 / 1200 * 100vw);
    width: calc(10 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block__horizontal__choice input[type=radio]:checked + label::after {
    height: calc(15 / 375 * 100vw);
    left: calc(5 / 375 * 100vw);
    top: calc(5 / 375 * 100vw);
    width: calc(15 / 375 * 100vw);
  }
}
.c-form__block__horizontal__choice label {
  align-items: center;
  cursor: pointer;
  display: flex;
  line-height: 1;
  margin-bottom: 0;
  width: auto;
}
.c-form__block__horizontal__choice label::before {
  background-color: var(--color-bg);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 20px;
  margin-right: 7px;
  width: 20px;
}
@media screen and (max-width: 1199px) {
  .c-form__block__horizontal__choice label::before {
    height: calc(20 / 1200 * 100vw);
    margin-right: calc(7 / 1200 * 100vw);
    width: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block__horizontal__choice label::before {
    height: calc(25 / 375 * 100vw);
    margin-right: calc(10 / 375 * 100vw);
    width: calc(25 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block__horizontal__choice:nth-child(-n+2) {
    margin-top: 0;
  }
}
.c-form__block__horizontal select#birth-y {
  width: 206px;
}
@media screen and (max-width: 1199px) {
  .c-form__block__horizontal select#birth-y {
    width: calc(206 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block__horizontal select#birth-y {
    width: calc(129 / 375 * 100vw);
  }
}
.c-form__block__horizontal select#birth-m, .c-form__block__horizontal select#birth-d {
  width: 103px;
}
@media screen and (max-width: 1199px) {
  .c-form__block__horizontal select#birth-m, .c-form__block__horizontal select#birth-d {
    width: calc(103 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block__horizontal select#birth-m, .c-form__block__horizontal select#birth-d {
    width: calc(93 / 375 * 100vw);
  }
}
.c-form__block__horizontal--birth {
  justify-content: space-between;
  width: 450px;
}
@media screen and (max-width: 1199px) {
  .c-form__block__horizontal--birth {
    width: calc(450 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__block__horizontal--birth {
    width: 100%;
  }
}
.c-form__agree {
  margin-top: 30px;
  padding-left: 190px;
}
@media screen and (max-width: 1199px) {
  .c-form__agree {
    margin-top: calc(30 / 1200 * 100vw);
    padding-left: calc(190 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__agree {
    margin-top: calc(30 / 375 * 100vw);
    padding-left: 0;
  }
}
.c-form__agree input {
  display: none;
}
.c-form__agree input:checked + label {
  position: relative;
}
.c-form__agree input:checked + label::after {
  background-image: url(../images/icon_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  content: "";
  display: inline-block;
  height: 12px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 16px;
}
@media screen and (max-width: 1199px) {
  .c-form__agree input:checked + label::after {
    height: calc(12 / 1200 * 100vw);
    top: calc(2 / 1200 * 100vw);
    width: calc(16 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__agree input:checked + label::after {
    height: calc(12 / 375 * 100vw);
    top: calc(2 / 375 * 100vw);
    width: calc(16 / 375 * 100vw);
  }
}
.c-form__agree label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
  align-items: center;
  display: flex;
  font-size: 1.3rem;
          user-select: none;
}
@media screen and (max-width: 1199px) {
  .c-form__agree label {
    font-size: calc(13 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__agree label {
    font-size: calc(13 / 375 * 100vw);
  }
}
.c-form__agree label::before {
  border: 1px solid var(--color-black);
  content: "";
  cursor: pointer;
  display: inline-block;
  height: 14px;
  margin-right: 5px;
  width: 14px;
}
@media screen and (max-width: 1199px) {
  .c-form__agree label::before {
    height: calc(14 / 1200 * 100vw);
    margin-right: calc(5 / 1200 * 100vw);
    width: calc(14 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__agree label::before {
    height: calc(14 / 375 * 100vw);
    margin-right: calc(5 / 375 * 100vw);
    width: calc(14 / 375 * 100vw);
  }
}
.c-form__agree label a {
  border-bottom: 1px solid var(--color-main);
  color: var(--color-main);
  padding-bottom: 1px;
}
.c-form__submit {
  margin-top: 70px;
}
@media screen and (max-width: 1199px) {
  .c-form__submit {
    margin-top: calc(70 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__submit {
    margin-top: calc(60 / 375 * 100vw);
  }
}
.c-form__submit button {
  background-image: url(../images/button_submit.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 30px;
  color: var(--color-white);
  content: "";
  cursor: pointer;
  display: inline-block;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  height: 60px;
  margin: 0 auto;
  padding-bottom: 2px;
  width: 275px;
}
@media screen and (max-width: 1199px) {
  .c-form__submit button {
    border-radius: calc(30 / 1200 * 100vw);
    height: calc(60 / 1200 * 100vw);
    padding-bottom: calc(2 / 1200 * 100vw);
    width: calc(275 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__submit button {
    border-radius: calc(30 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    padding-bottom: calc(2 / 375 * 100vw);
    width: calc(275 / 375 * 100vw);
  }
}
@media screen and (max-width: 1199px) {
  .c-form__submit button {
    font-size: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__submit button {
    font-size: calc(20 / 375 * 100vw);
  }
}
.c-form__submit button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .c-form__submit button:hover {
    opacity: 1;
  }
}

.c-privacy {
  -ms-overflow-style: none;
  background-color: var(--color-white);
  height: 663px;
  overflow: scroll;
  padding: 66px;
  position: relative;
  scrollbar-width: none;
  width: 1000px;
}
@media screen and (max-width: 1199px) {
  .c-privacy {
    height: calc(663 / 1200 * 100vw);
    padding: calc(66 / 1200 * 100vw);
    width: calc(1000 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-privacy {
    height: 92vh;
    padding: calc(40 / 375 * 100vw) calc(30 / 375 * 100vw) calc(80 / 375 * 100vw);
    width: calc(335 / 375 * 100vw);
  }
}
.c-privacy::-webkit-scrollbar {
  display: none;
}
.c-privacy__title {
  color: var(--color-main);
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .c-privacy__title {
    font-size: calc(22 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-privacy__title {
    font-size: calc(18 / 375 * 100vw);
  }
}
.c-privacy__text {
  margin-top: 50px;
}
@media screen and (max-width: 1199px) {
  .c-privacy__text {
    margin-top: calc(50 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-privacy__text {
    margin-top: calc(30 / 375 * 100vw);
  }
}
.c-privacy__text h4 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .c-privacy__text h4 {
    font-size: calc(14 / 1200 * 100vw);
    line-height: calc(26 / 1200 * 100vw);
    margin-bottom: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-privacy__text h4 {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.c-privacy__text p {
  font-size: 1.4rem;
  line-height: 26px;
}
@media screen and (max-width: 1199px) {
  .c-privacy__text p {
    font-size: calc(14 / 1200 * 100vw);
    line-height: calc(26 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-privacy__text p {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
  }
}
.c-privacy__text p + * {
  margin-top: 20px;
}
@media screen and (max-width: 1199px) {
  .c-privacy__text p + * {
    margin-top: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-privacy__text p + * {
    margin-top: calc(30 / 375 * 100vw);
  }
}
.c-privacy__text a {
  color: var(--color-main);
}
.c-privacy__button {
  background-color: var(--color-white);
  background-image: url(../images/icon_close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  content: "";
  cursor: pointer;
  display: inline-block;
  height: 32px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 32px;
}
@media screen and (max-width: 1199px) {
  .c-privacy__button {
    height: calc(32 / 1200 * 100vw);
    right: calc(20 / 1200 * 100vw);
    top: calc(20 / 1200 * 100vw);
    width: calc(32 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-privacy__button {
    bottom: calc(25 / 375 * 100vw);
    height: calc(32 / 375 * 100vw);
    left: 0;
    margin: 0 auto;
    position: fixed;
    right: 0;
    top: auto;
    width: calc(32 / 375 * 100vw);
  }
}

.p-header {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.p-header__inner {
  position: relative;
}
.p-header__logo {
  left: 22px;
  position: absolute;
  top: 22px;
  width: 120px;
}
.p-header__logo img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .p-header__logo {
    left: calc(22 / 1200 * 100vw);
    top: calc(22 / 1200 * 100vw);
    width: calc(120 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    left: calc(15 / 375 * 100vw);
    top: calc(15 / 375 * 100vw);
    width: calc(100 / 375 * 100vw);
  }
}

.p-mainVisual {
  background-image: url(../images/bg_mainVisual.png);
  background-position: center;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 829px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual {
    height: calc(829 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual {
    background-image: url(../images/bg_mainVisual_sp.png);
    height: calc(772 / 375 * 100vw);
    position: relative;
  }
}
.p-mainVisual .l-container {
  height: 100%;
}
.p-mainVisual__inner {
  display: flex;
  height: 100%;
  margin: 0 -130px;
  padding-top: 130px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__inner {
    margin: 0 calc(-130 / 1200 * 100vw);
    padding-top: calc(130 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__inner {
    display: block;
    margin: 0;
    padding-top: calc(70 / 375 * 100vw);
  }
}
.p-mainVisual__content {
  width: 634px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__content {
    width: calc(634 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content {
    width: 100%;
  }
}
.p-mainVisual__content__textBox__text1 {
  color: var(--color-white);
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__content__textBox__text1 {
    font-size: calc(23 / 1200 * 100vw);
    margin-bottom: calc(15 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__textBox__text1 {
    font-size: calc(19 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
    text-align: center;
    white-space: nowrap;
  }
}
.p-mainVisual__content__textBox__text2 {
  align-items: center;
  background-color: var(--color-main);
  display: flex;
  height: 83px;
  justify-content: center;
  width: 547px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__content__textBox__text2 {
    height: calc(83 / 1200 * 100vw);
    width: calc(547 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__textBox__text2 {
    height: calc(57 / 375 * 100vw);
    width: calc(335 / 375 * 100vw);
  }
}
.p-mainVisual__content__textBox__text2 p {
  color: var(--color-white);
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__content__textBox__text2 p {
    font-size: calc(24 / 1200 * 100vw);
    line-height: calc(32 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__textBox__text2 p {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(22 / 375 * 100vw);
  }
}
.p-mainVisual__content__textBox__title {
  color: var(--color-white);
  font-family: "Noto Serif JP", serif;
  font-size: 6.4rem;
  font-weight: 400;
  line-height: 75px;
  margin-top: 10px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__content__textBox__title {
    font-size: calc(64 / 1200 * 100vw);
    line-height: calc(75 / 1200 * 100vw);
    margin-top: calc(10 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__textBox__title {
    font-size: calc(34 / 375 * 100vw);
    line-height: calc(44 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-mainVisual__content__textBox__textList {
  margin-top: 15px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__content__textBox__textList {
    margin-top: calc(15 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__textBox__textList {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-mainVisual__content__textBox__textList > ul > li + li {
  margin-top: 15px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__content__textBox__textList > ul > li + li {
    margin-top: calc(15 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__textBox__textList > ul > li + li {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-mainVisual__content__textBox__textList__text {
  align-items: center;
  background-color: var(--color-white);
  border-radius: 22px;
  color: var(--color-main);
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 500;
  height: 44px;
  justify-content: center;
  padding-bottom: 3px;
  width: 453px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__content__textBox__textList__text {
    border-radius: calc(22 / 1200 * 100vw);
    font-size: calc(25 / 1200 * 100vw);
    height: calc(44 / 1200 * 100vw);
    padding-bottom: calc(3 / 1200 * 100vw);
    width: calc(453 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__textBox__textList__text {
    border-radius: calc(17 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
    height: calc(33 / 375 * 100vw);
    padding-bottom: calc(2 / 375 * 100vw);
    width: calc(335 / 375 * 100vw);
  }
}
.p-mainVisual__content__button {
  margin-top: 50px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__content__button {
    margin-top: calc(50 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__button {
    bottom: calc(20 / 375 * 100vw);
    left: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    position: fixed;
    right: 0;
    text-align: center;
    z-index: 1;
  }
}
.p-mainVisual__content__button a {
  align-items: center;
  background-image: url(../images/button_mainVisual.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--color-white);
  content: "";
  display: inline-block;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  height: 67px;
  justify-content: center;
  padding-bottom: 3px;
  width: 236px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__content__button a {
    font-size: calc(25 / 1200 * 100vw);
    height: calc(67 / 1200 * 100vw);
    padding-bottom: calc(3 / 1200 * 100vw);
    width: calc(236 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__button a {
    background-image: url(../images/button_mainVisual_sp.png);
    font-size: calc(24 / 375 * 100vw);
    height: calc(64 / 375 * 100vw);
    margin: 0 auto;
    padding-bottom: calc(3 / 375 * 100vw);
    width: calc(247 / 375 * 100vw);
  }
}

.p-reason {
  background: linear-gradient(to right, #2a6697 0%, #1c1e32 100%);
}
@media screen and (max-width: 767px) {
  .p-reason {
    background: linear-gradient(to bottom, #2a6697 0%, #1c1e32 100%);
  }
}
.p-reason__inner {
  padding-bottom: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 1199px) {
  .p-reason__inner {
    padding-bottom: calc(80 / 1200 * 100vw);
    padding-top: calc(80 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__inner {
    padding-bottom: calc(40 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__inner {
    padding-bottom: calc(110 / 375 * 100vw);
    padding-top: calc(80 / 375 * 100vw);
  }
}
.p-reason__title {
  color: var(--color-white);
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-reason__title {
    font-size: calc(30 / 1200 * 100vw);
    line-height: calc(45 / 1200 * 100vw);
    margin-bottom: calc(60 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__title {
    font-size: calc(22 / 375 * 100vw);
    line-height: calc(31 / 375 * 100vw);
    margin-bottom: calc(60 / 375 * 100vw);
  }
}
.p-reason__title span {
  display: block;
  font-size: 4rem;
  line-height: 60px;
}
@media screen and (max-width: 1199px) {
  .p-reason__title span {
    font-size: calc(40 / 1200 * 100vw);
    line-height: calc(60 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__title span {
    font-size: calc(30 / 375 * 100vw);
    line-height: calc(40 / 375 * 100vw);
    margin-top: calc(5 / 375 * 100vw);
  }
}
.p-reason__reasonList {
  background-image: url(../images/text_reasonList.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 235px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList {
    height: calc(235 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList {
    background-image: url(../images/text_reasonList_sp.svg);
    height: calc(522 / 375 * 100vw);
  }
}
.p-reason__reasonList > ul > li {
  position: relative;
}
.p-reason__reasonList > ul > li:first-child h3 {
  left: 26px;
  position: absolute;
  top: 131px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList > ul > li:first-child h3 {
    left: calc(26 / 1200 * 100vw);
    top: calc(131 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList > ul > li:first-child h3 {
    left: calc(9 / 375 * 100vw);
    top: calc(116 / 375 * 100vw);
  }
}
.p-reason__reasonList > ul > li:last-child h3 {
  left: 540px;
  position: absolute;
  top: 110px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList > ul > li:last-child h3 {
    left: calc(540 / 1200 * 100vw);
    top: calc(110 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList > ul > li:last-child h3 {
    left: calc(17 / 375 * 100vw);
    top: calc(340 / 375 * 100vw);
  }
}
.p-reason__reasonList p {
  display: none;
}
.p-reason__reasonList h3 {
  color: var(--color-white);
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList h3 {
    font-size: calc(25 / 1200 * 100vw);
    line-height: calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList h3 {
    font-size: calc(23 / 375 * 100vw);
    line-height: calc(37 / 375 * 100vw);
  }
}

.p-example__title {
  display: none;
}
.p-example__exampleList > ul > li:nth-child(2n+1) .p-example__exampleList__exampleBox__inner {
  text-align: right;
}
.p-example__exampleList > ul > li:nth-child(2n+1) .p-example__exampleList__exampleBox__textBox {
  margin-left: auto;
}
.p-example__exampleList__exampleBox {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 459px;
}
@media screen and (max-width: 1199px) {
  .p-example__exampleList__exampleBox {
    height: calc(459 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox {
    position: relative;
  }
}
.p-example__exampleList__exampleBox__inner {
  padding-top: 42px;
}
@media screen and (max-width: 1199px) {
  .p-example__exampleList__exampleBox__inner {
    padding-top: calc(42 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox__inner {
    padding-top: 0;
  }
}
.p-example__exampleList__exampleBox__change {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--color-white);
  content: "";
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 2.7rem;
  font-weight: 500;
  height: 60px;
  margin-bottom: 30px;
  width: 678px;
}
@media screen and (max-width: 1199px) {
  .p-example__exampleList__exampleBox__change {
    height: calc(60 / 1200 * 100vw);
    margin-bottom: calc(30 / 1200 * 100vw);
    width: calc(678 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox__change {
    height: calc(55 / 375 * 100vw);
    left: calc(-1 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
    overflow: hidden;
    position: absolute;
    text-indent: 150vw;
    top: calc(-28 / 375 * 100vw);
    white-space: nowrap;
    width: calc(356 / 375 * 100vw);
  }
}
@media screen and (max-width: 1199px) {
  .p-example__exampleList__exampleBox__change {
    font-size: calc(27 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox__change {
    font-size: calc(17 / 375 * 100vw);
    line-height: calc(20 / 375 * 100vw);
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox__change br {
    display: none;
  }
}
.p-example__exampleList__exampleBox__textBox {
  text-align: left;
  width: 540px;
}
@media screen and (max-width: 1199px) {
  .p-example__exampleList__exampleBox__textBox {
    width: calc(540 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox__textBox {
    padding-top: calc(343 / 375 * 100vw);
    width: 100%;
  }
}
.p-example__exampleList__exampleBox__textBox__title {
  color: var(--color-white);
  font-family: "Noto Serif JP", serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 38px;
}
@media screen and (max-width: 1199px) {
  .p-example__exampleList__exampleBox__textBox__title {
    font-size: calc(26 / 1200 * 100vw);
    line-height: calc(38 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox__textBox__title {
    font-size: calc(23 / 375 * 100vw);
    line-height: calc(34 / 375 * 100vw);
  }
}
.p-example__exampleList__exampleBox__textBox__text {
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 28px;
  margin-top: 20px;
  text-align: justify;
}
@media screen and (max-width: 1199px) {
  .p-example__exampleList__exampleBox__textBox__text {
    font-size: calc(16 / 1200 * 100vw);
    line-height: calc(28 / 1200 * 100vw);
    margin-top: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox__textBox__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(27 / 375 * 100vw);
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-example__exampleList__exampleBox--example1 {
  background-image: url(../images/bg_example_1.png);
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox--example1 {
    background-image: url(../images/bg_example_1_sp.png);
    height: calc(808 / 375 * 100vw);
  }
}
.p-example__exampleList__exampleBox--example1 .p-example__exampleList__exampleBox__change {
  background-image: url(../images/change_example_1.svg);
  padding-right: 60px;
  padding-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox--example1 .p-example__exampleList__exampleBox__change {
    background-image: url(../images/change_example_1_sp.svg);
  }
}
@media screen and (max-width: 1199px) {
  .p-example__exampleList__exampleBox--example1 .p-example__exampleList__exampleBox__change {
    padding-right: calc(60 / 1200 * 100vw);
    padding-top: calc(16 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox--example1 .p-example__exampleList__exampleBox__change {
    padding-right: calc(24 / 375 * 100vw);
    padding-top: calc(7 / 375 * 100vw);
  }
}
.p-example__exampleList__exampleBox--example2 {
  background-image: url(../images/bg_example_2.png);
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox--example2 {
    background-image: url(../images/bg_example_2_sp.png);
    height: calc(797 / 375 * 100vw);
  }
}
.p-example__exampleList__exampleBox--example2 .p-example__exampleList__exampleBox__change {
  background-image: url(../images/change_example_2.svg);
  padding-left: 17px;
  padding-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox--example2 .p-example__exampleList__exampleBox__change {
    background-image: url(../images/change_example_2_sp.svg);
  }
}
@media screen and (max-width: 1199px) {
  .p-example__exampleList__exampleBox--example2 .p-example__exampleList__exampleBox__change {
    padding-right: calc(17 / 1200 * 100vw);
    padding-top: calc(16 / 1200 * 100vw);
  }
}
.p-example__exampleList__exampleBox--example2 .p-example__exampleList__exampleBox__change span.label {
  align-items: center;
  background-color: var(--color-white);
  color: var(--color-main);
  display: inline-flex;
  font-size: 1.9rem;
  height: 32px;
  justify-content: center;
  margin-right: 5px;
  transform: translateY(-2px);
  width: 72px;
}
@media screen and (max-width: 1199px) {
  .p-example__exampleList__exampleBox--example2 .p-example__exampleList__exampleBox__change span.label {
    font-size: calc(19 / 1200 * 100vw);
    height: calc(32 / 1200 * 100vw);
    margin-right: calc(5 / 1200 * 100vw);
    transform: translateY(calc(-2 / 1200 * 100vw));
    width: calc(72 / 1200 * 100vw);
  }
}
.p-example__exampleList__exampleBox--example2 .p-example__exampleList__exampleBox__change span.arrow {
  background-image: url(../images/icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 20px;
  margin: 0 5px;
  width: 18px;
}
@media screen and (max-width: 1199px) {
  .p-example__exampleList__exampleBox--example2 .p-example__exampleList__exampleBox__change span.arrow {
    height: calc(20 / 1200 * 100vw);
    margin: 0 calc(5 / 1200 * 100vw);
    width: calc(18 / 1200 * 100vw);
  }
}
.p-example__exampleList__exampleBox--example3 {
  background-image: url(../images/bg_example_3.png);
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox--example3 {
    background-image: url(../images/bg_example_3_sp.png);
    height: calc(765 / 375 * 100vw);
  }
}
.p-example__exampleList__exampleBox--example3 .p-example__exampleList__exampleBox__change {
  background-image: url(../images/change_example_3.svg);
  padding-right: 60px;
  padding-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-example__exampleList__exampleBox--example3 .p-example__exampleList__exampleBox__change {
    background-image: url(../images/change_example_3_sp.svg);
  }
}
@media screen and (max-width: 1199px) {
  .p-example__exampleList__exampleBox--example3 .p-example__exampleList__exampleBox__change {
    padding-right: calc(60 / 1200 * 100vw);
    padding-top: calc(16 / 1200 * 100vw);
  }
}
.p-partners {
  background-color: var(--color-bg2);
}
.p-partners__inner {
  padding-bottom: 40px;
  padding-top: 60px;
}
@media screen and (max-width: 1199px) {
  .p-partners__inner {
    padding-bottom: calc(40 / 1200 * 100vw);
    padding-top: calc(60 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-partners__inner {
    padding-bottom: calc(20 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
  }
}
.p-partners__titleBox {
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .p-partners__titleBox {
    margin-bottom: calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-partners__titleBox {
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.p-partners__titleBox__title {
  color: var(--color-white);
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-partners__titleBox__title {
    font-size: calc(30 / 1200 * 100vw);
    margin-bottom: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-partners__titleBox__title {
    font-size: calc(20 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.p-partners__titleBox__text {
  color: var(--color-white);
  font-size: 1.5rem;
  line-height: 27px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-partners__titleBox__text {
    font-size: calc(15 / 1200 * 100vw);
    line-height: calc(27 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-partners__titleBox__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
    text-align: justify;
  }
}
.p-partners__partnerList {
  margin: 0 auto;
  width:900px;
}
@media screen and (max-width: 1199px) {
  .p-partners__partnerList {
    width: calc(843 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-partners__partnerList {
    width: 100%;
  }
}
.p-partners__partnerList > ul {
  display: flex;
  flex-wrap: wrap;
}

.p-partners__partnerList > ul > li{
  width: calc(20% - 10px * 4 / 5);
  margin-right: 10px;
  margin-top: 16px;

}
.p-partners__partnerList > ul > li:nth-child(5n){
  margin-right: 0;
}
.p-partners__partnerList > ul > li:nth-child(-n+5){
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .p-partners__partnerList > ul > li{
    width: calc(25% - 10px * 3 / 4);
    margin-right: 10px;
    margin-top: 16px;
  }
  .p-partners__partnerList > ul > li:nth-child(5n){
    margin-right: 10px;
  }
  .p-partners__partnerList > ul > li:nth-child(-n+5){
    margin-top: 16px;
  }

  .p-partners__partnerList > ul > li:nth-child(4n){
    margin-right: 0;
  }
  .p-partners__partnerList > ul > li:nth-child(-n+4){
    margin-top: 0;
  }
}

.p-partners__partnerList__logo {
  width: 100%;
}
.p-partners__partnerList__logo img {
  height: auto;
  width: 100%;
}

.p-form {
  background-color: var(--color-bg);
}
.p-form .parsley-errors-list {
  color: red;
  font-size: 1.2rem;
  margin-top: 10px;
  padding-left: 190px;
}
@media screen and (max-width: 1199px) {
  .p-form .parsley-errors-list {
    font-size: calc(12 / 1200 * 100vw);
    margin-top: calc(10 / 1200 * 100vw);
    padding-left: calc(190 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .parsley-errors-list {
    font-size: calc(13 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
    padding-left: 0;
  }
}
.p-form__inner {
  padding-bottom: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 1199px) {
  .p-form__inner {
    padding-bottom: calc(80 / 1200 * 100vw);
    padding-top: calc(80 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__inner {
    padding-bottom: calc(40 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__inner {
    padding-bottom: calc(70 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-form__titleBox {
  margin-bottom: 86px;
  padding-bottom: 38px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .p-form__titleBox {
    margin-bottom: calc(86 / 1200 * 100vw);
    padding-bottom: calc(38 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__titleBox {
    margin-bottom: calc(50 / 375 * 100vw);
    padding-bottom: calc(25 / 375 * 100vw);
  }
}
.p-form__titleBox::after {
  background-color: var(--color-main);
  bottom: 0;
  content: "";
  display: inline-block;
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 62px;
}
@media screen and (max-width: 1199px) {
  .p-form__titleBox::after {
    width: calc(62 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__titleBox::after {
    width: calc(50 / 375 * 100vw);
  }
}
.p-form__titleBox__title {
  color: var(--color-main);
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-form__titleBox__title {
    font-size: calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__titleBox__title {
    font-size: calc(30 / 375 * 100vw);
  }
}

.p-footer {
  background-color: var(--color-bg2);
  height: 58px;
}
@media screen and (max-width: 1199px) {
  .p-footer {
    height: calc(58 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    height: calc(58 / 375 * 100vw);
  }
}
.p-footer .l-container {
  height: 100%;
}
.p-footer__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-footer__copyright {
  color: var(--color-white);
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 1199px) {
  .p-footer__copyright {
    font-size: calc(12 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: calc(12 / 375 * 100vw);
  }
}

.p-thanks {
  align-items: center;
  background: linear-gradient(to right, #2a6697 0%, #1c1e32 100%);
  display: flex;
  height: calc(100vh - 58px);
}
@media screen and (max-width: 767px) {
  .p-thanks {
    background: linear-gradient(to bottom, #2a6697 0%, #1c1e32 100%);
  }
}
@media screen and (max-width: 1199px) {
  .p-thanks {
    height: calc(100vh - (58 / 1200 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-thanks {
    height: calc(100vh - (58 / 375 * 100vw));
  }
}
.p-thanks__title {
  background-image: url(../images/title_thanks.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  display: block;
  height: 38px;
  margin: 0 auto;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .p-thanks__title {
    height: calc(38 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    background-image: url(../images/title_thanks_sp.svg);
    height: calc(68 / 375 * 100vw);
  }
}
.p-thanks__text {
  color: var(--color-white);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 27px;
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-thanks__text {
    font-size: calc(15 / 1200 * 100vw);
    line-height: calc(27 / 1200 * 100vw);
    margin-top: calc(50 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(27 / 375 * 100vw);
    margin-top: calc(50 / 375 * 100vw);
  }
}
.p-thanks__button {
  margin-top: 90px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__button {
    margin-top: calc(90 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__button {
    margin-top: calc(90 / 375 * 100vw);
  }
}
.p-thanks__button a {
  background-image: url(../images/button_back.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  display: block;
  height: 55px;
  margin: 0 auto;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 198px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__button a {
    height: calc(55 / 1200 * 100vw);
    width: calc(198 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__button a {
    height: calc(55 / 375 * 100vw);
    width: calc(198 / 375 * 100vw);
  }
}