@charset "UTF-8";
html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body,
h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form, figure {
  margin: 0;
  padding: 0;
  border: none;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  color: #333;
  font-size: 2.5rem;
  line-height: 1.64;
  font-weight: 500;
}

div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd,
ol, ul, li, form, input, textarea, button,
table, tr, th, td, article, aside, footer, header,
hgroup, nav, section, a, span, img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  html {
    min-height: 100vh;
  }
  body,
  h1, h2, h3, h4, h5, h6, p, address,
  ul, ol, li, dl, dt, dd,
  table, th, td, img, form, figure {
    min-width: 1%;
    position: relative;
    font-size: 3rem;
    letter-spacing: normal;
    max-width: 100%;
  }
}
/* img
--------------------------------------------------*/
img, object {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

figure {
  text-align: center;
  line-height: 0;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  figure {
    width: 100%;
    text-align: center;
  }
  img {
    display: block;
  }
}
.l-wrapper {
  overflow: hidden;
}

.l-section {
  position: relative;
  margin: 0 auto;
  max-width: 140rem;
}

.l-inner {
  width: 100%;
  max-width: 72rem;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .l-inner {
    width: 95%;
    max-width: inherit;
  }
}
/* link
--------------------------------------------------*/
a {
  color: inherit;
}
a:link, a:active, a:visited {
  text-decoration: none;
}

a.c-link {
  text-decoration: underline;
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
  .js-imgHover a:hover,
  .js-imgHover a:hover img {
    opacity: 1;
  }
  a,
  a * {
    outline: 1px solid transparent;
    outline: none;
  }
  a img {
    transition: opacity 0.3s ease-out;
  }
}
/* txt/deco
--------------------------------------------------*/
.ta_c {
  text-align: center;
}

.fwb {
  font-weight: bold;
}

.highlight {
  background: linear-gradient(transparent 58%, #ffdb30 58%, #ffdb30 100%, transparent 100%);
}

.udl {
  background: linear-gradient(transparent 98%, #333 98%, #333 100%, transparent 100%);
  display: inline;
  padding: 0 0 0.1em;
}

.mac .udl {
  border-bottom: 1px solid #333;
  padding-bottom: 0.1em;
  background: none;
}

.color_wine {
  color: #831a1f;
}

@media screen and (max-width: 767px) {
  .udl {
    background: linear-gradient(transparent 85%, #333 88%, transparent 95%);
    display: inline;
    padding: 0 0 0;
  }
}
/* pc/sp
--------------------------------------------------*/
.pc {
  display: none;
}

.sp {
  display: block;
}

@media print, screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* flex
--------------------------------------------------*/
.flex {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
}

.justifycontent_spacebetween {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.justifycontent_center {
  -webkit-justify-content: center;
  justify-content: center;
}

.alignitems_center {
  -webkit-align-items: center;
  align-items: center;
}

.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

/* float
--------------------------------------------------*/
.f_left {
  float: left;
}

.f_right {
  float: right;
}

/* clearfix
--------------------------------------------------*/
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* End Hack */
.clear {
  clear: both;
}

/* form
--------------------------------------------------*/
input[type=text],
input[type=tel],
textarea, select,
input[type=button],
input[type=submit],
button[type=submit],
input[type=reset] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #999999;
}

select::-ms-expand {
  display: none;
}

input[type=text],
input[type=tel],
textarea {
  width: 100%;
  max-width: 100%;
}

textarea {
  resize: vertical;
  overflow: auto;
}

input[type=button],
input[type=submit] {
  color: #fff;
  border-style: none;
}

select::-ms-expand {
  display: none;
}

::placeholder {
  color: #999999;
  font-size: 2.5rem;
}

@media screen and (max-width: 767px) {
  input[type=text],
  input[type=tel],
  textarea {
    width: 100%;
    font-size: 16px !important;
  }
  ::placeholder {
    font-size: 3.6vw;
  }
}
/* utility
--------------------------------------------------*/
.u-en {
  font-family: "Bebas Neue", sans-serif;
}

/* header */
.l-header {
  position: relative;
}
.l-header::before {
  position: absolute;
  content: "";
  background: url("../img/line_gold.png") repeat-x;
  width: 100%;
  max-width: 140rem;
  height: 0.4rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.l-header__inner {
  padding-bottom: 2.5rem;
}
.l-header__fv {
  line-height: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .l-header::before {
    max-width: inherit;
    height: 0.4rem;
  }
  .l-header__inner {
    padding-bottom: 2.5rem;
  }
}
/* cta */
.c-cta {
  position: relative;
}
.c-cta-top {
  margin-top: -34.2rem;
}
@media screen and (max-width: 1360px) {
  .c-cta-top {
    margin-top: -31.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta-top {
    margin-top: -34rem;
  }
}
.c-cta-nomal::before {
  position: absolute;
  content: "";
  background: url("../img/line_gold.png") repeat-x;
  width: 100%;
  max-width: 140rem;
  height: 0.4rem;
  top: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.c-cta-nomal .c-cta__wrap {
  margin-top: -13.5rem;
}
.c-cta-nomal .c-cta__policy a {
  color: #fff;
  border-bottom-color: #fff;
}
.c-cta__inner {
  position: relative;
  z-index: 3;
  max-width: 140rem;
  margin: 0 auto;
  background: #fff url("../img/bg_cta_contents.jpg") no-repeat center top/cover;
  padding: 4.6rem 0 9.7rem;
}
@media screen and (max-width: 767px) {
  .c-cta__inner {
    max-width: inherit;
  }
}
.c-cta__ttl {
  text-align: center;
  line-height: 1;
  width: 102.6rem;
  margin: auto;
}
.c-cta__date {
  width: 70.4rem;
  text-align: center;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 1400px) {
  .c-cta__date {
    margin-bottom: 0.3rem;
    width: 67rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta__date {
    width: 94%;
    margin-bottom: 1rem;
  }
}
.c-cta__policy {
  text-align: center;
}
.c-cta__policy a {
  color: #121117;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 2px solid #121117;
  padding-bottom: 0.1em;
  line-height: 1.1;
  font-size: 2.5rem;
}
.c-cta .c-form__input {
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 70rem;
  height: 7.5rem;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #432c0b;
}
@media screen and (max-width: 767px) {
  .c-cta .c-form__input {
    max-width: inherit;
    border-width: 1px;
  }
}
.c-cta .c-form__input::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.6rem;
  transform: translateY(-50%);
  width: 6.4rem;
  height: 4.1rem;
  background: url("../img/icn_mail.png") no-repeat center/contain;
  pointer-events: none;
  z-index: 2;
}
.c-cta .c-form__input input {
  position: relative;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  width: 100%;
  height: 100%;
  border-radius: 0;
  margin: auto;
  font-size: 2.4rem;
  padding: 0 1em 0 9rem;
  line-height: 6.8rem;
}
.c-cta .c-form *::placeholder {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
}
.c-cta .c-form__submit {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 1.2rem;
}
.c-cta .c-form__submit:not(.nolight)::before {
  position: absolute;
  content: "";
  background: url("../img/bg_btn_light.png") no-repeat center center/contain;
  opacity: 0.5;
  width: 21.6rem;
  height: 24.1rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: -9rem;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .c-cta .c-form__submit {
    margin-top: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta .c-form__submit {
    margin-top: 1.2rem;
  }
}
.c-cta .c-form__submit span {
  display: block;
  position: relative;
}
.c-cta .c-form__btn {
  text-indent: -10000px;
  overflow: hidden;
  cursor: pointer;
  background: url("../img/btn_cta.png") no-repeat center/contain;
  width: 72.4rem;
  height: 12.6rem;
  transition: transform 0.4s ease;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .c-cta .c-form__btn:hover {
    transform: translateY(3px);
  }
}
@media screen and (max-width: 1400px) {
  .c-cta .c-form__input {
    transform: scale(0.95);
  }
  .c-cta .c-form__submit {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 767px) {
  .c-cta .c-form__input {
    transform: scale(1);
    width: 93%;
  }
  .c-cta .c-form__submit {
    transform: scale(1);
  }
  .c-cta .c-form *::placeholder {
    font-size: 2.6rem;
  }
}

/* common */
.c-contents {
  position: relative;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 4px 2px rgba(51, 51, 51, 0.2);
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .c-contents {
    max-width: 72.7rem;
  }
}

/* ttl */
.c-ttl {
  text-align: center;
}

.c-subttl {
  text-align: center;
}

.c-ttl-en {
  font-family: "Bebas Neue", sans-serif;
  color: #01070d;
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* sec01 */
.p-sec01.l-section {
  background: url("../img/bg_sec01.jpg") no-repeat center top/cover;
  padding: 8rem 0 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-sec01.l-section {
    padding: 8% 0;
  }
}
.p-sec01__ttl {
  line-height: 1;
  margin: 0 auto 3.8rem;
  width: 71.5rem;
}
@media screen and (max-width: 767px) {
  .p-sec01__ttl {
    width: 90%;
  }
}
.p-sec01__list {
  max-width: 71.6rem;
}
.p-sec01__list li {
  position: relative;
  background: #fff;
  line-height: 1.25;
  color: #111;
  letter-spacing: -0.05em;
  padding: 0.6rem 0 0.6rem 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-sec01__list li {
    padding: 1.1rem 0 1.1rem 5.6rem;
  }
}
.p-sec01__list li.-nrw {
  letter-spacing: -0.12em;
}
.p-sec01__list li.-indent {
  text-indent: -0.5em;
}
.p-sec01__list li + li {
  margin-top: 2.4rem;
}
.p-sec01__list li::before {
  position: absolute;
  content: "";
  background: url("../img/icn_check.png") no-repeat center center/contain;
  width: 2.3rem;
  height: 2.4rem;
  left: 1.8rem;
  top: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-sec01__list li::before {
    top: 0.45em;
  }
}

/* sec02 */
.p-sec02.l-section {
  background: url("../img/bg_sec02.jpg") no-repeat center top/cover;
  padding: 10.3rem 0 11.7rem;
}
@media screen and (max-width: 767px) {
  .p-sec02.l-section {
    padding: 8% 0;
  }
}
.p-sec02__ttl {
  line-height: 1;
}
.p-sec02__ttl.ttl01 {
  margin: 0 0 5.8rem;
  width: 72.3rem;
}
@media screen and (max-width: 767px) {
  .p-sec02__ttl.ttl01 {
    width: 90%;
    margin: 0 auto 8%;
  }
}
.p-sec02__ttl.ttl02 {
  margin: 0 auto 27.9rem;
  width: 67.5rem;
}
@media screen and (max-width: 767px) {
  .p-sec02__ttl.ttl02 {
    width: 86%;
    margin: 0 auto 8%;
  }
}
.p-sec02__ttl-en {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.p-sec02__ttlwrap {
  margin: 8.3rem auto 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-sec02__ttlwrap {
    margin: 8% auto 34%;
  }
}
.p-sec02__txtarea p + p {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-sec02__txtarea p + p {
    margin-top: 5%;
  }
}
.p-sec02__listbox {
  position: relative;
  width: 100%;
  max-width: 72.3rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-sec02__listbox {
    max-width: inherit;
    margin-bottom: 5%;
  }
}
.p-sec02__listbox-img {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  top: -25rem;
  width: 69.3rem;
}
@media screen and (max-width: 767px) {
  .p-sec02__listbox-img {
    top: -21rem;
    width: 80%;
  }
}
.p-sec02__listbox-bg {
  position: relative;
  z-index: 2;
  background: url("../img/bg_sec02_list.jpg") no-repeat center top/cover;
  padding: 1.5rem 1.3rem;
  box-shadow: 0px 0.5rem 1.5rem 0px rgba(4, 0, 0, 0.5);
}
.p-sec02__listbox-inner {
  background: #fff;
  width: 100%;
  padding: 1.2rem 1.5rem 2.9rem;
}
@media screen and (max-width: 767px) {
  .p-sec02__listbox-inner {
    padding: 5% 3% 6.5%;
  }
}
.p-sec02__listbox-inner > p {
  font-size: 2.5rem;
  padding-left: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-sec02__listbox-inner > p {
    font-size: 3rem;
    padding-left: 0;
  }
}
.p-sec02__list {
  margin: 3rem auto 0;
}
.p-sec02__list li {
  position: relative;
  font-size: 2.9rem;
  line-height: 1.25;
  color: #111;
  padding: 0 0 0 4rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-sec02__list li {
    font-size: 3rem;
    white-space: normal;
    padding-left: 5.5rem;
  }
}
.p-sec02__list li::before {
  position: absolute;
  content: "";
  background: #999;
  width: calc(100% - 1rem);
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-sec02__list li.nrw01 {
  letter-spacing: -0.01em;
}
.p-sec02__list li.nrw03 {
  letter-spacing: -0.03em;
}
.p-sec02__list li.nrw06 {
  letter-spacing: -0.06em;
}
.p-sec02__list li:not(:last-child) {
  border-bottom: 1px solid #666;
  padding-bottom: 1.6rem;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-sec02__list li:not(:last-child) {
    padding-bottom: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.p-sec02__list li::before {
  position: absolute;
  content: "";
  background: url("../img/icn_check_circle_red.svg") no-repeat center center/contain;
  width: 3.15rem;
  height: 3.1rem;
  left: 1.5rem;
  top: 0.15em;
}
@media screen and (max-width: 767px) {
  .p-sec02__list li::before {
    width: 3.2rem;
    height: 3.2rem;
    top: 0.1em;
  }
}

/* sec03 */
.p-sec03.l-section {
  background: #ace5f9;
  padding: 0 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-sec03.l-section {
    padding-bottom: 8%;
  }
}
.p-sec03.l-section::before {
  position: absolute;
  content: "";
  background: url("../img/line_gold.png") repeat-x;
  width: 100%;
  height: 0.4rem;
  top: -0.3rem;
  left: 0;
  z-index: 2;
}
.p-sec03__secttl {
  position: relative;
  z-index: 3;
  background: url("../img/bg_secttl.jpg") no-repeat center top/cover;
  height: 27rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 4.1rem;
  padding-bottom: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-sec03__secttl {
    height: auto;
    padding: 5% 0 6%;
    margin-bottom: 5%;
  }
}
.p-sec03__ttl {
  width: 70.4rem;
}
@media screen and (max-width: 767px) {
  .p-sec03__ttl {
    width: 90%;
  }
}
.p-sec03__ttl-en {
  font-size: 3rem;
  margin-bottom: 0.8rem;
  color: #fff;
}
.p-sec03-item {
  width: 69.8rem;
  border: 3px solid #16222e;
  background: #fff;
  box-shadow: 0 0 4px 2px rgba(51, 51, 51, 0.2);
  padding: 0.3rem;
  margin: auto;
}
.p-sec03-item + .p-sec03-item {
  margin-top: 5%;
}
@media screen and (max-width: 767px) {
  .p-sec03-item {
    padding: 0.5rem 0.3rem;
    width: 100%;
  }
}
.p-sec03-item__head {
  background: #16222e;
  height: 11.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 0.4em;
}
@media screen and (max-width: 767px) {
  .p-sec03-item__head {
    height: 13rem;
  }
}
.p-sec03-item__head * {
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
}
.p-sec03-item__head-en {
  color: #fff848;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
}
.p-sec03-item__head-ttl {
  color: #fff;
  font-size: 7.6rem;
}
.p-sec03-item__body {
  padding: 3rem 0 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-sec03-item__body {
    padding: 5% 0;
  }
}
.p-sec03-item__instructor {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-sec03-item__instructor {
    margin-top: 8%;
  }
}
.p-sec03-item__list {
  position: relative;
  margin: 4.8rem auto 0;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-sec03-item__list {
    margin-top: 6rem;
  }
}
.p-sec03-item__list::before {
  position: absolute;
  content: "";
  background: #192533;
  width: calc(100% - 4rem);
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: -3.4rem;
}
.p-sec03-item__list li {
  position: relative;
  font-size: 2.5rem;
  line-height: 1.5;
  padding: 0 0 0 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-sec03-item__list li {
    font-size: 3rem;
    padding-left: 4.8rem;
  }
}
.p-sec03-item__list li::before {
  position: absolute;
  content: "";
  background: url("../img/icn_check_circle_blue.svg") no-repeat center center/contain;
  width: 2.5rem;
  height: 2.5rem;
  left: 0;
  top: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-sec03-item__list li::before {
    width: 3.2rem;
    height: 3.2rem;
    top: 0.2em;
  }
}
.p-sec03-item__list li + li {
  margin-top: 0.8em;
}
.p-sec03-item__subttl {
  background: url("../img/bg_frame_ttl.svg") no-repeat center center/contain;
  width: 24.6rem;
  height: 3.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  line-height: 0.075em;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sec03-item__subttl {
    width: 30rem;
    height: 4.8rem;
    font-size: 3rem;
  }
}
.p-sec03-item__txt01 {
  color: #007ac2;
  font-size: 3.2rem;
  line-height: 1.5151515152;
  font-weight: 700;
  text-align: center;
  font-feature-settings: "palt";
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-sec03-item__txt01 {
    font-size: 3.8rem;
  }
}
.p-sec03-item__txt02 {
  color: #192533;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-sec03-item__txt02 {
    font-size: 3.2rem;
  }
}
.p-sec03-item__name {
  color: #007ac2;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 6.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin: -0.5rem auto 1rem;
}
@media screen and (max-width: 767px) {
  .p-sec03-item__name {
    font-size: 7.8rem;
    margin-top: 0;
  }
}
.p-sec03-item__pos {
  color: #111;
  font-size: 2.9rem;
  line-height: 1.4285224546;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-sec03-item__pos {
    font-size: 3.1rem;
  }
}
.p-sec03-item__txtwrap {
  padding: 0 3rem;
  margin-top: 2.5rem;
}
.p-sec03-item__txtwrap p {
  font-size: 2.5rem;
  line-height: 1.5;
}
.p-sec03-item__txtwrap p + p {
  margin-top: 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-sec03-item__txtwrap {
    margin-top: 5%;
    padding: 0 2rem;
  }
  .p-sec03-item__txtwrap p {
    font-size: 3rem;
    line-height: 1.64;
  }
  .p-sec03-item__txtwrap p + p {
    margin-top: 5%;
  }
}
.p-sec03-item__img {
  margin: 2.2rem auto 2.6rem;
  width: 60rem;
}
@media screen and (max-width: 767px) {
  .p-sec03-item__img {
    margin: 5% auto;
    width: 80%;
  }
}

/* sec04 */
.p-sec04.l-section {
  background: #fff;
  padding: 3.2rem 0 6rem;
}
@media screen and (max-width: 767px) {
  .p-sec04.l-section {
    padding: 6.5% 0;
  }
}
.p-sec04__ttl {
  line-height: 1;
  margin: 0 auto;
  width: 70.2rem;
}
@media screen and (max-width: 767px) {
  .p-sec04__ttl {
    width: 90%;
  }
}
.p-sec04__ttl-en {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #01070d;
}
.p-sec04__ttlwrap {
  margin: 0 auto 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-sec04__ttlwrap {
    margin-bottom: 5%;
  }
}
.p-sec04__txtarea p + p {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-sec04__txtarea p + p {
    margin-top: 5%;
  }
}
.p-sec04__txtarea .-nrw {
  letter-spacing: -0.05em;
}
.p-sec04__maintxt {
  color: #007ac2;
  font-size: 3.3rem;
  line-height: 1.5151515152;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: -0.03em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sec04__maintxt {
    font-size: 3.6rem;
  }
}

/* sec05 */
.p-sec05.l-section {
  background: url("../img/bg_sec05.jpg") no-repeat center top/cover;
  padding: 0 0 9.3rem;
}
@media screen and (max-width: 767px) {
  .p-sec05.l-section {
    padding-bottom: 6.5%;
  }
}
.p-sec05__secttl {
  position: relative;
  background: #04090c;
  height: 20.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 3rem;
}
.p-sec05__secttl::before {
  position: absolute;
  content: "";
  background: url("../img/line_gold.png") repeat-x;
  width: 100%;
  height: 0.4rem;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-sec05__secttl {
    margin-bottom: 5%;
    height: auto;
    padding: 5% 0;
  }
}
.p-sec05__ttl {
  width: 68.6rem;
}
@media screen and (max-width: 767px) {
  .p-sec05__ttl {
    width: 90%;
  }
}
.p-sec05__ttl-en {
  font-size: 3rem;
  margin-bottom: 0.8rem;
  color: #fff;
}
.p-sec05 .c-contents {
  padding: 3rem 2rem 3.7rem;
}
.p-sec05 .c-contents > p {
  padding: 0 2rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-sec05 .c-contents {
    padding: 5% 2rem 6.5%;
  }
  .p-sec05 .c-contents > p {
    padding: 0 0 5%;
  }
}
.p-sec05-item {
  border: 0.6rem solid #b5862a;
  background: #fff;
  padding: 0 1.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-sec05-item {
    padding: 0 2rem 6.5% !important;
  }
}
.p-sec05-item + .p-sec05-item {
  margin-top: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-sec05-item + .p-sec05-item {
    margin-top: 5%;
  }
}
.p-sec05-item.item01 {
  padding-bottom: 2rem;
}
@media print, screen and (min-width: 768px) {
  .p-sec05-item.item01 .p-sec05-item__head::before, .p-sec05-item.item02 .p-sec05-item__head::before {
    bottom: -2rem;
  }
  .p-sec05-item.item01 .p-sec05-item__body, .p-sec05-item.item02 .p-sec05-item__body {
    margin-top: 4rem;
  }
}
.p-sec05-item__head {
  position: relative;
}
.p-sec05-item__head::before {
  position: absolute;
  content: "";
  background: #b5862a;
  width: 100%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3rem;
}
.p-sec05-item__head-inner {
  display: flex;
  align-items: center;
  gap: 0 2rem;
  padding: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-sec05-item__head-inner {
    padding: 2rem 0 0.5rem;
  }
}
.p-sec05-item__head-icn {
  width: 11.3rem;
}
.p-sec05-item__head-ttl {
  flex: 1;
  font-size: 7.7rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #211f20;
  padding-bottom: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-sec05-item__head-ttl {
    font-size: 6.8rem;
  }
}
.p-sec05-item__head-pos {
  font-size: 2.97rem;
  line-height: 1.4285224546;
  color: #111;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sec05-item__head-pos {
    font-size: 2.6rem;
  }
}
.p-sec05-item__body {
  margin-top: 6rem;
}
.p-sec05-item__txt01, .p-sec05-item__txt02 {
  color: #007ac2;
  font-weight: 700;
  text-align: center;
  font-feature-settings: "palt";
}
.p-sec05-item__txt01 {
  font-size: 3.75rem;
  line-height: 1.2221333333;
}
.p-sec05-item__txt01.-sm {
  font-size: 3.3rem;
}
@media screen and (max-width: 767px) {
  .p-sec05-item__txt01 {
    font-size: 3.6rem !important;
  }
}
.p-sec05-item__txt02 {
  font-size: 2.4rem;
  line-height: 1.2266666667;
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-sec05-item__txt02 {
    font-size: 2.6rem;
    line-height: 1.4;
  }
}
.p-sec05-item__thumb {
  margin: 3.2rem auto 0;
}
.p-sec05-item__thumb img {
  width: 44.7rem;
}
@media screen and (max-width: 767px) {
  .p-sec05-item__thumb img {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-sec05-item__thumb {
    margin-top: 5%;
  }
}
.p-sec05-item__thumb.-shadow img {
  display: inline-block;
  box-shadow: 0 0.5rem 2rem 0 rgba(51, 51, 51, 0.5);
}
.p-sec05-item__thumb + .p-sec05-item__txt01 {
  margin-top: 4.5rem;
  margin-bottom: -1rem;
}
.p-sec05-item__thumb.thumb01_02 {
  margin-bottom: 5.5rem;
}
.p-sec05-item__thumb.thumb01_03 {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-sec05-item__thumb + .p-sec05-item__txt01 {
    margin-top: 10%;
    margin-bottom: 0;
  }
  .p-sec05-item__thumb.thumb01_02 {
    margin-bottom: 10%;
  }
  .p-sec05-item__thumb.thumb01_03 {
    margin-top: 5%;
  }
}

/* sec06 */
.p-sec06.l-section {
  background: url("../img/bg_sec06.jpg") no-repeat center top/cover;
  padding: 6.2rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-sec06.l-section {
    padding: 6.5% 0;
  }
}
.p-sec06__ttl {
  line-height: 1;
  margin: 0 auto;
  width: 71.4rem;
}
@media screen and (max-width: 767px) {
  .p-sec06__ttl {
    width: 90%;
  }
}
.p-sec06__ttl-en {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.p-sec06__ttlwrap {
  margin: 0 auto 1.2rem;
}
.p-sec06__txtarea p:not([class]) + p:not([class]) {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-sec06__txtarea p:not([class]) + p:not([class]) {
    margin-top: 5%;
  }
}
.p-sec06__headline, .p-sec06__maintxt {
  position: relative;
  color: #211f20;
  font-size: 4.1rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sec06__headline, .p-sec06__maintxt {
    font-size: 3.8rem;
  }
}
.p-sec06__headline {
  line-height: 1.2;
  font-feature-settings: "palt";
  left: -0.2em;
}
.p-sec06__headline .marker {
  background: linear-gradient(transparent 74%, #ffdb30 74%, #ffdb30 95%, transparent 95%);
}
.p-sec06__maintxt {
  line-height: 1.3998080154;
  font-family: "Noto Serif JP", sans-serif;
  letter-spacing: -0.05em;
  white-space: nowrap;
  margin: 4.5rem auto 4rem;
}
@media screen and (max-width: 767px) {
  .p-sec06__maintxt {
    margin: 5% auto;
  }
}

/* footer */
.l-footer {
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
  position: relative;
  text-align: center;
  background: #08090b;
  padding: 5.8rem 0 7.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 8% 0;
  }
}
.l-footer::before {
  position: absolute;
  content: "";
  background: url("../img/line_gold.png") repeat-x;
  width: 100%;
  height: 0.4rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.l-footer * {
  line-height: 1.8;
  color: #fff;
  font-weight: normal;
  font-size: 2.5rem;
}
.l-footer__link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__link li {
  position: relative;
  padding: 0 1.7rem;
}
.l-footer__link li:nth-child(n+2)::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 0.2rem;
  height: calc(100% - 2rem);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.l-footer__copy {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 0.5em;
  }
}
/*# sourceMappingURL=common.css.map */