/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  overflow-x: hidden;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  -webkit-font-smoothing: antialiased;
}
body.is-fixed {
  overflow: auto;
}
@media screen and (max-width: 991px) {
  body.is-fixed {
    overflow: hidden;
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  margin: 0;
  padding-left: 1em;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a,
button,
input[type=submit] {
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
  cursor: pointer;
}
a:hover,
button:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #cecece;
}

button:disabled {
  opacity: 0.7;
  pointer-events: none;
}

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

.is-max-lg {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .is-max-lg {
    display: block !important;
  }
}

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

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

.whitespace-nowrap {
  white-space: nowrap;
}

/* l-wrapper */
/* l-inner */
.l-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.l-inner--sm {
  max-width: 1040px;
}

/* l-header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 61px;
  padding-left: 18px;
  background: #fff;
}
@media screen and (max-width: 991px) {
  .l-header {
    height: 43px;
    padding-left: 10px;
    box-shadow: none;
  }
}
.l-header.is-scrolled {
  background: #fff !important;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.06) !important;
}
.l-header__logo {
  display: block;
  width: 326px;
  margin-right: auto;
}
@media screen and (max-width: 1209px) {
  .l-header__logo {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 191px;
  }
}
.l-header__nav {
  margin-right: 140px;
}
@media screen and (max-width: 1209px) {
  .l-header__nav {
    margin-right: 90px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    margin-right: 50px;
  }
}
@media screen and (max-width: 991px) {
  .l-header__nav {
    position: fixed;
    z-index: 30;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    width: 89%;
    padding: 20px 20px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
}
.l-header__nav.is-active {
  opacity: 1;
  visibility: visible;
}
.l-header__nav__head {
  display: none;
}
@media screen and (max-width: 991px) {
  .l-header__nav__head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
}
.l-header__nav__headTitle {
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: #0a1447;
}
.l-header__nav__headClose {
  width: 30px;
  cursor: pointer;
}
.l-header__nav__list {
  display: flex;
  flex-direction: row;
  gap: 0 36px;
}
@media screen and (max-width: 991px) {
  .l-header__nav__list {
    flex-direction: column;
    gap: 10px 0;
  }
}
@media screen and (min-width: 992px) {
  .l-header__nav__item--sp {
    display: none;
  }
}
.l-header__nav__item a {
  position: relative;
  font-weight: 500;
  color: #3a2c20;
}
@media screen and (max-width: 1209px) {
  .l-header__nav__item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .l-header__nav__item a {
    font-weight: 400;
    color: #000;
  }
}
.l-header__nav .c-btn {
  display: none;
}
@media screen and (max-width: 991px) {
  .l-header__nav .c-btn {
    display: flex;
    margin: 40px auto 0;
    font-size: 17px;
    width: 274px;
    height: 60px;
  }
}
@media screen and (max-width: 991px) {
  .l-header__nav .c-btn:after {
    width: 20px;
    height: 20px;
  }
}
.l-header__btn {
  margin-left: auto;
}
.l-header__toggle {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  background-color: #0a1447;
}
@media screen and (max-width: 991px) {
  .l-header__toggle {
    display: flex;
  }
}
.l-header__toggle img {
  width: 15px;
}
@media screen and (max-width: 991px) {
  .l-header__overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 991px) {
  .l-header__overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

/* l-footer */
.l-footer {
  border-top: 1px solid #dedede;
  padding: 60px 0;
}
.l-footer__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .l-footer__inner {
    flex-direction: column-reverse;
    gap: 20px 0;
    width: fit-content;
  }
}
@media screen and (max-width: 991px) {
  .l-footer__top {
    width: 100%;
  }
}
.l-footer__top__inner {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media screen and (max-width: 991px) {
  .l-footer__top__inner {
    gap: 20px 0;
  }
}
.l-footer__top .l-footer__copy {
  display: none;
}
@media screen and (max-width: 991px) {
  .l-footer__top .l-footer__copy {
    display: block;
    order: 3;
  }
}
.l-footer__logo {
  max-width: 326px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .l-footer__logo {
    order: 2;
  }
}
.l-footer__nav {
  display: flex;
  flex-direction: row;
  gap: 0 20px;
}
@media screen and (max-width: 991px) {
  .l-footer__nav {
    flex-direction: column;
    gap: 10px 0;
  }
}
.l-footer__nav__list {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
.l-footer__nav__list:first-child {
  padding-right: 20px;
  border-right: 1px solid #cfcfcf;
}
@media screen and (max-width: 991px) {
  .l-footer__nav__list:first-child {
    padding-right: 0;
    border-right: none;
  }
}
.l-footer__nav__item a {
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  .l-footer__btm {
    width: 100%;
  }
}
.l-footer__btm .c-btn {
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .l-footer__btm .c-btn {
    margin: 0 auto;
    max-width: 335px;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .l-footer__btm .l-footer__copy {
    display: none;
  }
}
.l-footer__address {
  position: relative;
  margin: 20px 0 85px;
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 991px) {
  .l-footer__address {
    padding-bottom: 20px;
    margin-bottom: 0;
    text-align: left;
  }
}
@media screen and (max-width: 991px) {
  .l-footer__address:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 240px;
    height: 1px;
    background-color: #cfcfcf;
  }
}
.l-footer__copy {
  font-size: 14px;
  color: #2864ac;
  text-align: right;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .l-footer__copy {
    text-align: center;
  }
}

/* l-main */
.l-main {
  padding-top: 61px;
}
@media screen and (max-width: 991px) {
  .l-main {
    padding-top: 43px;
  }
}
.l-main--about {
  position: relative;
}
.l-main--about:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30.2777777778vw;
  clip-path: polygon(0 74%, 100% 0, 100% 100%, 0% 100%);
  background-color: #fff6ef;
}
@media screen and (max-width: 767px) {
  .l-main--about:before {
    height: 418px;
    clip-path: polygon(0 29%, 100% 0, 100% 100%, 0% 100%);
  }
}

/* l-box */
.l-box {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .l-box {
    padding: 60px 0;
  }
}
.l-box--deco {
  position: relative;
  overflow-y: hidden;
}
.l-box--deco:before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 342px;
  height: 588px;
  background-image: url("../img/common/deco_content_01.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .l-box--deco:before {
    top: 0;
    left: 0;
    width: 79px;
    height: 233px;
    background-image: url("../img/common/deco_content_01_sp.svg");
  }
}
.l-box--deco:after {
  content: "";
  position: absolute;
  top: -202px;
  right: 0;
  width: 355px;
  height: 611px;
  background-image: url("../img/common/deco_content_02.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .l-box--deco:after {
    top: 0;
    right: 0;
    width: 162px;
    height: 147px;
    background-image: url("../img/common/deco_content_02_sp.svg");
  }
}

/* l-breadcrumb */
.l-breadcrumb {
  padding: 21px 0;
  background-color: #0a1447;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb {
    padding: 10px 0;
  }
}
.l-breadcrumb__list {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.l-breadcrumb__list li:after {
  content: "/";
  color: #fff;
  margin-left: 12px;
}
.l-breadcrumb__list li a,
.l-breadcrumb__list li span {
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb__list li a,
  .l-breadcrumb__list li span {
    font-size: 14px;
  }
}
.l-breadcrumb__list li a {
  text-decoration: underline;
}
.l-breadcrumb__list li:last-child:after {
  display: none;
}

.home .l-breadcrumb {
  opacity: 0;
  visibility: hidden;
}

/* c-edgeText */
.c-edgeText .js-clone {
  position: relative;
  z-index: 1;
  color: #f68300;
  -webkit-text-stroke: 5px #fff;
  text-stroke: 5px #fff;
  paint-order: stroke fill;
}
.c-edgeText span:not(.js-clone):not(.underline) {
  position: absolute;
  top: 0;
  left: 0;
  text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.25);
}

/* c-btn */
.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 276px;
  height: 75px;
  background-image: linear-gradient(to bottom, #f68300 0%, #df6106 100%);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  border-radius: 9999px;
  border: 4px solid #fff;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.15);
}
.c-btn:after {
  content: "";
  margin-left: 10px;
  background-image: url("../img/common/i_mail.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 27px;
  height: 27px;
}
.c-btn:hover {
  filter: brightness(1.1);
  opacity: 1;
}
.c-btn--header {
  width: 184px;
  height: 61px;
  font-size: 16px;
  border-radius: 0 0 0 11px;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.25);
  border: none;
}
@media screen and (max-width: 991px) {
  .c-btn--header {
    width: 112px;
    height: 43px;
    font-size: 13px;
  }
}
.c-btn--header:before {
  content: "";
  width: 24px;
  height: 23px;
  margin-right: 10px;
  background-image: url("../img/common/i_send.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 991px) {
  .c-btn--header:before {
    width: 14px;
    height: 13px;
    margin-right: 5px;
  }
}
.c-btn--header:after {
  display: none;
}
.c-btn--outline {
  max-width: none;
  width: fit-content;
  height: auto;
  margin: 0 auto;
  padding: 15px 44px;
  background-image: none;
  background-color: #fff;
  border: 1px solid #fc5e0f;
  text-shadow: none;
  font-size: 18px;
  font-weight: 700;
  color: #fc5e0f;
  text-align: left;
  justify-content: flex-start;
  box-shadow: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-btn--outline {
    padding: 7px 44px;
  }
}
.c-btn--outline:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  margin: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 6px;
  border-color: transparent transparent transparent #fc5e0f;
}
.c-btn--submit {
  width: 257px;
  height: 68px;
  font-size: 20px;
  border-radius: 4px;
}
.c-btn--submit:after {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 7px;
  height: 14px;
  margin: 0;
  background-image: url("../img/common/arrow_send.svg");
}
.c-btn--back {
  position: relative;
  width: 257px;
  height: 68px;
  border-radius: 4px;
  background-image: linear-gradient(to bottom, #fdfdfd 0%, #f5f5f5 100%);
  text-shadow: none;
  border: none;
  font-size: 20px;
  color: #e36705;
}
.c-btn--back:before {
  content: "";
  width: 7px;
  height: 14px;
  margin-right: 10px;
  background-image: url("../img/common/arrow_back.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-btn--back:after {
  display: none;
}

/* c-ttl */
.c-ttl {
  position: relative;
  width: fit-content;
  margin: 0 auto 40px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-ttl {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
.c-ttl .js-clone {
  color: #40220d;
}
.c-ttl .js-clone strong {
  color: #f68300;
}

/* c-pagetop */
.c-pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  width: 60px;
  height: 60px;
  transition: none;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    width: 50px;
    height: 50px;
  }
}

/* c-checkList */
.c-checkList {
  width: fit-content;
  margin: 0 auto;
}
.c-checkList li {
  padding-left: 30px;
  background-image: url("../img/common/i_check.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-checkList li {
    font-size: 16px;
  }
}

/* c-place */
/* c-form */
.c-form {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  max-width: 560px;
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 640px) {
  .c-form {
    margin-top: 30px;
  }
}
.c-form--input .c-form__label {
  padding-top: 8px;
}
.c-form--confirm {
  gap: 40px 0;
}
@media screen and (max-width: 640px) {
  .c-form--confirm {
    gap: 24px 0;
  }
}
.c-form--confirm .c-form__group {
  gap: 6px 34px;
}
.c-form__error {
  font-size: 14px;
  color: #ea0000;
}
.c-form__group {
  display: flex;
  flex-direction: row;
  gap: 10px 20px;
}
@media screen and (max-width: 640px) {
  .c-form__group {
    display: flex;
    flex-direction: column;
  }
}
.c-form__label {
  width: 130px;
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 640px) {
  .c-form__label {
    width: auto;
    text-align: left;
    padding-top: 0;
  }
}
.c-form__label small {
  font-size: 12px;
  font-weight: 500;
}
.c-form__input {
  flex: 1;
}
.c-form__input input,
.c-form__input select,
.c-form__input textarea {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 8px 14px;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.07);
}
.c-form__input--age input {
  width: 80px;
}
.c-form__input--tel input {
  width: 176px;
}
.c-form__input--select {
  position: relative;
}
.c-form__input--select:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 12px;
  height: 6px;
  background-image: url("../img/common/arrow_select.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.c-form__input__note {
  font-size: 12px;
  line-height: 1.4;
  margin-top: 10px;
}
.c-form__btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
@media screen and (max-width: 640px) {
  .c-form__btns {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    align-items: center;
  }
}

/* p-pageHeader */
.p-pageHeader {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 50px 0;
  background-color: #f9f9f9;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-pageHeader {
    min-height: 100px;
    padding: 31px 0;
  }
}
.p-pageHeader:before {
  content: "";
  position: absolute;
  top: 0;
  left: 75px;
  width: 147px;
  height: 82px;
  background-image: url("../img/common/deco_page-header_01.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-pageHeader:before {
    top: -33px;
    left: -85px;
  }
}
.p-pageHeader:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 166px;
  width: 153px;
  height: 61px;
  background-image: url("../img/common/deco_page-header_02.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-pageHeader:after {
    bottom: -21px;
    right: -49px;
  }
}
.p-pageHeader__inner {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.p-pageHeader__ttl {
  position: relative;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-pageHeader__ttl {
    font-size: 28px;
    white-space: nowrap;
  }
}
.p-pageHeader__txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-pageHeader__txt {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* p-mv */
.p-mv {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 460px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding: 60px 0;
  }
}
.p-mv--about {
  background-image: url("../img/about/mv.jpg");
}
@media screen and (max-width: 767px) {
  .p-mv--about {
    height: 413px;
    background-image: url("../img/about/mv_sp.jpg");
  }
}
.p-mv--leaders {
  background-image: url("../img/leaders/mv.jpg");
}
@media screen and (max-width: 767px) {
  .p-mv--leaders {
    background-image: url("../img/leaders/mv_sp.jpg");
  }
}
.p-mv--members {
  background-image: url("../img/members/mv.jpg");
}
@media screen and (max-width: 767px) {
  .p-mv--members {
    background-image: url("../img/members/mv_sp.jpg");
  }
}
.p-mv__box {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 845px;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
}
.p-mv__box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #b7794d;
  mix-blend-mode: multiply;
}
.p-mv__txt {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mv__txt {
    font-size: 16px;
  }
}
.p-mv__about {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
}
.p-mv__about__ttl {
  width: fit-content;
  padding: 16px 13px;
  background-color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: #df6106;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mv__about__ttl {
    padding: 9px 13px;
    font-size: 20px;
    line-height: 1.3;
  }
}
.p-mv__about__txt {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mv__about__txt {
    font-size: 22px;
  }
}
.p-mv__about__txt small {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .p-mv__about__txt small {
    font-size: 17px;
  }
}
.p-mv__about__txt span {
  margin-right: 10px;
  padding: 0px 19px;
  border: 2px solid #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__about__txt span {
    margin-right: 6px;
    padding: 0 13px;
    border-width: 1px;
  }
}

/* p-side */
.p-side {
  position: relative;
}
.p-side--mv .p-side__ttl {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-side--mv .p-side__ttl {
    transform: none;
    top: auto;
    left: 0;
    bottom: -3px;
    font-size: 57px;
  }
}
.p-side__ttl {
  position: absolute;
  top: -81px;
  left: -4px;
  z-index: 1;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 78px;
  line-height: 1;
  color: #ff9a59;
  transform: rotate(90deg);
  transform-origin: bottom left;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .p-side__ttl {
    top: -41px;
    left: -2px;
    font-size: 40px;
  }
}
.p-side__ttl--normal {
  mix-blend-mode: normal;
}
.p-side__ttl--white {
  color: #fff;
  mix-blend-mode: unset;
}

/* p-cta */
.p-cta {
  padding: 55px 0;
  background-image: url("../img/common/bg_cta.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-cta {
    background-image: url("../img/common/bg_cta_sp.jpg");
  }
}
.p-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px 0;
  height: 100%;
}
.p-cta__ttl {
  position: relative;
  width: fit-content;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__ttl {
    font-size: 29px;
  }
}
.p-cta__ttl .js-clone {
  color: #40220d;
}
.p-cta__ttl strong {
  color: #df6106;
}
.p-cta__ttl small {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .p-cta__ttl small {
    font-size: 23px;
  }
}
.p-cta__ttl .underline {
  border-bottom: 3px solid #df6106;
}

/* p-job */
.p-job__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 656px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-job__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-job__card {
  max-width: 313px;
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-job__card {
    max-width: 335px;
    margin: 0 auto;
  }
}
.p-job__card--01 .ttl {
  background: rgba(112, 161, 0, 0.9);
}
.p-job__card--02 .ttl {
  background: rgba(204, 39, 61, 0.9);
}
.p-job__card--03 .ttl {
  background: rgba(34, 149, 207, 0.9);
}
.p-job__card--04 .ttl {
  background: rgba(34, 95, 207, 0.9);
}
.p-job__card__media {
  position: relative;
}
.p-job__card__media .ttl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 7px 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.p-job__card__ttl {
  padding: 10px;
  font-size: 18px;
  text-align: center;
}
.p-job__card__income {
  width: fit-content;
  margin: 20px auto;
  padding: 2px 16px;
  font-weight: 700;
  border: 1px solid #c9c9c9;
  border-radius: 9999px;
}
.p-job__note {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

/* p-media */
.p-media {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px 40px;
}
@media screen and (max-width: 991px) {
  .p-media {
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
}
.p-media--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  .p-media--reverse {
    flex-direction: column;
  }
}
.p-media__img {
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .p-media__img {
    max-width: none;
  }
}
.p-media__head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px 0;
}
@media screen and (max-width: 767px) {
  .p-media__head {
    gap: 20px 0;
  }
}
.p-media__label {
  width: fit-content;
  font-size: 24px;
  font-weight: 700;
  color: #40220d;
  padding: 4px 10px;
  border: 2px solid #40220d;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-media__label {
    font-size: 19px;
  }
}
.p-media__ttl {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
  color: #40220d;
}
@media screen and (max-width: 767px) {
  .p-media__ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-media__ttl--lg {
    font-size: 24px;
  }
}
.p-media__ttl span {
  color: #df6106;
}
.p-media__ttl small {
  font-size: 23px;
}
@media screen and (max-width: 767px) {
  .p-media__ttl small {
    font-size: 18px;
  }
}

/* p-home */
.p-home__job__inner {
  position: relative;
  z-index: 2;
}
.p-home__job .p-job {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-home__job .p-job {
    margin-bottom: 40px;
  }
}
.p-home__job .p-job .c-ttl {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-home__job .p-job .c-ttl {
    margin-bottom: 40px;
  }
}
.p-home__place {
  position: relative;
  padding: 33px 0 100px;
  background-image: linear-gradient(to bottom, #ff9757 0%, #ffbb6d 100%);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .p-home__place {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__place {
    padding: 60px 0;
  }
}
.p-home__place:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64.2361111111vw;
  height: 43.0555555556vw;
  background-image: url("../img/home/deco_place.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 991px) {
  .p-home__place:before {
    width: 925px;
    height: 620px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__place:before {
    width: 735px;
    height: 493px;
  }
}
@media screen and (max-width: 640px) {
  .p-home__place:before {
    width: 100vw;
    height: 110.1333333333vw;
    top: 0;
    left: 0;
    background-image: url("../img/home/deco_place_sp.svg");
  }
}
.p-home__place:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 51.0416666667vw;
  background-image: url("../img/home/bg_place.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-home__place:after {
    width: 100vw;
    height: 179.2vw;
    background-image: url("../img/home/bg_place_sp.png");
  }
}
.p-home__place .p-side__ttl {
  top: -11px;
  transform: none;
}
@media screen and (max-width: 767px) {
  .p-home__place .p-side__ttl {
    top: -6px;
  }
}
.p-home__place__box {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1060px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .p-home__place__box {
    flex-direction: column;
    gap: 20px 0;
    margin-bottom: 20px;
  }
}
.p-home__place__head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-home__place__head {
    align-items: center;
    text-align: center;
  }
}
.p-home__place__head .c-ttl {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-home__place__head .c-ttl {
    margin: 0 auto;
  }
}
.p-home__place__head .c-ttl span:first-child {
  color: #000;
}
.p-home__place__label {
  width: fit-content;
  padding: 12px 30px;
  border: 1px solid #fc5e0f;
  font-size: 24px;
  font-weight: 700;
  color: #fc5e0f;
  line-height: 1;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .p-home__place__label {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-home__place__label {
    position: relative;
    max-width: 335px;
    width: 100%;
    margin-top: -37px;
    font-size: 18px;
  }
}
.p-home__place__img {
  position: relative;
  max-width: 508px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-home__place__img {
    max-width: 306px;
  }
}
.p-home__place .p-placeSlider {
  margin-bottom: 40px;
}
.p-home__place__area {
  max-width: 1070px;
}
.p-home__place .p-place {
  margin-bottom: 60px;
}
@media screen and (max-width: 1023px) {
  .p-home__place .p-place {
    margin-bottom: 40px;
  }
}
.p-home__place .c-btn {
  position: relative;
  z-index: 1;
}

/* p-flow */
.p-flow__list {
  max-width: 645px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 53px 0;
}
.p-flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.p-flow__item:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -33px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 9.5px 0 9.5px;
  border-color: #ff5a01 transparent transparent transparent;
}
.p-flow__item:last-child::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-flow__item:last-child .p-flow__item__txt {
    text-align: left;
  }
}
.p-flow__item__ttl {
  padding: 20px;
  background-color: #0a1447;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.p-flow__item__txt {
  padding: 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.p-flow__item__txt .note {
  font-size: 14px;
  text-align: center;
}
.p-flow__item__txt .note a {
  display: inline-flex;
}
.p-flow__item__txt .note a img {
  display: inline;
  width: 17px;
}
.p-flow__item a {
  color: #ff5a01;
  text-decoration: underline;
}

/* p-leaders */
.p-leaders__list {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-leaders__list {
    gap: 30px 0;
  }
}
.p-leaders__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 799px) {
  .p-leaders__item {
    flex-direction: column;
  }
}
.p-leaders__item__img {
  max-width: 468px;
  width: 50%;
}
@media screen and (max-width: 799px) {
  .p-leaders__item__img {
    margin: 0 auto;
    width: 100%;
  }
}
.p-leaders__item__head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.p-leaders__item__position {
  width: fit-content;
  margin: 0 auto;
  padding: 10px 18px;
  background-color: #0a1447;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.p-leaders__item__ttl {
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-leaders__item__ttl {
    line-height: 1.4;
  }
}
.p-leaders__item__txt {
  line-height: 1.8;
}

/* p-members */
.p-members__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 0;
}
.p-members__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .p-members__item {
    flex-direction: column;
    gap: 20px 0;
    max-width: 400px;
  }
}
.p-members__item__media {
  position: relative;
  max-width: 330px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-members__item__media {
    max-width: none;
  }
}
.p-members__item__media .position {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px 10px;
  background-color: #0a1447;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-align: center;
}
.p-members__item__head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.p-members__item__head .ttl {
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-members__item__head .ttl {
    font-size: 22px;
    text-align: center;
  }
}
.p-members__item__head .txt {
  line-height: 1.8;
}
.p-members__item__head .info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  width: fit-content;
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
}
.p-members__item__head .info__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 10px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-members__item__head .info__item {
    font-size: 18px;
  }
}
.p-members__item__head .info__item__ttl {
  font-weight: 700;
  color: #0a1447;
}

/* p-entry */
.p-entry--thanks {
  padding-bottom: 280px;
}
@media screen and (max-width: 767px) {
  .p-entry--thanks {
    padding-bottom: 60px;
  }
}
.p-entry__text {
  text-align: center;
}
.p-entry__text--thanks {
  font-size: 20px;
  line-height: 1.95;
}
@media screen and (max-width: 767px) {
  .p-entry__text--thanks {
    line-height: 1.6;
  }
}

/* p-env */
.p-env__info {
  margin-top: 62px;
}
@media screen and (max-width: 767px) {
  .p-env__info {
    margin-top: 34px;
  }
}
.p-env__info__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 795px;
  width: 100%;
  gap: 40px 30px;
}
@media screen and (max-width: 767px) {
  .p-env__info__inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px 0;
  }
}
.p-env__info__item .ttl {
  position: relative;
  width: fit-content;
  min-width: 110px;
  margin: 0 auto -15px;
  padding: 7px 10px;
  background-color: #df6106;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-env__info__item .ttl {
    min-width: 99px;
    font-size: 13px;
  }
}
.p-env__box {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-env__box {
    padding-top: 72px;
  }
}

/* p-about */
.p-about__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    gap: 40px 0;
  }
}

/* p-location */
.p-location__place {
  background-image: linear-gradient(to bottom, #F6EBDF 0%, #FFFFFF 100%);
  overflow-x: hidden;
}
.p-location__place__inner {
  max-width: 1070px;
}
.p-location__place__note {
  margin-top: 60px;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-location__place__note {
    margin-top: 30px;
  }
}
.p-location__cond {
  padding: 120px 0 180px;
}
@media screen and (max-width: 767px) {
  .p-location__cond {
    padding: 40px 0 60px;
  }
}

/* p-place */
.p-place {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-place {
    gap: 30px 0;
  }
}
.p-place__box {
  position: relative;
  display: flex;
  flex-direction: row;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
  .p-place__box {
    flex-direction: column;
  }
}
.p-place__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 148px;
  padding: 8px 14px;
  color: #fff;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 991px) {
  .p-place__ttl {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
}
.p-place__ttl--tokai {
  background-color: #354ca9;
}
.p-place__ttl--kanto {
  background-color: #0c877d;
}
.p-place__ttl--kansai {
  background-color: #b75531;
}
.p-place__ttl__sub {
  font-size: 14px;
  font-weight: 400;
}
.p-place__ttl__main {
  font-size: 22px;
}
.p-place__list {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 991px) {
  .p-place__list {
    width: 100%;
    border-radius: 0 0 10px 10px;
  }
}
@media screen and (min-width: 992px) {
  .p-place__list .swiper-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.p-place__list .swiper-slide {
  height: auto;
}
@media screen and (min-width: 992px) {
  .p-place__list .swiper-slide {
    width: fit-content;
  }
}
.p-place__item {
  display: flex;
  flex-direction: column;
  max-width: 267px;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 991px) {
  .p-place__item {
    max-width: none;
  }
}
.p-place__item__ttl {
  padding: 9px 10px;
  font-size: 18px;
  color: #fff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.p-place__item__ttl--tokai {
  background-color: #4f62ae;
}
.p-place__item__ttl--kanto {
  background-color: #2b8c84;
}
.p-place__item__ttl--kansai {
  background-color: #cd5327;
}
.p-place__item__box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  padding: 20px;
  text-align: center;
}
.p-place__item__txt strong {
  display: block;
}
.p-place__item__style {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
}
.p-place__item__style dt {
  width: fit-content;
  flex-shrink: 0;
  padding: 2px 10px;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  border-radius: 6px;
}

.p-place__prev,
.p-place__next {
  display: none;
  position: absolute;
  z-index: 1;
  top: 56%;
  width: 22px;
  height: 40px;
  background-color: #fff;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 991px) {
  .p-place__prev,
  .p-place__next {
    display: block;
  }
}
.p-place__prev:before,
.p-place__next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  margin: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 6px;
  border-color: transparent transparent transparent #40220d;
}
.p-place__prev--outer,
.p-place__next--outer {
  cursor: pointer;
}

.p-place__prev {
  left: -22px;
  transform: rotate(180deg);
}
.p-place__prev--pickup {
  top: 54%;
  left: 0;
}

.p-place__next {
  right: -22px;
}
.p-place__next--pickup {
  top: 54%;
  right: 0;
}

/* p-placeSlider */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}
.p-placeSliderWrap {
  position: relative;
}
.p-placeSliderWrap .p-placeSlider__ttl {
  position: absolute;
  z-index: 1;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding: 9px 30px;
  background: #fff;
  border-radius: 9999px;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.25);
  font-size: 24px;
  line-height: 1;
  color: #00105a;
}
@media screen and (max-width: 1023px) {
  .p-placeSliderWrap .p-placeSlider__ttl {
    top: -16px;
    padding: 7px 22px;
    font-size: 18px;
  }
}

.p-placeSlider {
  width: 100%;
  overflow: hidden;
  padding: 5px 0 6px;
  background-color: #fff;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.25);
}
.p-placeSlider__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 32px 0;
  animation: slide-left 30s linear infinite;
  width: max-content;
  background-color: #0a1447;
}
@media screen and (max-width: 1023px) {
  .p-placeSlider__box {
    padding: 22px 0;
  }
}
.p-placeSlider__list {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.p-placeSlider__item {
  margin-right: 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-placeSlider__item {
    font-size: 18px;
  }
}

/* p-homeMv */
.p-homeMv {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 1.3888888889vw 0;
  width: 100%;
  height: 43.6111111111vw;
  padding-right: 2.0833333333vw;
  background-image: url("../img/home/mv.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-homeMv {
    gap: 2.6666666667vw 0;
    height: 120.5333333333vw;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 0;
    background-image: url("../img/home/mv_sp.jpg");
  }
}
.p-homeMv__ttl {
  position: relative;
  font-size: 4.8611111111vw;
  font-weight: 900;
  line-height: 1.4;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-homeMv__ttl {
    left: 2.9333333333vw;
    font-size: 7.7333333333vw;
    text-align: left;
  }
}
.p-homeMv__ttl .js-clone {
  color: #40220d;
}
.p-homeMv__ttl span strong {
  font-size: 5.625vw;
  color: #df6106;
}
@media screen and (max-width: 767px) {
  .p-homeMv__ttl span strong {
    font-size: 10.6666666667vw;
  }
}
.p-homeMv__ttl span .small01 {
  font-size: 4.2361111111vw;
}
@media screen and (max-width: 767px) {
  .p-homeMv__ttl span .small01 {
    font-size: 8vw;
  }
}
.p-homeMv__ttl span .small02 {
  font-size: 4.1666666667vw;
}
@media screen and (max-width: 767px) {
  .p-homeMv__ttl span .small02 {
    font-size: 6.6666666667vw;
  }
}
.p-homeMv__list {
  padding: 1.5972222222vw;
  background-color: #fff;
  border-radius: 0.6944444444vw;
  display: flex;
  flex-direction: column;
  gap: 0.6944444444vw 0;
}
@media screen and (max-width: 767px) {
  .p-homeMv__list {
    gap: 1.3333333333vw 0;
    padding: 0 2.6666666667vw 4vw;
    border-radius: 0;
  }
}
.p-homeMv__list li {
  padding-left: 2.3611111111vw;
  background-image: url("../img/home/i_checkbox.svg");
  background-repeat: no-repeat;
  background-position: left 0.0694444444vw;
  background-size: 1.9444444444vw;
  font-size: 1.3888888889vw;
}
@media screen and (max-width: 767px) {
  .p-homeMv__list li {
    padding-left: 6.1333333333vw;
    background-position: left 0.5333333333vw;
    background-size: 5.3333333333vw;
    font-size: 4vw;
    white-space: nowrap;
  }
}
.p-homeMv__list li strong {
  color: #df6106;
}

/* p-pickup */
.p-pickup {
  background-image: url("../img/home/bg_pickup.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .p-pickup {
    background-image: url("../img/home/bg_pickup_sp.png");
    background-size: 100%;
  }
}
.p-pickup__inner {
  display: flex;
  flex-direction: column;
  gap: 34px 0;
}
@media screen and (max-width: 991px) {
  .p-pickup__inner {
    padding: 0;
    gap: 28px 0;
  }
}
.p-pickup__ttl {
  font-size: 40px;
  font-weight: 900;
  color: #40220d;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-pickup__ttl {
    font-size: 25px;
  }
}
.p-pickup__ttl small {
  font-size: 34px;
}
@media screen and (max-width: 767px) {
  .p-pickup__ttl small {
    font-size: 21px;
  }
}
.p-pickup__ttl strong {
  position: relative;
  margin-right: 11px;
  padding: 0 10px;
  background-image: linear-gradient(to bottom right, #ed5e3a 0%, #e87c00 100%);
  font-weight: 900;
}
.p-pickup__ttl strong .js-clone {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(to right, #fff 0%, #e8e8e8 44%, #f8f8f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-pickup__ttl strong span:not(.js-clone) {
  position: absolute;
  top: -3px;
  left: 10px;
  text-shadow: 0 3px 5px #ac3a1e;
}
@media screen and (max-width: 767px) {
  .p-pickup__ttl strong span:not(.js-clone) {
    text-shadow: 0px 1px 3px #ac3a1e;
  }
}
.p-pickup__txt {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-pickup__txt {
    font-size: 16px;
  }
}
.p-pickup__place {
  max-width: 926px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .p-pickup__place {
    max-width: none;
  }
}
.p-pickup__place .p-place__list {
  background: none;
  padding: 0;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-pickup__place .p-place__list {
    padding: 0 20px;
  }
}
.p-pickup__place .p-place__list .swiper-slide .p-place__item {
  max-width: 288px;
}
@media screen and (max-width: 991px) {
  .p-pickup__place .p-place__list .swiper-slide .p-place__item {
    max-width: none;
  }
}
.p-pickup__place .p-place__list .swiper-slide .p-place__item--01 .p-place__item__ttl, .p-pickup__place .p-place__list .swiper-slide .p-place__item--04 .p-place__item__ttl {
  background-color: #794139;
}
.p-pickup__place .p-place__list .swiper-slide .p-place__item--02 .p-place__item__ttl, .p-pickup__place .p-place__list .swiper-slide .p-place__item--05 .p-place__item__ttl {
  background-color: #475a8c;
}
.p-pickup__place .p-place__list .swiper-slide .p-place__item--03 .p-place__item__ttl, .p-pickup__place .p-place__list .swiper-slide .p-place__item--06 .p-place__item__ttl {
  background-color: #6c593f;
}

/* p-msg */
.p-msg {
  padding-bottom: 118px;
}
@media screen and (max-width: 1023px) {
  .p-msg {
    display: flex;
    flex-direction: column;
    gap: 25px 0;
    padding-bottom: 60px;
  }
}
.p-msg__img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 929px;
  width: 100%;
}
@media screen and (max-width: 1209px) {
  .p-msg__img {
    max-width: 800px;
  }
}
@media screen and (max-width: 1023px) {
  .p-msg__img {
    position: relative;
    top: auto;
    left: auto;
    max-width: none;
  }
}
.p-msg__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  max-width: 1400px;
}
@media screen and (max-width: 1023px) {
  .p-msg__inner {
    justify-content: center;
  }
}
.p-msg__box {
  padding-top: 118px;
}
@media screen and (max-width: 1209px) {
  .p-msg__box {
    padding-top: 94px;
  }
}
@media screen and (max-width: 1023px) {
  .p-msg__box {
    padding-top: 0;
  }
}
.p-msg__ttl {
  font-size: 34px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 1209px) {
  .p-msg__ttl {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-msg__ttl {
    margin-bottom: 20px;
    font-size: 23px;
  }
}
.p-msg__ttl strong {
  font-size: 42px;
}
@media screen and (max-width: 767px) {
  .p-msg__ttl strong {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-msg__ttl strong {
    font-size: 29px;
  }
}
.p-msg__ttl strong small {
  font-size: 34px;
}
@media screen and (max-width: 767px) {
  .p-msg__ttl strong small {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-msg__ttl strong small {
    font-size: 23px;
  }
}
.p-msg__txt {
  margin-bottom: 50px;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 1209px) {
  .p-msg__txt {
    margin-bottom: 30px;
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .p-msg__txt {
    font-size: 16px;
  }
}
.p-msg__menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 8px;
}
@media screen and (max-width: 767px) {
  .p-msg__menu {
    gap: 0 2px;
  }
}
.p-msg__menu__item {
  position: relative;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 1209px) {
  .p-msg__menu__item {
    max-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .p-msg__menu__item {
    max-width: 300px;
  }
}
.p-msg__menu__item a:hover {
  filter: brightness(1.1);
  opacity: 1;
}
.p-msg__menu__item span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 1209px) {
  .p-msg__menu__item span {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-msg__menu__item span {
    padding: 12px;
    font-size: 14px;
  }
}
.p-msg__menu__item span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 29px;
  transform: translateY(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

/* p-salary */
.p-salary {
  background-image: linear-gradient(to bottom, #f6ebdf 0%, #ffffff 100%);
}
.p-salary__inner {
  position: relative;
  z-index: 1;
  max-width: 970px;
}
.p-salary .c-ttl {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-salary .c-ttl {
    margin-bottom: 30px;
    font-size: 27.5px;
  }
}
.p-salary__example {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-salary__example {
    gap: 25px 0;
    margin-bottom: 30px;
  }
}
.p-salary__example__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .p-salary__example__list {
    gap: 0 15px;
  }
}
.p-salary__example__item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 276px;
  padding: 3px;
  background-color: #d4d4d4;
  border-radius: 6px;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .p-salary__example__item {
    max-width: 160px;
    padding: 2px;
    border-radius: 3px;
  }
}
.p-salary__example__item:after {
  display: none;
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 12.5px 0 12.5px;
  border-color: #d4d4d4 transparent transparent transparent;
}
@media screen and (max-width: 640px) {
  .p-salary__example__item:after {
    bottom: -11px;
    border-width: 12px 8.5px 0 8.5px;
  }
}
.p-salary__example__item .case {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 26px;
  font-size: 18px;
  color: #4a6cb7;
  text-align: center;
  background-color: #d4d4d4;
  border-radius: 7px;
}
@media screen and (max-width: 640px) {
  .p-salary__example__item .case {
    width: 64px;
    height: 22px;
    border-radius: 4px;
    font-size: 14px;
  }
}
.p-salary__example__item.is-active {
  background-color: #00929c;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .p-salary__example__item.is-active {
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 5px;
  }
}
.p-salary__example__item.is-active:after {
  display: block;
  border-top-color: #00929c;
}
.p-salary__example__item.is-active .case {
  background-color: #00929c;
  color: #fff;
}
.p-salary__example__item.is-active .occupation {
  color: #fff;
}
.p-salary__example__item .occupation {
  padding: 13px 16px 16px;
  font-size: 22px;
  font-weight: 700;
  color: #4a6cb7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-salary__example__item .occupation {
    padding: 5px 9px;
    font-size: 16px;
  }
}
.p-salary__example__item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px 0;
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #141414;
  background-color: #fff;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .p-salary__example__item .info {
    gap: 2px 0;
    padding: 10px 7px;
    font-size: 14px;
  }
}
.p-salary__example__main {
  flex: 1;
}
@media screen and (max-width: 949px) {
  .p-salary__example__main {
    max-width: 640px;
    margin: 0 auto;
  }
}
.p-salary__example__main .item {
  display: none;
  background-color: #00929c;
}
.p-salary__example__main .item__inner {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 949px) {
  .p-salary__example__main .item__inner {
    flex-direction: column;
  }
}
.p-salary__example__main .item__img {
  max-width: 423px;
  width: 100%;
}
@media screen and (max-width: 949px) {
  .p-salary__example__main .item__img {
    max-width: none;
  }
}
.p-salary__example__main .item__img img {
  height: 100%;
  object-fit: cover;
}
.p-salary__example__main .item__box {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 20px;
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .p-salary__example__main .item__box {
    margin: 12px;
  }
}
.p-salary__example__main .item__box:before {
  content: "";
  position: absolute;
  bottom: 18px;
  right: -26px;
  width: 100px;
  height: 81px;
  background-image: url("../img/home/tip_salary.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .p-salary__example__main .item__box:before {
    right: -29px;
    width: 67px;
    height: 54px;
  }
}
.p-salary__example__main .item__head {
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .p-salary__example__main .item__head {
    padding: 24px 20px;
  }
}
.p-salary__example__main .item__ttl {
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-salary__example__main .item__ttl {
    margin-bottom: 5px;
    font-size: 18px;
  }
}
.p-salary__example__main .item__income {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 0 14px;
}
@media screen and (max-width: 767px) {
  .p-salary__example__main .item__income {
    gap: 0 10px;
  }
}
.p-salary__example__main .item__income__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 63px;
  background: linear-gradient(to bottom right, #f68300 0%, #ffad3b 44%, #ff9705 100%);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  letter-spacing: 0.4em;
  padding-top: 7px;
}
@media screen and (max-width: 767px) {
  .p-salary__example__main .item__income__label {
    position: relative;
    top: 10px;
    padding-top: 5px;
    width: 28px;
    height: 57px;
    font-size: 16px;
  }
}
.p-salary__example__main .item__income__amount {
  font-size: 27px;
  font-weight: 900;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-salary__example__main .item__income__amount {
    font-size: 24px;
  }
}
.p-salary__example__main .item__income__amount span {
  position: relative;
  line-height: 1;
}
.p-salary__example__main .item__income__amount strong {
  font-size: 85px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-salary__example__main .item__income__amount strong {
    font-size: 60px;
  }
}
.p-salary__example__main .item__income__amount strong:first-child {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, #f68300 27%, #ffad3b 44%, #ff9705 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0 transparent;
  text-stroke: 0 transparent;
}
.p-salary__example__main .item__income__amount strong:last-child {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(0, 0, 0, 0.1);
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
}
.p-salary__example__main .item__income__amount small {
  background: linear-gradient(to bottom, #f68300 0%, #ffad3b 44%, #ff9705 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-salary__example__main .item__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px 0;
  padding: 22px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 640px) {
  .p-salary__example__main .item__info {
    padding: 22px 14px;
  }
}
.p-salary__example__main .item__info__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 18px;
}
.p-salary__example__main .item__info__box:last-child .item__info__item {
  flex-direction: column;
}
.p-salary__example__main .item__info__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  line-height: 1.2;
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  .p-salary__example__main .item__info__item {
    gap: 6px;
    font-size: 14px;
  }
}
.p-salary__example__main .item__info__item dt {
  font-weight: 700;
}
.p-salary__overtime {
  position: relative;
  padding: 60px 17px 60px 40px;
  background: #fff;
  border: 1px solid #070e4a;
}
@media screen and (max-width: 767px) {
  .p-salary__overtime {
    padding: 0;
  }
}
.p-salary__overtime__ttl {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  padding: 22px;
  background-color: #070e4a;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-salary__overtime__ttl {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 20px;
    font-size: 16px;
  }
}
.p-salary__overtime__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-salary__overtime__box {
    flex-direction: column;
    padding: 30px 20px;
  }
}
.p-salary__overtime__box .img {
  max-width: 342px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-salary__overtime__box .img {
    max-width: 540px;
    margin: 0 auto;
  }
}
.p-salary__overtime__box .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-salary__overtime__box .text {
    text-align: center;
  }
}
.p-salary__overtime__box .text p {
  line-height: 1.8;
}
.p-salary__overtime__box .text p:last-child {
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-salary__overtime__box .text p:last-child {
    line-height: 1.5;
  }
}
.p-salary__overtime__box .text p:last-child strong {
  color: #fc5e0f;
}

/* p-holiday */
.p-holiday .p-side__ttl {
  top: -11px;
  right: 0;
  left: auto;
  transform: none;
}
@media screen and (max-width: 767px) {
  .p-holiday .p-side__ttl {
    top: -6px;
  }
}
.p-holiday__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 0;
  max-width: 879px;
}
.p-holiday__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-holiday__box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-holiday__head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  width: 100%;
}
.p-holiday__ttl {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .p-holiday__ttl {
    font-size: 30px;
    text-align: center;
  }
}
.p-holiday__list {
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-holiday__list {
    font-size: 16px;
  }
}
.p-holiday__list li {
  padding-left: 1em;
  text-indent: -1em;
}
.p-holiday__img {
  max-width: 380px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-holiday__img {
    max-width: 640px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-holiday .c-btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* p-office */
.p-office {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-image: url("../img/home/bg_office.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-office {
    background-image: url("../img/home/bg_office_sp.jpg");
    padding: 60px 20px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-office .p-side__ttl {
    top: -7px;
    left: -2px;
    transform: none;
  }
}
.p-office__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 0;
  padding: 60px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 767px) {
  .p-office__box {
    padding: 60px 10px;
    width: 100%;
  }
}
.p-office__ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 84px;
}
@media screen and (max-width: 767px) {
  .p-office__ttl {
    flex-direction: column;
    gap: 40px 0;
    text-align: center;
  }
}
.p-office__ttl__main {
  position: relative;
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .p-office__ttl__main {
    font-size: 30px;
  }
}
.p-office__ttl__main:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -42px;
  transform: translateY(-50%);
  width: 1px;
  height: 29px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .p-office__ttl__main:after {
    width: 29px;
    height: 1px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: -18px;
  }
}
.p-office__ttl__txt {
  font-size: 28px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-office__ttl__txt {
    font-size: 20px;
  }
}
.p-office__txt {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-office__txt {
    font-size: 16px;
  }
}

/* p-voice */
.p-voice .p-side__ttl {
  top: -9px;
  right: 0;
  left: auto;
  transform: none;
  color: #fff;
  -webkit-text-stroke: 3px #ff9a59;
  text-stroke: 3px #ff9a59;
  paint-order: stroke fill;
}
@media screen and (max-width: 767px) {
  .p-voice .p-side__ttl {
    top: -5px;
  }
}
.p-voice .c-ttl {
  margin-bottom: 0;
  text-align: center;
}
.p-voice .c-ttl span {
  color: #000;
}
.p-voice .c-ttl strong {
  color: #df6106;
}
.p-voice__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px 0;
  max-width: 879px;
}
@media screen and (max-width: 767px) {
  .p-voice__inner {
    gap: 20px 0;
  }
}
.p-voice__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-voice__box {
    flex-direction: column-reverse;
  }
}
.p-voice__head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.p-voice__ttl {
  font-size: 28px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-voice__ttl {
    font-size: 20px;
  }
}
.p-voice__txt {
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-voice__txt {
    font-size: 16px;
    line-height: 1.6;
  }
}
.p-voice__img {
  max-width: 380px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-voice__img {
    max-width: 640px;
    margin: 0 auto;
  }
}
.p-voice__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 32px;
  border: 1px solid #df6106;
  border-radius: 9999px;
  color: #df6106;
  font-size: 14px;
  font-weight: 550;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-voice__btn {
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */