@charset "UTF-8";
/* reset */
/* ============================================ */
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

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

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* サイト全体の基本設定 */
/* ============================================ */
html {
  font-size: 62.5%;
}

body {
  color: #231815;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  background: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

a {
  text-decoration: none;
  transition: 0.4s;
}

img {
  max-width: 100%;
}

/* index */
/* ============================================ */
/* mixin */
/* ============================================ */
/* 調整用パーツ */
/* ============================================ */
/* media */
@media screen and (max-width: 768px) {
  .u-only-pc {
    display: none;
  }
}

.u-only-middle {
  display: none;
}
@media screen and (max-width: 1000px) {
  .u-only-middle {
    display: block;
  }
}

.u-only-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-only-sp {
    display: block;
  }
}

/* l-wrap */
/* ============================================ */
.l-wrap {
  overflow: hidden;
}
.l-wrap.-bg {
  background: #fcf6e9;
}

/* l-main */
/* ============================================ */
/* l-inner */
/* ============================================ */
.l-inner {
  padding: 0 50px;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 15px;
  }
}

/* l-header */
/* ============================================ */
.l-header {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.l-header__logo {
  text-align: right;
}

/* l-footer */
/* ============================================ */
.l-footer {
  background: #8e2346;
  text-align: center;
  padding: 18px 50px;
}

/* index */
/* ============================================ */
.p-home-mv {
  position: relative;
}
.p-home-mv__img {
  height: 680px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-home-mv__img {
    height: 660px;
  }
}
.p-home-mv__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.p-home-mv__logo {
  position: absolute;
  left: 12px;
  bottom: 5px;
}

.p-home-contents {
  background: #f9eeed;
}
.p-home-contents__header {
  border-top: 1px solid #8e2346;
  border-bottom: 1px solid #8e2346;
  padding: 14px 0;
  line-height: 1;
}
.p-home-contents__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0 55px;
}
@media screen and (max-width: 768px) {
  .p-home-contents__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    padding: 40px 0 35px;
  }
}
.p-home-contents__item {
  width: 158px;
}
@media screen and (max-width: 768px) {
  .p-home-contents__item {
    width: 100%;
  }
}
.p-home-contents__item a:hover {
  color: #8e2346;
}
.p-home-contents__item a:hover .img {
  opacity: 0.7;
  transition: 0.4s;
}
.p-home-contents__item .img {
  transition: 0.4s;
}
.p-home-contents__item .img img {
  width: 100%;
}
.p-home-contents__item .tit {
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.65;
}
.p-home-contents__item .name {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.65;
}
.p-home-contents__item .name span {
  font-size: 10px;
  display: block;
}

.p-home-support {
  background: #f9ebd2;
}
.p-home-support__header {
  border-top: 1px solid #55a764;
  border-bottom: 1px solid #55a764;
  padding: 14px 0;
  line-height: 1;
}
.p-home-support__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0 55px;
}
@media screen and (max-width: 768px) {
  .p-home-support__list {
    gap: 15px;
    padding: 40px 0 45px;
  }
}
@media screen and (max-width: 768px) {
  .p-home-support__item {
    width: 100%;
  }
}
.p-home-support__item a {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-home-support__item a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
.p-home-support__item a:hover {
  color: #55a764;
}
.p-home-support__item a:hover .img {
  opacity: 0.7;
  transition: 0.4s;
}
.p-home-support__item .img {
  width: 158px;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-home-support__item .img {
    width: 100%;
  }
}
.p-home-support__item .img img {
  width: 100%;
}
.p-home-support__item .txtbox {
  width: 158px;
}
.p-home-support__item .tit {
  font-size: 14px;
  line-height: 1.65;
}
.p-home-support__item .name {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.65;
}
.p-home-support__item .name span {
  font-size: 10px;
  display: block;
}

/* index */
/* ============================================ */
.p-interview {
  padding: 0 50px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-interview {
    padding: 0;
  }
}

.p-interview-hero {
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-interview-hero {
    border-bottom: none;
    display: block;
    padding-bottom: 0;
  }
}
.p-interview-hero__img {
  width: 35.2%;
}
@media screen and (max-width: 768px) {
  .p-interview-hero__img {
    width: 100%;
  }
}
.p-interview-hero__img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-interview-hero__img img {
    max-height: 650px;
    object-fit: cover;
    object-position: top center;
  }
}
.p-interview-hero__detail {
  line-height: 1.8;
  width: 62%;
}
@media screen and (max-width: 768px) {
  .p-interview-hero__detail {
    padding: 35px 20px 30px;
    width: 100%;
    line-height: 1.6;
  }
}
.p-interview-hero__detail .tit {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .p-interview-hero__detail .tit {
    font-size: 22px;
  }
}
.p-interview-hero__detail .txt {
  font-size: 16px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-interview-hero__detail .txt {
    font-size: 10px;
    margin-top: 15px;
  }
}
.p-interview-hero__detail .name {
  font-size: 28px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-interview-hero__detail .name {
    font-size: 22px;
    margin-top: 0;
  }
}

.p-interview-contents {
  display: grid;
  gap: 150px;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .p-interview-contents {
    gap: 50px;
    margin-top: 40px;
  }
}
.p-interview-contents__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item {
    display: block;
    line-height: 1.75;
  }
}
.p-interview-contents__item:nth-of-type(even) .detail {
  order: 2;
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item:nth-of-type(even) .detail {
    order: 1;
  }
}
.p-interview-contents__item:nth-of-type(even) .img {
  order: 1;
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item:nth-of-type(even) .img {
    order: 2;
  }
}
.p-interview-contents__item .detail {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item .detail {
    width: 100%;
  }
}
.p-interview-contents__item .detail .tit {
  border-bottom: 2px solid #D06D8C;
  font-size: 22px;
  position: relative;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item .detail .tit {
    font-size: 19px;
    padding-bottom: 15px;
    margin: 0 30px;
  }
}
.p-interview-contents__item .detail .tit::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  border-width: 20px 14px 0;
  border-style: solid;
  border-color: #D06D8C transparent transparent;
  margin-left: -7px;
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item .detail .tit::before {
    bottom: -14px;
    border-width: 14px 10px 0;
    margin-left: -5px;
  }
}
.p-interview-contents__item .detail .tit::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  border-width: 18px 12px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
  margin-left: -5px;
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item .detail .tit::after {
    bottom: -11px;
    border-width: 12px 8px 0;
    margin-left: -3px;
  }
}
.p-interview-contents__item .detail .txt {
  font-size: 16px;
  display: grid;
  gap: 30px;
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item .detail .txt {
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item .detail .txt p {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item .detail .txt .txt-img {
    margin: 20px 0;
  }
}
.p-interview-contents__item .detail .txt .txt-img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item .detail .txt .txt-img img {
    max-height: 600px;
    object-fit: cover;
  }
}
.p-interview-contents__item .img {
  display: grid;
  gap: 25px;
  width: 49.2%;
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item .img {
    margin-top: 55px;
    width: 100%;
  }
}
.p-interview-contents__item .img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-interview-contents__item .img img {
    max-height: 600px;
    object-fit: cover;
  }
}
.p-interview-contents__item.-full .detail {
  width: 100%;
}
.p-interview-link {
  text-align: center;
  margin: 100px 0 120px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-interview-link {
    text-align: left;
    margin: 35px 0;
    padding: 0 30px;
  }
}
.p-interview-link__tit {
  color: #8E2346;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .p-interview-link__tit {
    font-size: 20px;
  }
}
.p-interview-link dl {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-interview-link dl {
    margin-top: 0;
  }
}
.p-interview-link dl dd {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-interview-link dl dd {
    margin-top: -5px;
  }
}
.p-interview-link dl dd::before {
  content: "●";
  color: #8E2346;
}
.p-interview-link dl dd a:hover {
  color: #8E2346;
}
.p-interview-link__back {
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .p-interview-link__back {
    text-align: center;
    margin-top: 40px;
  }
}
.p-interview-link__back a {
  border: 1px solid #231815;
  display: inline-block;
  padding: 15px 60px;
}
@media screen and (max-width: 768px) {
  .p-interview-link__back a {
    padding: 15px 30px;
  }
}
.p-interview-link__back a:hover {
  background: #231815;
  color: #fff;
}/*# sourceMappingURL=style.css.map */