@charset "UTF-8";
/****************************************************
 * Stylesheet
 *
 * 1.リセット
 * 2.共通設定
 * 3.レイアウト設定
 * 4.テンプレートスタイル
 * 5.コンテンツスタイル
 * 6.装飾
 * 7.印刷用調整
 * 
 ****************************************************/
/****************************************************
 * 1.リセット
 ****************************************************/
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  color: #000;
  background: #FFF;
  line-height: 1.5;
}

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

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
}

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

fieldset, img, svg {
  border: 0;
}

address, caption, cite, dfn, em, strong, th {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

abbr {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

input[type=submit], input[type=button], input[type=reset] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

article, aside, footer, header, nav, section {
  display: block;
}

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

a, a:focus, a:hover {
  text-decoration: none;
  color: inherit;
  outline: none;
}

/****************************************************
 * 2.共通
 ****************************************************/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  background: none;
  background-color: #101115;
}
@media only screen and (max-width: 1099px) {
  html {
    font-size: 9px;
  }
}
@media only screen and (max-width: 780px) {
  html {
    height: 100%;
    font-size: 10px;
  }
}

body {
  font-size: 1.6rem;
}
@media only screen and (max-width: 780px) {
  body {
    font-size: 1.4rem;
    -webkit-text-size-adjust: 100%;
  }
}
body.top_start #header {
  opacity: 0;
}
body.top_start #header * {
  pointer-events: none !important;
}
body.top_start .p-top__mv .catchcopy, body.top_start .p-top__mv .mv_img, body.top_start .p-top__mv .scroll_object {
  opacity: 0;
}
body.top_start section:not(.p-top__mv) {
  opacity: 0;
  transition: opacity 1s;
}

section.white-section, aside.white-section {
  color: #101115;
  background-color: #ffffff;
}
section.white-section .midashi01 .en:before, aside.white-section .midashi01 .en:before {
  background-color: #101115;
}
section.white-section .btn01, aside.white-section .btn01 {
  color: #101115;
}
section.white-section .btn01 i, aside.white-section .btn01 i {
  border: solid 1px #101115;
}
section.white-section .btn01 i:before, aside.white-section .btn01 i:before {
  border-top: solid 1px #101115;
  border-right: solid 1px #101115;
}
section.white-section .btn01 i:after, aside.white-section .btn01 i:after {
  background-color: #101115;
}
section.white-section .link_btn_area01 li .btn01, aside.white-section .link_btn_area01 li .btn01 {
  border: solid 1px #BEBEBE;
}
@media only screen and (min-width: 781px) {
  section.white-section .link_btn_area01 li .btn01:hover, aside.white-section .link_btn_area01 li .btn01:hover {
    border-color: #101115;
  }
}

a {
  color: #ffffff;
}
a[href^="tel:"] {
  cursor: default;
}
a[href^="tel:"]:hover {
  text-decoration: none;
}

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

@media only screen and (max-width: 1279px) {
  .pc2 {
    display: none !important;
  }
}

@media only screen and (max-width: 780px) {
  .pc_tb {
    display: none !important;
  }
}

@media only screen and (min-width: 901px) {
  .tb_sp {
    display: none !important;
  }
}

@media only screen and (min-width: 781px) {
  .sp {
    display: none !important;
  }
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 780px) {
  .inner {
    width: 80%;
  }
}

/*タブ切り替え　ベース*/
.tab_content .tab_body > *, .tab_content_select .tab_body > * {
  animation: tabDisp 1s;
}
.tab_content .tab_body > *:not(.current), .tab_content_select .tab_body > *:not(.current) {
  display: none;
  opacity: 0;
}
@keyframes tabDisp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*フェードイン*/
.fadeIn {
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 1s ease-in-out forwards;
}

@media only screen and (min-width: 781px) {
  .fadeIn.delay1 {
    animation-delay: 0.5s;
  }
}

@media only screen and (min-width: 781px) {
  .fadeIn.delay2 {
    animation-delay: 1s;
  }
}

@media only screen and (min-width: 781px) {
  .fadeIn.delay3 {
    animation-delay: 1.5s;
  }
}

@media only screen and (min-width: 781px) {
  .fadeIn.delay4 {
    animation-delay: 2s;
  }
}

@media only screen and (min-width: 781px) {
  .fadeIn.delay5 {
    animation-delay: 2.5s;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*コンポーネント*/
.midashi01 {
  margin-bottom: 1em;
  font-size: 4.2rem;
}
@media only screen and (max-width: 780px) {
  .midashi01 {
    font-size: 2.4rem;
  }
}
.midashi01 .en {
  margin-bottom: 1em;
  padding-left: 4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .midashi01 .en {
    margin-bottom: 2em;
    padding-left: 3rem;
    font-size: 1.5rem;
  }
}
.midashi01 .en:before {
  width: 0.8rem;
  height: 0.8rem;
  margin-top: -0.4rem;
  content: "";
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
}
.midashi01 .ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  display: block;
}
@media only screen and (max-width: 780px) {
  .midashi01 .ja {
    line-height: 1.3;
  }
}

.btn01 {
  font-family: "Noto serif JP", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.btn01 i {
  width: 6.4rem;
  height: 6.4rem;
  margin-left: 6.4rem;
  border: solid 1px #ffffff;
  border-radius: 50%;
  display: inline-block;
  vertical-align: -1.8em;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .btn01 i {
    width: 5rem;
    height: 5rem;
    margin-left: 5rem;
    vertical-align: -1.5em;
  }
}
.btn01 i:before {
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transform: rotate(45deg);
  transform-origin: center center;
  position: absolute;
  top: 38%;
  left: 40%;
}
@media only screen and (max-width: 780px) {
  .btn01 i:before {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.btn01 i:after {
  width: 1.5rem;
  height: 1px;
  margin-left: -1.5rem;
  content: "";
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media only screen and (min-width: 781px) {
  .btn01 i:after {
    transform: scaleX(4.4);
    transform-origin: right center;
  }
}
@media only screen and (max-width: 780px) {
  .btn01 i:after {
    width: 5rem;
    margin-left: -5rem;
  }
}
@media only screen and (min-width: 781px) {
  .btn01 i:after {
    transition: transform 0.3s;
  }
  .btn01:hover i:after {
    transform: none;
  }
}

@media only screen and (min-width: 1100px) {
  .link_btn_area01 {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1100px) {
  .link_btn_area01 li {
    width: 32%;
  }
}
@media only screen and (max-width: 1099px) {
  .link_btn_area01 li + li {
    margin-top: 2rem;
  }
}
.link_btn_area01 li .btn01 {
  padding: 4.8rem 2.4rem 4.8rem 1rem;
  text-align: right;
  border: solid 1px #383838;
  border-radius: 0.4rem;
  display: block;
}
@media only screen and (max-width: 1099px) {
  .link_btn_area01 li .btn01 {
    padding: 3rem 1rem;
    text-align: center;
  }
}
@media only screen and (min-width: 781px) {
  .link_btn_area01 li .btn01:hover {
    border-color: #ffffff;
  }
}

/*CTA*/
.cta_block {
  padding: 9.8rem 0 11.2rem 0;
}
@media only screen and (max-width: 780px) {
  .cta_block {
    padding: 8rem 0;
  }
}
.cta_block h2 {
  margin-bottom: 0.13em;
  font-family: "Shippori Mincho", serif;
  font-size: 3.6rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .cta_block h2 {
    margin-bottom: 1.4em;
    font-size: 2.3rem;
    line-height: 1.2;
  }
}
.cta_block h2 + p {
  text-align: center;
}
@media only screen and (min-width: 781px) {
  .cta_block h2 + p {
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 780px) {
  .cta_block h2 + p {
    line-height: 1.8;
  }
}
@media only screen and (min-width: 781px) {
  .cta_block ul {
    margin-top: 5.6rem;
    display: flex;
    position: relative;
  }
}
@media only screen and (max-width: 780px) {
  .cta_block ul {
    width: 90%;
    margin: 3.9rem auto 0 auto;
  }
}
@media only screen and (min-width: 781px) {
  .cta_block ul li {
    width: 50%;
  }
}
.cta_block ul li a {
  color: #ffffff !important;
  background-color: #0B3055;
}
@media only screen and (min-width: 781px) {
  .cta_block ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
  }
}
@media only screen and (max-width: 780px) {
  .cta_block ul li a {
    display: block;
  }
}
.cta_block ul li a > span {
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .cta_block ul li a > span {
    display: block;
  }
}
.cta_block ul li.tel {
  position: relative;
}
.cta_block ul li.tel:after {
  content: "";
  background-color: #ffffff;
  position: absolute;
}
@media only screen and (min-width: 781px) {
  .cta_block ul li.tel:after {
    width: 1px;
    height: calc(100% - 10rem);
    top: 5rem;
    left: 100%;
  }
}
@media only screen and (max-width: 780px) {
  .cta_block ul li.tel:after {
    width: 73%;
    height: 1px;
    top: 100%;
    left: 13.5%;
  }
}
.cta_block ul li.tel a {
  padding: 6.5rem 0;
}
@media only screen and (max-width: 780px) {
  .cta_block ul li.tel a {
    padding: 2.8rem 0;
  }
}
.cta_block ul li.tel p {
  margin-bottom: 0.5em;
  letter-spacing: 0.03em;
}
.cta_block ul li.tel .num {
  font-family: "Noto serif JP", serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-indent: -0.5em;
}
@media only screen and (max-width: 780px) {
  .cta_block ul li.tel .num {
    font-size: 2.9rem;
    text-indent: 0;
  }
}
.cta_block ul li.tel .num:before {
  width: 0.85em;
  height: 0.85em;
  margin-right: 0.7em;
  content: "";
  background-image: url("../img/icon_tel_white.png");
  background-size: cover;
  display: inline-block;
  vertical-align: -0.05em;
}
@media only screen and (max-width: 780px) {
  .cta_block ul li.tel .num:before {
    margin-right: 0.36em;
  }
}
.cta_block ul li.tel .time {
  margin-top: 0.8em;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 781px) {
  .cta_block ul li.mail a:hover {
    background-color: #0B4580;
  }
}
@media only screen and (max-width: 780px) {
  .cta_block ul li.mail a {
    padding: 6.2rem 0;
  }
}
.cta_block ul li.mail span {
  font-family: "Noto serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .cta_block ul li.mail span {
    font-size: 1.7rem;
  }
}
.cta_block ul li.mail span:before {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.8em;
  content: "";
  background-image: url("../img/icon_mail_white.png");
  background-size: cover;
  display: inline-block;
  vertical-align: -0.2em;
}
@media only screen and (max-width: 780px) {
  .cta_block ul li.mail span:before {
    margin-right: 0.5em;
  }
}

@media only screen and (max-width: 780px) {
  .sp_fix_contact {
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    bottom: -6rem;
    left: 0;
    z-index: 90;
    transition: bottom 0.3s;
  }
  .sp_fix_contact.scroll {
    bottom: 0;
  }
  .sp_fix_contact a {
    padding: 1em 0;
    font-family: "Noto serif JP", serif;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    color: #101115;
    display: block;
  }
  .sp_fix_contact a:after {
    width: 1.33em;
    height: 1.33em;
    margin-left: 0.3em;
    content: "";
    background-image: url("../img/icon_arrow02.png");
    background-size: 1em auto;
    background-repeat: no-repeat;
    background-position: center center;
    display: inline-block;
    vertical-align: -0.25em;
  }
}

/*フォームベース*/
.wpcf7-text, .input-text {
  width: 100%;
  padding: 1.6em;
  font-size: 0.9375em;
  color: #101115;
  background-color: #F7F7F7;
  border-radius: 0.4rem;
}
.wpcf7-text::-moz-placeholder, .input-text::-moz-placeholder {
  color: #8E8E8E;
}
.wpcf7-text::placeholder, .input-text::placeholder {
  color: #8E8E8E;
}

.wpcf7-textarea, .input-textarea {
  width: 100%;
  height: 22.5em;
  padding: 1.6em;
  font-size: 0.9375em;
  color: #101115;
  background-color: #F7F7F7;
  border-radius: 0.4rem;
}
@media only screen and (max-width: 780px) {
  .wpcf7-textarea, .input-textarea {
    height: 12em;
  }
}
.wpcf7-textarea::-moz-placeholder, .input-textarea::-moz-placeholder {
  color: #8E8E8E;
}
.wpcf7-textarea::placeholder, .input-textarea::placeholder {
  color: #8E8E8E;
}

.wpcf7-select, .input-select {
  width: 100%;
  padding: 1.6em 3.2em 1.6em 1.6em;
  font-size: 0.9375em;
  color: #101115;
  background-color: #F7F7F7;
  background-image: url("../img/form_select_icon.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 1.6em) center;
  background-size: 0.8rem auto;
  border-radius: 0.4rem;
}

.wpcf7-radio, .radio_group {
  margin-bottom: -1em;
  display: block;
  letter-spacing: -0.4em;
}
.wpcf7-radio > *, .radio_group > * {
  display: inline-block;
  letter-spacing: normal;
}
.wpcf7-radio > *, .radio_group > * {
  margin-right: 1em !important;
  margin-bottom: 1em !important;
}
.wpcf7-radio label input, .radio_group label input {
  visibility: hidden;
  position: absolute;
  left: -9999999px;
}
.wpcf7-radio label input:checked + span:after, .radio_group label input:checked + span:after {
  content: "";
}
.wpcf7-radio label input + span, .radio_group label input + span {
  padding-left: 4rem;
  display: inline-block;
  position: relative;
}
.wpcf7-radio label input + span:before, .radio_group label input + span:before {
  width: 2.4rem;
  height: 2.4rem;
  content: "";
  background-color: #F7F7F7;
  border: solid 1px #D9D9D9;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.wpcf7-radio label input + span:after, .radio_group label input + span:after {
  width: 1.4rem;
  height: 1.4rem;
  content: none;
  background-color: #101115;
  border-radius: 50%;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}

.wpcf7-checkbox, .wpcf7-acceptance, .check_group {
  margin-bottom: -1em;
  display: block;
  letter-spacing: -0.4em;
}
.wpcf7-checkbox > *, .wpcf7-acceptance > *, .check_group > * {
  display: inline-block;
  letter-spacing: normal;
}
.wpcf7-checkbox > *, .wpcf7-acceptance > *, .check_group > * {
  margin-right: 1em !important;
  margin-bottom: 1em !important;
}
.wpcf7-checkbox label input, .wpcf7-acceptance label input, .check_group label input {
  visibility: hidden;
  position: absolute;
  left: -9999999px;
}
.wpcf7-checkbox label input:checked + span:after, .wpcf7-acceptance label input:checked + span:after, .check_group label input:checked + span:after {
  content: "";
}
.wpcf7-checkbox label input + span, .wpcf7-acceptance label input + span, .check_group label input + span {
  padding-left: 4rem;
  display: inline-block;
  position: relative;
}
.wpcf7-checkbox label input + span:before, .wpcf7-acceptance label input + span:before, .check_group label input + span:before {
  width: 2.4rem;
  height: 2.4rem;
  content: "";
  background-color: #F7F7F7;
  border: solid 1px #D9D9D9;
  position: absolute;
  top: 0;
  left: 0;
}
.wpcf7-checkbox label input + span:after, .wpcf7-acceptance label input + span:after, .check_group label input + span:after {
  width: 1.6rem;
  height: 1rem;
  content: none;
  border-left: solid 0.2rem #101115;
  border-bottom: solid 0.2rem #101115;
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  transform: rotate(-45deg);
}

/*ページネーション*/
.pagination {
  text-align: center;
  letter-spacing: -0.4em;
}
.pagination > * {
  display: inline-block;
  letter-spacing: normal;
}
.pagination > * {
  width: 4rem;
  height: 4rem;
  margin: 0 0.4rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 200;
  line-height: 3.8rem;
  text-align: center;
  vertical-align: 0;
  border: solid 1px #323336;
  border-radius: 50%;
}
@media only screen and (max-width: 780px) {
  .pagination > * {
    width: 3.6rem;
    height: 3.6rem;
    margin: 0.4rem !important;
    line-height: 3.4rem;
    vertical-align: top;
  }
}
.pagination .current {
  color: #101115;
  background-color: #ffffff;
  border-color: #ffffff;
}
.pagination .dots {
  width: auto;
  height: auto;
  border: none;
  vertical-align: 0.3em;
}
.pagination .prev, .pagination .next {
  width: 4.8rem;
  height: 4.8rem;
  background-image: url("../img/icon_arrow01.png");
  background-size: 2rem auto;
  background-repeat: no-repeat;
  background-position: center center;
  border-color: #ffffff;
  vertical-align: -1.8rem;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (max-width: 780px) {
  .pagination .prev, .pagination .next {
    width: 3.6rem;
    height: 3.6rem;
    background-size: 1rem auto;
    vertical-align: top;
  }
}
.pagination .prev {
  margin-right: 2rem;
  transform: scaleX(-1);
}
.pagination .next {
  margin-left: 2rem;
}
.pagination a:hover {
  opacity: 0.6;
}

/* ブロックエディタ用基本CSS */
.editor-area:after {
  content: "";
  display: block;
  clear: both;
}
.editor-area > *:last-child {
  margin-bottom: 0 !important;
}
.editor-area p {
  margin-bottom: 4em;
  line-height: 2.625;
}
@media only screen and (max-width: 780px) {
  .editor-area p {
    margin-bottom: 3em;
  }
}
.editor-area h3 {
  margin-bottom: 1.45em;
  padding-left: 0.7em;
  font-family: "Noto serif JP", serif;
  font-size: 2.2rem;
  font-weight: 500;
  border-left: solid 0.4rem #ffffff;
}
@media only screen and (max-width: 780px) {
  .editor-area h3 {
    font-size: 1.8rem;
  }
}
.editor-area h4 {
  margin-bottom: 1.2em;
  padding-left: 1em;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .editor-area h4 {
    font-size: 1.7rem;
  }
}
.editor-area h4:before {
  width: 0.5em;
  height: 0.5em;
  content: "";
  background-color: #ffffff;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.editor-area h5 {
  margin-bottom: 1.38em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 780px) {
  .editor-area h5 {
    font-size: 1.6rem;
  }
}
.editor-area ul {
  margin-bottom: 4em;
}
@media only screen and (max-width: 780px) {
  .editor-area ul {
    margin-bottom: 3em;
  }
}
.editor-area ul li {
  margin-bottom: 1em;
  padding-left: 3rem;
}
.editor-area ul li:before {
  width: 1.6rem;
  height: 1.6rem;
  margin: 0 1.4rem 0 -3rem;
  content: "";
  background-image: url("../img/news/check.png");
  background-size: 0.8rem auto;
  background-repeat: no-repeat;
  background-position: left center;
  display: inline-block;
  vertical-align: -0.1em;
}
.editor-area ol {
  margin-bottom: 4em;
  counter-reset: num;
}
@media only screen and (max-width: 780px) {
  .editor-area ol {
    margin-bottom: 3em;
  }
}
.editor-area ol li {
  margin-bottom: 1em;
  padding-left: 3rem;
  counter-increment: num;
}
.editor-area ol li:before {
  width: 2rem;
  margin: 0 1rem 0 -3rem;
  content: counter(num) ".";
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  display: inline-block;
  vertical-align: 0;
}
.editor-area .wp-block-image {
  margin-bottom: 3em;
}
@media only screen and (max-width: 780px) {
  .editor-area .wp-block-image {
    margin-bottom: 3em;
  }
}
.editor-area .alignleft {
  max-width: 50%;
  float: left;
  margin-right: 1.5em;
  margin-bottom: 2em;
}
.editor-area .alignright {
  max-width: 50%;
  float: right;
  margin-left: 1.5em;
  margin-bottom: 2em;
}
.editor-area .aligncenter {
  margin-bottom: 3em;
}
.editor-area .aligncenter img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.editor-area .has-text-align-center {
  text-align: center;
}
.editor-area .has-text-align-right {
  text-align: right;
}
.editor-area blockquote {
  margin-bottom: 4em;
  margin-left: 0;
  padding: 2em 2em 2em 5em;
  border: solid 1px #313131;
  position: relative;
  display: block;
}
@media only screen and (max-width: 780px) {
  .editor-area blockquote {
    margin-bottom: 3em;
    padding-left: 4rem;
  }
}
.editor-area blockquote:before {
  width: 5rem;
  height: 5rem;
  content: "";
  background-image: url("../img/news/innyou.png");
  background-size: 2rem auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 780px) {
  .editor-area blockquote:before {
    width: 3rem;
    height: 3rem;
    background-size: 2rem;
  }
}
.editor-area blockquote p {
  line-height: 1.625;
}
.editor-area blockquote > *:last-child {
  margin-bottom: 0 !important;
}
.editor-area table {
  width: 100%;
  margin-bottom: 4em;
  border-collapse: collapse;
}
@media only screen and (max-width: 780px) {
  .editor-area table {
    margin-bottom: 3em;
  }
}
.editor-area table td, .editor-area table th {
  border: 1px solid #313131;
  padding: 1em;
}
.editor-area table th {
  background-color: #17181D;
}
.editor-area .wp-block-columns {
  display: flex;
  margin-bottom: 3em;
}
.editor-area .wp-block-column {
  flex-grow: 1;
  margin-left: 0.625em;
  margin-right: 0.625em;
}
.editor-area .wp-block-media-text {
  display: grid;
}
.editor-area a {
  color: blue;
  text-decoration: underline;
  word-break: break-all;
}
.editor-area strong, .editor-area b {
  font-weight: bold;
}
.editor-area em, .editor-area i {
  font-style: italic;
}
.editor-area .wp-block-spacer {
  clear: both;
}

/****************************************************
 * 3.レイアウト設定
 ****************************************************/
.container {
  width: 100%;
  overflow: hidden;
}

/****************************************************
 * 4.テンプレートスタイル
 ****************************************************/
/*ヘッダーブロック*/
#header {
  width: 100%;
  height: 9.4rem;
  padding: 0 6rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: background-color 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1099px) {
  #header {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 900px) {
  #header {
    position: absolute;
  }
}
#header h1 {
  width: 21.1rem;
  height: auto;
  aspect-ratio: 211/69;
}
@media only screen and (max-width: 900px) {
  #header h1 {
    width: 17.3rem;
  }
}
#header h1 a {
  width: 100%;
  height: 100%;
  background-image: url("../img/logo_white.png");
  background-size: cover;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
@media only screen and (max-width: 900px) {
  #header .header_right .sp_menu_open {
    width: 4.2rem;
    height: 4.2rem;
    background-image: url("../img/sp_menu_open.png");
    background-size: 2.2rem auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: fixed;
    top: 2.5rem;
    right: 2rem;
    z-index: 99;
    transition: background-color 0.5s ease-in-out;
  }
  #header .header_right .sp_menu_open.open + .gnavi {
    left: 0;
  }
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 900px) {
  #header .header_right .gnavi {
    width: 100%;
    height: 100vh;
    padding-top: 12rem;
    padding-bottom: 6rem;
    background-color: rgba(16, 17, 21, 0.92);
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 99;
    overflow: auto;
    transition: left 0.3s;
  }
}
@media only screen and (max-width: 900px) {
  #header .header_right .gnavi .sp_menu_close {
    width: 2.2rem;
    height: 2.2rem;
    background-image: url("../img/sp_menu_close.png");
    background-size: cover;
    position: absolute;
    top: 3.5rem;
    right: 3rem;
  }
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .navi {
    display: flex;
  }
}
@media only screen and (max-width: 900px) {
  #header .header_right .gnavi .navi {
    width: 75.6%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .navi > li {
    margin-right: 4.8rem;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1279px) {
  #header .header_right .gnavi .navi > li {
    margin-right: 3rem;
  }
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .navi > li:last-child {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 900px) {
  #header .header_right .gnavi .navi > li + li {
    margin-top: 4.8rem;
  }
}
#header .header_right .gnavi .navi > li > a, #header .header_right .gnavi .navi > li > span {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.2em;
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .navi > li > a, #header .header_right .gnavi .navi > li > span {
    font-size: 1.4rem;
    position: relative;
  }
  #header .header_right .gnavi .navi > li > a:after, #header .header_right .gnavi .navi > li > span:after {
    width: 0;
    height: 1px;
    content: "";
    background-color: #ffffff;
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    transition: width 0.3s;
  }
}
@media only screen and (max-width: 900px) {
  #header .header_right .gnavi .navi > li > a, #header .header_right .gnavi .navi > li > span {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .navi > li > a:hover:after {
    width: 100%;
  }
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .navi > li.doropdown {
    position: relative;
  }
  #header .header_right .gnavi .navi > li.doropdown:hover > span:after {
    width: 100%;
  }
}
#header .header_right .gnavi .navi > li.doropdown > span i {
  margin-left: 0.5em;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4rem 0.3rem 0 0.3rem;
  border-color: #ffffff transparent transparent transparent;
  display: inline-block;
  vertical-align: middle;
}
#header .header_right .gnavi .navi > li.doropdown > div {
  display: none;
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .navi > li.doropdown > div {
    padding-top: 1.7rem;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 900px) {
  #header .header_right .gnavi .navi > li.doropdown > div {
    padding-top: 3rem;
    padding-left: 4rem;
  }
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .navi > li.doropdown > div ul {
    padding: 2rem;
    background-color: #001C38;
    position: relative;
  }
  #header .header_right .gnavi .navi > li.doropdown > div ul:before {
    margin-left: -0.55rem;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.55rem 0.9rem 0.55rem;
    border-color: transparent transparent #001C38 transparent;
    position: absolute;
    bottom: 100%;
    left: 50%;
  }
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .navi > li.doropdown > div ul li {
    font-size: 1.2rem;
    text-align: center;
  }
  #header .header_right .gnavi .navi > li.doropdown > div ul li + li {
    margin-top: 1.4em;
  }
}
@media only screen and (max-width: 900px) {
  #header .header_right .gnavi .navi > li.doropdown > div ul li {
    font-size: 1.5rem;
  }
  #header .header_right .gnavi .navi > li.doropdown > div ul li + li {
    margin-top: 2.8rem;
  }
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .navi > li.doropdown > div ul li a {
    white-space: nowrap;
    position: relative;
  }
  #header .header_right .gnavi .navi > li.doropdown > div ul li a:after {
    width: 0;
    height: 1px;
    content: "";
    background-color: #ffffff;
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    transition: width 0.3s;
  }
  #header .header_right .gnavi .navi > li.doropdown > div ul li a:hover:after {
    width: 100%;
  }
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .insta {
    width: 3.2rem;
    height: 3.2rem;
    margin-left: 6.4rem;
    margin-right: 6.4rem;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1279px) {
  #header .header_right .gnavi .insta {
    margin-right: 15rem;
  }
}
@media only screen and (max-width: 900px) {
  #header .header_right .gnavi .insta {
    width: 2.5rem;
    height: 2.5rem;
    margin: 6.4rem auto 0 auto;
  }
}
#header .header_right .gnavi .insta a {
  width: 100%;
  height: 100%;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url("../img/icon_insta_white.png");
  background-size: cover;
  display: inline-block;
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .insta a {
    transition: transform 0.3s;
  }
  #header .header_right .gnavi .insta a:hover {
    transform: scale(1.2);
  }
}
@media only screen and (max-width: 900px) {
  #header .header_right .gnavi .contact {
    width: 61.5%;
    margin: 6.8rem auto 0 auto;
  }
}
#header .header_right .gnavi .contact .mail a {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .contact .mail a {
    width: 7rem;
    height: 7rem;
    padding-top: 1rem;
    font-size: 1.4rem;
    text-align: center;
    border: solid 0.2rem #ffffff;
    border-radius: 50%;
    display: block;
    transition: transform 0.3s;
  }
  #header .header_right .gnavi .contact .mail a:hover {
    transform: scale(1.1);
  }
}
@media only screen and (max-width: 900px) {
  #header .header_right .gnavi .contact .mail a {
    padding: 1em 0;
    font-size: 1.6rem;
    text-align: center;
    border: solid 1px #ffffff;
    display: block;
  }
}
#header .header_right .gnavi .contact .mail a:before {
  content: "";
  background-image: url("../img/icon_mail_white.png");
  background-size: cover;
}
@media only screen and (min-width: 901px) {
  #header .header_right .gnavi .contact .mail a:before {
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
    display: block;
  }
}
@media only screen and (max-width: 900px) {
  #header .header_right .gnavi .contact .mail a:before {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
    display: inline-block;
    vertical-align: -0.1em;
  }
}
@media only screen and (max-width: 780px) {
  #header .header_right .gnavi .contact .tel {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 780px) {
  #header .header_right .gnavi .contact .tel a {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    padding: 1em 0;
    font-size: 1.6rem;
    text-align: center;
    border: solid 1px #ffffff;
    display: block;
  }
  #header .header_right .gnavi .contact .tel a:before {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
    display: inline-block;
    vertical-align: -0.1em;
    content: "";
    background-image: url("../img/icon_tel_white.png");
    background-size: cover;
  }
}
@media only screen and (min-width: 901px) {
  #header.scroll {
    background-color: #101115;
  }
}
@media only screen and (max-width: 900px) {
  #header.scroll .header_right .sp_menu_open {
    background-color: #101115;
  }
}

/*フッターブロック*/
#footer {
  padding-top: 5.6rem;
  padding-bottom: 17rem;
}
@media only screen and (max-width: 900px) {
  #footer {
    padding-top: 6rem;
    padding-bottom: 9rem;
  }
}
#footer .footer_content {
  margin-bottom: 4rem;
  padding-bottom: 6.5rem;
  border-bottom: solid 1px #323336;
}
@media only screen and (max-width: 900px) {
  #footer .footer_content {
    margin-bottom: 2.8rem;
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width: 901px) {
  #footer .footer_content .inner {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 901px) {
  #footer .footer_content .footer_navi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 6rem 8rem;
  }
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_navi {
    width: 90%;
    margin: 0 auto 4rem auto;
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_navi dl {
    width: 50%;
    margin-bottom: 5.5rem;
  }
  #footer .footer_content .footer_navi dl:last-of-type {
    margin-top: -9.5rem;
  }
}
#footer .footer_content .footer_navi dl dt {
  margin-bottom: 3.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_navi dl dt {
    font-size: 2rem;
  }
}
#footer .footer_content .footer_navi dl dd {
  font-size: 1.2rem;
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_navi dl dd {
    font-size: 1.4rem;
  }
}
#footer .footer_content .footer_navi dl dd + dd {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 901px) {
  #footer .footer_content .footer_navi dl dd a {
    position: relative;
  }
  #footer .footer_content .footer_navi dl dd a:after {
    width: 0;
    height: 1px;
    content: "";
    background-color: #ffffff;
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    transition: width 0.3s;
  }
  #footer .footer_content .footer_navi dl dd a:hover:after {
    width: 100%;
  }
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_navi .insta {
    width: 100%;
    text-align: center;
  }
}
#footer .footer_content .footer_navi .insta a {
  display: inline-block;
}
@media only screen and (min-width: 901px) {
  #footer .footer_content .footer_navi .insta a {
    width: 3.2rem;
    transition: transform 0.3s;
  }
  #footer .footer_content .footer_navi .insta a:hover {
    transform: scale(1.2);
  }
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_navi .insta a {
    width: 2.5rem;
  }
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_text {
    width: 120%;
    margin: 0 -10%;
  }
}
#footer .footer_content .footer_text .logo {
  width: 19rem;
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_text .logo {
    width: 14.5rem;
    margin: 0 auto 2.8rem auto;
  }
}
#footer .footer_content .footer_text .catchcopy {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_text .catchcopy {
    margin-bottom: 5.5rem;
    text-align: center;
  }
}
#footer .footer_content .footer_text .catchcopy h2 {
  margin-bottom: 0.5em;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_text .catchcopy h2 {
    margin-bottom: 1em;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
#footer .footer_content .footer_text .catchcopy p {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_text .catchcopy p {
    line-height: 1.8;
  }
}
#footer .footer_content .footer_text .address_area {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  line-height: 1.58;
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_text .address_area {
    text-align: center;
    line-height: 2.08;
  }
}
#footer .footer_content .footer_text .address_area .company_name {
  margin-bottom: 0.57em;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .footer_text .address_area .company_name {
    margin-bottom: 0.6em;
    font-size: 1.3rem;
  }
}
#footer .footer_copyright {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-align: center;
}
@media only screen and (max-width: 900px) {
  #footer .footer_copyright {
    font-size: 1rem;
  }
}
#footer .footer_copyright .summary {
  margin-bottom: 0.75em;
}
@media only screen and (max-width: 900px) {
  #footer .footer_copyright .summary {
    margin-bottom: 2em;
    line-height: 1.8;
  }
}
#footer .footer_copyright .copyright {
  font-weight: 500;
  color: #5D5D5D;
}

/****************************************************
 * 5.コンテンツスタイル
 ****************************************************/
/*TOPページ*/
.p-top__mv {
  position: relative;
}
.p-top__mv .catchcopy {
  width: 16%;
  position: absolute;
  top: 45%;
  left: 42%;
  z-index: 90;
  transform: translate(0, -50%);
}
@media only screen and (max-width: 1279px) {
  .p-top__mv .catchcopy {
    width: 20.4rem;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 1279px) and (max-width: 780px) {
  .p-top__mv .catchcopy {
    width: 26.2rem;
  }
}
.p-top__mv .scroll_object {
  padding-bottom: 22rem;
  position: absolute;
  bottom: 10%;
  left: 50%;
  z-index: 90;
  transform: translate(-50%, 0);
}
@media only screen and (max-width: 780px) {
  .p-top__mv .scroll_object {
    padding-bottom: 15rem;
  }
}
.p-top__mv .scroll_object:before {
  width: 0.8rem;
  height: 0.8rem;
  margin-left: -0.4rem;
  content: "";
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  bottom: 12rem;
  left: 50%;
  z-index: 1;
}
@media only screen and (min-width: 781px) {
  .p-top__mv .scroll_object:before {
    animation: scroll_object 6.32s infinite ease-in-out;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__mv .scroll_object:before {
    animation: scroll_object_sp 4.42s infinite ease-in-out;
  }
}
.p-top__mv .scroll_object:after {
  width: 1px;
  height: 20rem;
  margin: 0 auto;
  content: "";
  background-color: #4B4B4B;
  position: absolute;
  bottom: 0;
  left: 50%;
}
@media only screen and (max-width: 780px) {
  .p-top__mv .scroll_object:after {
    height: 14rem;
  }
}
.p-top__mv .scroll_object span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media only screen and (max-width: 780px) {
  .p-top__mv .scroll_object span {
    font-size: 1.4rem;
  }
}
@keyframes scroll_object {
  0% {
    bottom: 20rem;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes scroll_object_sp {
  0% {
    bottom: 14rem;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    bottom: 0;
    opacity: 0;
  }
}
.p-top__mv .mv_img {
  height: 100vh;
}
@media only screen and (min-width: 781px) {
  .p-top__mv .mv_img {
    min-height: 80rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__mv .mv_img {
    min-height: 60rem;
  }
}
.p-top__mv .mv_img .swiper-slide {
  position: relative;
}
.p-top__mv .mv_img .swiper-slide:before {
  width: 100%;
  height: 100%;
  content: "";
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (min-width: 781px) {
  .p-top__mv .mv_img .swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
  }
  .p-top__mv .mv_img .swiper-slide:before {
    background-image: url("../img/top/mv_cover.png");
  }
}
@media only screen and (max-width: 780px) {
  .p-top__mv .mv_img .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: none !important;
  }
  .p-top__mv .mv_img .swiper-slide > img,
  .p-top__mv .mv_img .swiper-slide > video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-top__mv .mv_img .swiper-slide:before {
    background-image: url("../img/top/mv_cover_sp.png");
  }
  .p-top__mv .mv_img .swiper-slide img {
    -o-object-position: center bottom;
    object-position: center bottom;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__mv .mv_img .swiper-slide.cover02:before {
    background-image: url("../img/top/mv_cover02.png");
  }
}
@media only screen and (max-width: 780px) {
  .p-top__mv .mv_img .swiper-slide.cover02:before {
    background-image: url("../img/top/mv_cover02_sp.png");
  }
}
.p-top__company {
  margin-bottom: 21.6rem;
  padding-top: 4rem;
  position: relative;
  z-index: 1;
  transition: opacity 1s;
}
@media only screen and (max-width: 780px) {
  .p-top__company {
    margin-bottom: 6rem;
    padding-top: 2rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__company .inner {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__company .midashi01 {
    margin-bottom: 0;
    font-size: 6rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__company .midashi01 {
    font-size: 2.8rem;
  }
  .p-top__company .midashi01 .en {
    margin-bottom: 3.3rem;
  }
}
.p-top__company .midashi01 .ja {
  letter-spacing: 0;
}
@media only screen and (min-width: 781px) {
  .p-top__company .text {
    padding-top: 5rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__company .text p {
    line-height: 3;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__company .text p {
    line-height: 2.85;
  }
}
.p-top__company .text .btn {
  margin-top: 2.3rem;
  text-align: right;
}
.p-top__company .marquee {
  width: 100%;
  font-family: "Cormorant Garamond", serif;
  font-size: 14rem;
  color: #1B1C24;
  position: absolute;
  top: 10rem;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 780px) {
  .p-top__company .marquee {
    font-size: 7rem;
    top: 6rem;
  }
}
.p-top__business {
  background-position: center top;
  transition: opacity 1s;
}
@media only screen and (min-width: 781px) {
  .p-top__business {
    padding-top: 12rem;
    background-image: url("../img/top/business_bg.jpg");
    background-size: 1920px auto;
    background-repeat: no-repeat;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__business {
    padding-top: 5.6rem;
    background-image: url("../img/top/business_bg_sp.jpg");
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__business .inner {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__business .img {
    width: 60%;
    margin-right: -10%;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__business .img {
    margin-bottom: 5.02rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__business .text {
    width: 50%;
    max-width: 42.8rem;
  }
}
.p-top__business .text .midashi01 {
  margin-bottom: 0.74em;
}
@media only screen and (max-width: 780px) {
  .p-top__business .text .midashi01 {
    margin-bottom: 1.1em;
  }
}
.p-top__business .text .midashi01 .en {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 780px) {
  .p-top__business .text .midashi01 .en {
    margin-bottom: 2.8rem;
  }
}
.p-top__business .text .midashi01 .ja span {
  margin-bottom: 1.4em;
  font-size: 2.3rem;
  display: block;
}
@media only screen and (max-width: 780px) {
  .p-top__business .text .midashi01 .ja span {
    font-size: 1.7rem;
  }
}
.p-top__business .text p {
  line-height: 2.125;
}
@media only screen and (max-width: 780px) {
  .p-top__business .text p {
    line-height: 2.85;
  }
}
.p-top__business .text .btn {
  margin-top: 5rem;
  text-align: right;
}
@media only screen and (max-width: 780px) {
  .p-top__business .text .btn {
    margin-top: 2.5rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__business .bnr_area {
    margin-top: 15.2rem;
    display: flex;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__business .bnr_area {
    margin-top: 7.4rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__business .bnr_area .bnr01, .p-top__business .bnr_area .bnr02 {
    width: 50%;
  }
  .p-top__business .bnr_area .bnr01 a, .p-top__business .bnr_area .bnr02 a {
    width: 100%;
    height: 100%;
  }
}
.p-top__business .bnr_area .bnr01 a, .p-top__business .bnr_area .bnr02 a {
  text-align: center;
  display: block;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 781px) {
  .p-top__business .bnr_area .bnr01 a, .p-top__business .bnr_area .bnr02 a {
    padding: 8.8rem 0;
    transition: background-color 0.3s;
  }
  .p-top__business .bnr_area .bnr01 a:hover, .p-top__business .bnr_area .bnr02 a:hover {
    background-color: #001C38;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__business .bnr_area .bnr01 a, .p-top__business .bnr_area .bnr02 a {
    padding: 6rem 0;
  }
}
.p-top__business .bnr_area .bnr01 a:before, .p-top__business .bnr_area .bnr02 a:before {
  width: 100%;
  height: 100%;
  content: "";
  background-size: cover;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-top__business .bnr_area .bnr01 h3, .p-top__business .bnr_area .bnr02 h3 {
  margin-bottom: 1.3em;
  font-family: "Noto serif JP", serif;
  font-size: 2.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-top__business .bnr_area .bnr01 h3, .p-top__business .bnr_area .bnr02 h3 {
    font-size: 2rem;
  }
}
.p-top__business .bnr_area .bnr01 h3 span, .p-top__business .bnr_area .bnr02 h3 span {
  margin-bottom: 1.7em;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
}
@media only screen and (max-width: 780px) {
  .p-top__business .bnr_area .bnr01 h3 span, .p-top__business .bnr_area .bnr02 h3 span {
    font-size: 1.5rem;
  }
}
.p-top__business .bnr_area .bnr01 p, .p-top__business .bnr_area .bnr02 p {
  font-size: 1.5rem;
  line-height: 2.5;
}
@media only screen and (max-width: 780px) {
  .p-top__business .bnr_area .bnr01 p, .p-top__business .bnr_area .bnr02 p {
    font-size: 1.3rem;
  }
}
.p-top__business .bnr_area .bnr01 .more, .p-top__business .bnr_area .bnr02 .more {
  margin-top: 8rem;
  font-family: "Noto serif JP", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  display: block;
}
@media only screen and (max-width: 780px) {
  .p-top__business .bnr_area .bnr01 .more, .p-top__business .bnr_area .bnr02 .more {
    margin-top: 3rem;
  }
}
.p-top__business .bnr_area .bnr01 .more i, .p-top__business .bnr_area .bnr02 .more i {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 2.4rem;
  display: inline-block;
  vertical-align: 0;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .p-top__business .bnr_area .bnr01 .more i, .p-top__business .bnr_area .bnr02 .more i {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: 1.2rem;
  }
}
.p-top__business .bnr_area .bnr01 .more i:before, .p-top__business .bnr_area .bnr02 .more i:before {
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  border-top: solid 1px #D0D0D0;
  border-right: solid 1px #D0D0D0;
  transform: rotate(45deg);
  transform-origin: center center;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 780px) {
  .p-top__business .bnr_area .bnr01 .more i:before, .p-top__business .bnr_area .bnr02 .more i:before {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.p-top__business .bnr_area .bnr01 .more i:after, .p-top__business .bnr_area .bnr02 .more i:after {
  height: 1px;
  content: "";
  background-color: #D0D0D0;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media only screen and (min-width: 781px) {
  .p-top__business .bnr_area .bnr01 .more i:after, .p-top__business .bnr_area .bnr02 .more i:after {
    width: 1.5rem;
    margin-left: -1.5rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__business .bnr_area .bnr01 .more i:after, .p-top__business .bnr_area .bnr02 .more i:after {
    width: 1.2rem;
    margin-left: -1.2rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__business .bnr_area .bnr01 a:before {
    background-image: url("../img/top/business_link_bg01.jpg");
  }
}
@media only screen and (max-width: 780px) {
  .p-top__business .bnr_area .bnr01 a:before {
    background-image: url("../img/top/business_link_bg01_sp.jpg");
  }
}
@media only screen and (min-width: 781px) {
  .p-top__business .bnr_area .bnr02 a:before {
    background-image: url("../img/top/business_link_bg02.jpg");
  }
}
@media only screen and (max-width: 780px) {
  .p-top__business .bnr_area .bnr02 a:before {
    background-image: url("../img/top/business_link_bg02_sp.jpg");
  }
}
.p-top__property {
  margin-bottom: 16rem;
  padding: 16rem 0 12.8rem 0;
  position: relative;
  z-index: 1;
  transition: opacity 1s;
}
@media only screen and (max-width: 780px) {
  .p-top__property {
    margin-bottom: 5.7rem;
    padding: 6rem 0 6.4rem 0;
  }
}
.p-top__property .text {
  margin-bottom: 4.8rem;
}
.p-top__property .text .midashi01 {
  margin-bottom: 0.45em;
  font-size: 6rem;
}
@media only screen and (max-width: 780px) {
  .p-top__property .text .midashi01 {
    margin-bottom: 0.928em;
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__property .text .midashi01 .en {
    margin-bottom: 2.2em;
  }
}
.p-top__property .text .midashi01 .ja {
  letter-spacing: 0;
}
@media only screen and (max-width: 780px) {
  .p-top__property .text .midashi01 .ja {
    line-height: 1.339;
  }
}
.p-top__property .text p {
  line-height: 2.215;
}
@media only screen and (max-width: 780px) {
  .p-top__property .text p {
    line-height: 2.85;
  }
}
.p-top__property .property_list {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 780px) {
  .p-top__property .property_list {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__property .property_list .sp_scroll {
    width: 112.5%;
    margin-right: -12.5%;
    padding-bottom: 2rem;
    overflow: auto;
  }
}
.p-top__property .property_list ul {
  display: flex;
}
@media only screen and (min-width: 781px) {
  .p-top__property .property_list ul li {
    width: 24%;
    margin-right: 1.33%;
  }
  .p-top__property .property_list ul li:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__property .property_list ul li {
    flex: 0 0 32.8rem;
    padding-right: 2rem;
  }
  .p-top__property .property_list ul li:last-child {
    margin-right: 0;
  }
}
.p-top__property .property_list ul li .img {
  width: 100%;
  margin-bottom: 1em;
  background-color: #F7F7F7;
}
@media only screen and (min-width: 781px) {
  .p-top__property .property_list ul li .img {
    height: auto;
    aspect-ratio: 768/506;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__property .property_list ul li .img {
    height: 19.3rem;
  }
}
.p-top__property .property_list ul li .img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  display: block;
}
.p-top__property .property_list ul li p {
  font-size: 1.2rem;
  color: #898C9A;
}
@media only screen and (max-width: 780px) {
  .p-top__property .property_list ul li p {
    font-size: 1.3rem;
  }
}
.p-top__property .btn {
  text-align: right;
}
.p-top__property .marquee {
  width: 100%;
  font-family: "Cormorant Garamond", serif;
  font-size: 14rem;
  color: #F7F7F7;
  position: absolute;
  top: 14rem;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 780px) {
  .p-top__property .marquee {
    font-size: 7rem;
    top: 10rem;
  }
}
.p-top__minpaku {
  margin-bottom: 16rem;
  transition: opacity 1s;
}
@media only screen and (max-width: 780px) {
  .p-top__minpaku {
    margin-bottom: 6rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__minpaku .inner {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__minpaku .img {
    width: 50%;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__minpaku .img {
    margin-bottom: 5.02rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__minpaku .text {
    width: 48%;
    max-width: 53rem;
  }
}
.p-top__minpaku .text .midashi01 {
  margin-bottom: 0.74em;
}
@media only screen and (max-width: 780px) {
  .p-top__minpaku .text .midashi01 {
    margin-bottom: 1.1em;
  }
}
.p-top__minpaku .text .midashi01 .en {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 780px) {
  .p-top__minpaku .text .midashi01 .en {
    margin-bottom: 5rem;
    line-height: 1.1;
  }
}
.p-top__minpaku .text .midashi01 .ja span {
  margin-bottom: 1.4em;
  font-size: 2.3rem;
  display: block;
}
@media only screen and (max-width: 780px) {
  .p-top__minpaku .text .midashi01 .ja span {
    margin-bottom: 2.8em;
    font-size: 1.7rem;
  }
}
.p-top__minpaku .text p {
  line-height: 2.125;
}
@media only screen and (max-width: 780px) {
  .p-top__minpaku .text p {
    line-height: 2.85;
  }
}
.p-top__recruit {
  background: linear-gradient(to bottom right, #021A33, #032953);
  transition: opacity 1s;
}
@media only screen and (min-width: 781px) {
  .p-top__recruit {
    max-width: 1488px;
    margin: 0 auto 22.4rem auto;
    padding: 9.8rem 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__recruit {
    margin-bottom: 6.4rem;
    padding: 5.2rem 0;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__recruit .inner {
    max-width: 1120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-top__recruit .text .midashi01 {
  margin-bottom: 0.4em;
  font-size: 6rem;
}
@media only screen and (max-width: 780px) {
  .p-top__recruit .text .midashi01 {
    margin-bottom: 0.9em;
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__recruit .text .midashi01 .en {
    margin-bottom: 2.2em;
  }
}
.p-top__recruit .text .midashi01 .ja {
  letter-spacing: 0;
}
@media only screen and (max-width: 780px) {
  .p-top__recruit .text .midashi01 .ja {
    line-height: 1.33;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__recruit .text p {
    letter-spacing: 0.1em;
    line-height: 1.625;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__recruit .text p {
    line-height: 2.85;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__recruit .btn {
    margin-top: 3rem;
    text-align: right;
  }
}
.p-top__news {
  margin-bottom: 20.8rem;
  transition: opacity 1s;
}
@media only screen and (max-width: 780px) {
  .p-top__news {
    margin-bottom: 6rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__news .inner {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__news .text {
    width: 40%;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__news .text {
    margin-bottom: 4rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__news .text .midashi01 {
    margin-bottom: 1.6em;
    font-size: 4.4rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__news .text .midashi01 {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__news .text .midashi01 .en {
    margin-bottom: 2.3em;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__news .text .midashi01 .en {
    margin-bottom: 1.9em;
  }
}
.p-top__news .text .btn {
  text-align: center;
}
@media only screen and (min-width: 781px) {
  .p-top__news .news_list {
    width: 60%;
  }
}
.p-top__news .news_list ul li {
  padding-bottom: 4rem;
  border-bottom: solid 1px #323336;
}
@media only screen and (max-width: 780px) {
  .p-top__news .news_list ul li {
    padding-bottom: 2rem;
  }
}
.p-top__news .news_list ul li + li {
  margin-top: 4rem;
}
@media only screen and (max-width: 780px) {
  .p-top__news .news_list ul li + li {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__news .news_list ul li a p {
    position: relative;
  }
  .p-top__news .news_list ul li a p:after {
    width: 0;
    height: 1px;
    content: "";
    background-color: #ffffff;
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    transition: width 0.3s;
  }
  .p-top__news .news_list ul li a:hover p:after {
    width: 100%;
  }
}
.p-top__news .news_list ul li .date {
  margin-bottom: 1.2em;
  font-family: "Noto serif JP", serif;
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-top__news .news_list ul li .date {
    margin-bottom: 0.57em;
    font-size: 1.3rem;
  }
}
.p-top__news .news_list ul li p {
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 781px) {
  .p-top__news .news_list ul li p {
    font-size: 1.5rem;
    display: inline-block;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__news .news_list .btn {
    margin-top: 3rem;
    text-align: right;
  }
}

/*下層ページ*/
.pagetitle {
  width: 100%;
  height: 55rem;
  padding-top: 28.2rem;
  background-image: url("../img/pagetitle_bg.jpg");
  background-size: cover;
  background-position: center bottom;
}
@media only screen and (max-width: 780px) {
  .pagetitle {
    height: 38rem;
    padding-top: 12rem;
  }
}
.pagetitle .midashi01 {
  font-size: 4.4rem;
}
@media only screen and (max-width: 780px) {
  .pagetitle .midashi01 {
    margin-bottom: 2em;
    font-size: 2.4rem;
  }
}
.pagetitle p {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 780px) {
  .pagetitle p {
    font-size: 1.6rem;
  }
}

.pankuzu {
  margin-bottom: 12rem;
  font-size: 1.2rem;
}
@media only screen and (max-width: 780px) {
  .pankuzu {
    margin-bottom: 6rem;
  }
}
.pankuzu .inner {
  @includ dib;
}
.pankuzu .inner a:after {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 1em;
  content: "";
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  vertical-align: 0.15em;
}
.pankuzu .inner span {
  color: #8B8B8B;
}

.p-business_tpl__begining {
  margin-bottom: 11.2rem;
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__begining {
    margin-bottom: 8rem;
  }
}
.p-business_tpl__begining p {
  line-height: 3;
}
.p-business_tpl__tokucho {
  margin-bottom: 12.9rem;
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__tokucho {
    margin-bottom: 8rem;
  }
}
.p-business_tpl__tokucho h3 {
  margin-top: 3em;
  margin-bottom: 3.625em;
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__tokucho h3 {
    margin: 4em 0 2em 0;
    font-size: 1.8rem;
  }
}
.p-business_tpl__tokucho ul {
  margin-left: 4rem;
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__tokucho ul {
    margin-left: 0;
  }
}
.p-business_tpl__tokucho ul li {
  padding-left: 6rem;
  font-size: 2.8rem;
  font-weight: 500;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__tokucho ul li {
    padding-left: 3rem;
    font-size: 1.8rem;
  }
}
.p-business_tpl__tokucho ul li:before {
  width: 0.4rem;
  height: 100%;
  content: "";
  background-color: #313131;
  position: absolute;
  top: 0;
  left: 0;
}
.p-business_tpl__tokucho ul li + li {
  margin-top: 1.75em;
}
.p-business_tpl__project {
  margin-bottom: 15.2rem;
  padding: 10.4rem 0 12rem 0;
}
@media only screen and (max-width: 1099px) {
  .p-business_tpl__project {
    margin-bottom: 8rem;
    padding: 8rem 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__project .midashi01 {
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 1100px) {
  .p-business_tpl__project .text {
    margin-bottom: 6rem;
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 1099px) {
  .p-business_tpl__project .text {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__project .text {
    margin-bottom: 3rem;
  }
}
.p-business_tpl__project .text h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
@media only screen and (min-width: 781px) {
  .p-business_tpl__project .text h3 {
    font-size: 6rem;
    line-height: 1.21;
  }
}
@media only screen and (max-width: 1099px) {
  .p-business_tpl__project .text h3 {
    margin-bottom: 0.5em;
  }
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__project .text h3 {
    font-size: 2.6rem;
  }
}
.p-business_tpl__project .text p {
  line-height: 2.125;
}
@media only screen and (min-width: 1100px) {
  .p-business_tpl__project .text p {
    padding-left: 4rem;
  }
}
.p-business_tpl__garelly {
  margin-bottom: 13.7rem;
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__garelly {
    margin-bottom: 8rem;
  }
}
.p-business_tpl__garelly .midashi01 .ja span {
  font-size: 0.5em;
  display: inline-block;
  vertical-align: 0.25em;
}
.p-business_tpl__garelly h3 {
  margin: 2.5em 0 1.66em 0;
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__garelly h3 {
    font-size: 1.8rem;
  }
}
.p-business_tpl__garelly .garelly_list {
  margin-top: 6.4rem;
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__garelly .garelly_list {
    margin-top: 3.2rem;
  }
}
.p-business_tpl__garelly .garelly_list .swiper-wrapper .swiper-slide {
  width: 38.4rem;
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__garelly .garelly_list .swiper-wrapper .swiper-slide {
    width: 30rem;
    padding-left: 2rem;
  }
}
.p-business_tpl__garelly .garelly_list .swiper-wrapper .swiper-slide .img {
  width: 100%;
  margin-bottom: 1em;
  background-color: #1B1C24;
}
@media only screen and (min-width: 781px) {
  .p-business_tpl__garelly .garelly_list .swiper-wrapper .swiper-slide .img {
    height: auto;
    aspect-ratio: 8/5;
  }
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__garelly .garelly_list .swiper-wrapper .swiper-slide .img {
    height: 17.5rem;
  }
}
.p-business_tpl__garelly .garelly_list .swiper-wrapper .swiper-slide .img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  display: block;
}
.p-business_tpl__garelly .garelly_list .swiper-wrapper .swiper-slide p {
  font-size: 1.2rem;
  color: #898C9A;
}
.p-business_tpl__cover {
  background-color: #091826;
}
@media only screen and (min-width: 781px) {
  .p-business_tpl__cover {
    max-width: 1488px;
    margin: 0 auto 20rem auto;
    padding: 10rem 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__cover {
    margin-bottom: 8rem;
    padding: 8rem 0;
  }
}
@media only screen and (min-width: 781px) {
  .p-business_tpl__cover .inner {
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 781px) {
  .p-business_tpl__cover .midashi01 {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__cover .midashi01 {
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 781px) {
  .p-business_tpl__cover ul {
    margin-left: 8.5rem;
  }
}
@media only screen and (min-width: 781px) and (max-width: 1279px) {
  .p-business_tpl__cover ul {
    margin-left: 4rem;
  }
}
@media only screen and (min-width: 781px) and (max-width: 1099px) {
  .p-business_tpl__cover ul {
    margin-left: 3rem;
  }
}
.p-business_tpl__cover ul li {
  padding-left: 1.25em;
}
.p-business_tpl__cover ul li:before {
  width: 1.25em;
  margin-left: -1.25em;
  margin-right: 0.25em;
  content: "●";
  display: inline-block;
  vertical-align: 0;
}
.p-business_tpl__cover ul li + li {
  margin-top: 1.5em;
}
.p-business_tpl__choose {
  margin-bottom: 20rem;
  padding-top: 10rem;
  background-image: url("../img/business/choose_bg.jpg");
  background-size: 1920px auto;
  background-repeat: no-repeat;
  background-position: center top;
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__choose {
    margin-bottom: 8rem;
    padding-top: 8rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-business_tpl__choose .midashi01 {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__choose .midashi01 {
    margin-bottom: 2em;
  }
}
.p-business_tpl__choose .midashi01 + p {
  font-weight: 500;
}
@media only screen and (min-width: 781px) {
  .p-business_tpl__choose .midashi01 + p {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__choose .midashi01 + p {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-business_tpl__choose ul {
    max-width: 1000px;
    margin: 9.7rem auto 0 auto;
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__choose ul {
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-business_tpl__choose ul li {
    width: 33.333%;
    border-left: solid 1px #2C2C2C;
  }
  .p-business_tpl__choose ul li:first-child {
    border-left: none;
  }
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__choose ul li + li {
    margin-top: 3rem;
  }
}
.p-business_tpl__choose ul li .fig {
  width: 67.5%;
  margin: 0 auto 2.8rem auto;
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__choose ul li .fig {
    width: 50%;
    margin: 0 auto 1.5rem auto;
  }
}
.p-business_tpl__choose ul li .text {
  text-align: center;
}
.p-business_tpl__choose ul li .text h3 {
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-business_tpl__choose ul li .text h3 {
    font-size: 2rem;
  }
}
.p-business_tpl__choose ul li .text p {
  margin-top: 1em;
  line-height: 1.875;
}

.p-company-profile__begining {
  margin-bottom: 11.2rem;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__begining {
    margin-bottom: 8rem;
  }
}
.p-company-profile__begining p {
  line-height: 3;
}
.p-company-profile__message {
  padding: 13rem 0;
  background-image: url("../img/company-profile/message_bg.jpg");
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__message {
    padding: 8rem 0;
  }
}
@media only screen and (min-width: 1100px) {
  .p-company-profile__message .inner {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1100px) {
  .p-company-profile__message .headding {
    width: 40%;
  }
}
.p-company-profile__message .headding h2 {
  margin-bottom: 1.1em;
  font-family: "Shippori Mincho", serif;
  font-size: 6rem;
  line-height: 1.21;
  text-indent: -0.5em;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__message .headding h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1099px) {
  .p-company-profile__message .headding .name {
    display: none;
  }
}
.p-company-profile__message .headding .name span {
  margin-top: 0.8em;
  font-family: "Noto serif JP", serif;
  font-size: 2rem;
  display: block;
}
@media only screen and (min-width: 1100px) {
  .p-company-profile__message .text {
    width: 55%;
  }
}
.p-company-profile__message .text p {
  line-height: 3;
}
.p-company-profile__message .text .name {
  margin-top: 3rem;
  text-align: right;
}
@media only screen and (min-width: 1100px) {
  .p-company-profile__message .text .name {
    display: none;
  }
}
.p-company-profile__message .text .name span {
  margin-top: 0.8em;
  font-family: "Noto serif JP", serif;
  font-size: 2rem;
  display: block;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__message .text .name span {
    font-size: 1.6rem;
  }
}
.p-company-profile__philosohy {
  margin-bottom: 16.8rem;
  padding: 10.4rem 0;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__philosohy {
    margin-bottom: 8rem;
    padding: 8rem 0;
  }
}
@media only screen and (min-width: 781px) {
  .p-company-profile__philosohy ul {
    max-width: 1120px;
    margin: 7.7rem auto 0 auto;
  }
}
@media only screen and (max-width: 780px) {
  .p-company-profile__philosohy ul {
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-company-profile__philosohy ul li {
    padding-left: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-company-profile__philosohy ul li + li {
  margin-top: 4.8rem;
}
.p-company-profile__philosohy ul li .headding {
  width: 23.8rem;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  border: solid 1px #BEBEBE;
  border-radius: 50%;
  position: relative;
}
@media only screen and (min-width: 781px) {
  .p-company-profile__philosohy ul li .headding {
    margin-right: 8rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-company-profile__philosohy ul li .headding {
    margin: 0 auto 4rem auto;
    padding: 2rem 0;
  }
}
@media only screen and (min-width: 781px) {
  .p-company-profile__philosohy ul li .headding:after {
    width: 3.2rem;
    height: 1px;
    content: "";
    background-color: #BEBEBE;
    position: absolute;
    top: 50%;
    left: 100%;
  }
}
.p-company-profile__philosohy ul li .headding > span {
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__philosohy ul li .headding > span {
    font-size: 2rem;
  }
}
.p-company-profile__philosohy ul li .headding > span .en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: normal;
  color: #9F9F9F;
  display: block;
}
@media only screen and (min-width: 781px) {
  .p-company-profile__philosohy ul li .headding > span .en {
    margin-top: 1em;
  }
}
@media only screen and (min-width: 781px) {
  .p-company-profile__philosohy ul li .text {
    width: calc(100% - 31.8rem);
  }
}
.p-company-profile__philosohy ul li .text h3 {
  margin-bottom: 1em;
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__philosohy ul li .text h3 {
    font-size: 2rem;
  }
}
.p-company-profile__philosohy ul li .text p {
  line-height: 3;
}
.p-company-profile__profile {
  margin-bottom: 16rem;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__profile {
    margin-bottom: 8rem;
  }
}
@media only screen and (min-width: 1100px) {
  .p-company-profile__profile .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1100px) {
  .p-company-profile__profile .midashi01 {
    width: 20.2rem;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1099px) {
  .p-company-profile__profile .midashi01 {
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 1100px) {
  .p-company-profile__profile .table {
    width: calc(100% - 24rem);
    max-width: 89.6rem;
  }
}
.p-company-profile__profile .table table {
  width: 100%;
  border-top: solid 1px #313131;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__profile .table table {
    display: block;
  }
}
@media only screen and (max-width: 780px) {
  .p-company-profile__profile .table table tbody {
    display: block;
  }
}
@media only screen and (max-width: 780px) {
  .p-company-profile__profile .table table tbody tr {
    display: block;
  }
}
.p-company-profile__profile .table table tbody tr th {
  width: 33%;
  padding: 2.5em;
  line-height: 1.625;
  vertical-align: top;
  border-bottom: solid 1px #313131;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__profile .table table tbody tr th {
    width: auto;
    padding: 1em 1em 0 1em;
    border-bottom: none;
    display: block;
  }
}
.p-company-profile__profile .table table tbody tr td {
  padding: 2.5em 2.5em 2.5em 1.5em;
  line-height: 1.625;
  vertical-align: top;
  border-bottom: solid 1px #313131;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__profile .table table tbody tr td {
    padding: 1em;
    display: block;
  }
}
.p-company-profile__profile .table table tbody tr td .dl1 dt {
  margin-bottom: 1rem;
}
.p-company-profile__profile .table table tbody tr td .dl1 dt span {
  padding: 0.1em 0.5em;
  border: solid 1px #ffffff;
  display: inline-block;
}
.p-company-profile__profile .table table tbody tr td .dl1 dd + dt {
  margin-top: 2.4rem;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__profile .table table tbody tr td .dl1 dd + dt {
    margin-top: 4rem;
  }
}
.p-company-profile__profile .table table tbody tr td .dl2 {
  margin-bottom: 1.5em;
}
.p-company-profile__profile .table table tbody tr td .dl2 dt {
  margin-bottom: 1em;
  font-weight: 700;
}
.p-company-profile__profile .table table tbody tr td .dl2 dd {
  font-size: 0.9375em;
}
.p-company-profile__profile .table table tbody tr td .dl2 dd + dt {
  margin-top: 3em;
}
.p-company-profile__profile .table table tbody tr td address {
  margin-bottom: 1rem;
}
.p-company-profile__profile .table table tbody tr td .map {
  width: 100%;
  height: 27.5rem;
  filter: grayscale(1);
}
.p-company-profile__profile .table table tbody tr td .map iframe {
  width: 100%;
  height: 100%;
}
.p-company-profile__profile .btn {
  margin-top: 14.4rem;
  text-align: center;
}
@media only screen and (min-width: 1100px) {
  .p-company-profile__profile .btn {
    width: 100%;
  }
}
@media only screen and (max-width: 780px) {
  .p-company-profile__profile .btn {
    margin-top: 8rem;
  }
}
.p-company-profile__profile .btn a {
  width: 100%;
  max-width: 72rem;
  padding: 2.4rem 2.4rem 2.4rem 10rem;
  text-align: center;
  color: #101115;
  background-color: #ffffff;
  border-radius: 0.4rem;
  display: inline-block;
}
@media only screen and (max-width: 1099px) {
  .p-company-profile__profile .btn a {
    padding: 2.4rem 1.2rem 2.4rem 5rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-company-profile__profile .btn a {
    padding: 1.6rem 10rem 1.6rem 2.4rem;
    line-height: 1.2;
    text-align: left;
    position: relative;
  }
  .p-company-profile__profile .btn a i {
    margin: -2.6rem 0 0 0;
    position: absolute;
    top: 50%;
    right: 1.2rem;
  }
}
.p-company-profile__profile .btn a i {
  border: solid 1px #101115;
}
.p-company-profile__profile .btn a i:before {
  border-top: solid 1px #101115;
  border-right: solid 1px #101115;
}
.p-company-profile__profile .btn a i:after {
  background-color: #101115;
}
.p-company-profile__sdgs {
  background-color: #091826;
}
@media only screen and (min-width: 781px) {
  .p-company-profile__sdgs {
    max-width: 1488px;
    margin: 0 auto 20.6rem auto;
    padding: 8rem 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-company-profile__sdgs {
    margin-bottom: 8rem;
    padding: 8rem 0;
  }
}
@media only screen and (min-width: 781px) {
  .p-company-profile__sdgs .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 781px) {
  .p-company-profile__sdgs .midashi01 {
    width: 40rem;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-company-profile__sdgs .midashi01 {
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 781px) {
  .p-company-profile__sdgs .text {
    width: calc(100% - 41rem);
    max-width: 72.3rem;
    margin-left: 1rem;
  }
}
.p-company-profile__sdgs .text h3 {
  margin-bottom: 1.33em;
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-company-profile__sdgs .text h3 {
    font-size: 1.8rem;
  }
}
.p-company-profile__sdgs .text p {
  line-height: 3;
}

.p-recruit__begining {
  margin-bottom: 10.4rem;
}
@media only screen and (max-width: 780px) {
  .p-recruit__begining {
    margin-bottom: 8rem;
  }
}
.p-recruit__begining p {
  line-height: 3;
}
.p-recruit__work {
  margin-bottom: 14.7rem;
}
@media only screen and (max-width: 780px) {
  .p-recruit__work {
    margin-bottom: 8rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__work .headding {
    margin-bottom: 5rem;
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__work .headding {
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__work .headding .midashi01 {
    width: 44rem;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__work .headding .midashi01 {
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__work .headding .text {
    width: calc(100% - 40rem);
    max-width: 72rem;
    margin-right: -5rem;
  }
}
.p-recruit__work .headding .text h3 {
  margin-bottom: 1em;
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-recruit__work .headding .text h3 {
    margin-bottom: 2em;
    font-size: 1.8rem;
  }
}
.p-recruit__work .headding .text p {
  line-height: 3;
}
@media only screen and (max-width: 780px) {
  .p-recruit__work .headding .text p {
    line-height: 2;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__work ul {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__work ul li {
    width: 48.3%;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__work ul li + li {
    margin-top: 4rem;
  }
}
.p-recruit__work ul li .img {
  margin-bottom: 1.5em;
}
.p-recruit__work ul li h4 {
  margin-bottom: 0.5em;
  font-family: "Noto serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-recruit__work ul li h4 span {
  font-size: 0.7em;
}
.p-recruit__work ul li p {
  font-size: 0.8125em;
  line-height: 2;
  color: #898C9A;
}
.p-recruit__catch {
  margin-bottom: 12rem;
  padding: 9.4rem 0 9rem 0;
  background-image: url("../img/recruit/catch_bg01.jpg");
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width: 780px) {
  .p-recruit__catch {
    margin-bottom: 8rem;
    padding: 6rem 0;
  }
}
.p-recruit__catch h2 {
  margin-bottom: 0.18em;
  font-family: "Shippori Mincho", serif;
  font-size: 6rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-recruit__catch h2 {
    font-size: 2.4rem;
  }
}
.p-recruit__catch h2 span {
  display: block;
}
.p-recruit__catch h2 span:nth-of-type(2) {
  text-indent: -0.5em;
}
.p-recruit__enviroment {
  margin-bottom: 13.7rem;
}
@media only screen and (max-width: 780px) {
  .p-recruit__enviroment {
    margin-bottom: 8rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__enviroment .midashi01 {
    margin-bottom: 2em;
  }
}
.p-recruit__enviroment h3 {
  margin-top: 2.54em;
  margin-bottom: 1.5em;
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-recruit__enviroment h3 {
    margin-top: 0;
    margin-bottom: 2em;
    font-size: 1.8rem;
  }
}
.p-recruit__enviroment p {
  line-height: 3;
}
@media only screen and (max-width: 780px) {
  .p-recruit__enviroment p {
    line-height: 2;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__enviroment ul {
    max-width: 1060px;
    margin: 7rem auto 6.4rem auto;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__enviroment ul {
    margin: 4.5rem 0 6.5rem 0;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__enviroment ul li {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__enviroment ul li + li {
    margin-top: 1.6rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__enviroment ul li + li {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__enviroment ul li .img {
    width: 36.2%;
    padding-bottom: 1.6rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__enviroment ul li .img {
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__enviroment ul li .text {
    width: 57.7%;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #313131;
  }
}
.p-recruit__enviroment ul li .text > div h4 {
  margin-bottom: 0.8em;
  font-family: "Noto serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 780px) {
  .p-recruit__enviroment ul li .text > div h4 {
    margin-bottom: 1em;
    font-size: 1.6rem;
  }
}
.p-recruit__enviroment ul li .text > div p {
  font-size: 0.8125em;
  line-height: 2;
}
@media only screen and (min-width: 781px) {
  .p-recruit__enviroment ul li:last-child .text {
    border-bottom: none;
  }
}
.p-recruit__enviroment .bottom_text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-recruit__enviroment .bottom_text {
    font-size: 1.5rem;
    line-height: 2;
  }
}
.p-recruit__requirements {
  margin-bottom: 16rem;
  padding: 13.6rem 0 15.2rem 0;
  background-color: #17181D;
}
@media only screen and (max-width: 780px) {
  .p-recruit__requirements {
    margin-bottom: 8rem;
    padding: 8rem 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__requirements .midashi01 {
    margin-bottom: 2em;
  }
}
.p-recruit__requirements h3 {
  margin-top: 2.54em;
  margin-bottom: 3.375em;
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-recruit__requirements h3 {
    margin-top: 0;
    margin-bottom: 4em;
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__requirements .table {
    max-width: 1080px;
    margin: 0 auto;
  }
}
.p-recruit__requirements .table table {
  width: 100%;
  border-top: solid 1px #313131;
}
@media only screen and (max-width: 780px) {
  .p-recruit__requirements .table table {
    display: block;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__requirements .table table tbody {
    display: block;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__requirements .table table tbody tr {
    display: block;
  }
}
.p-recruit__requirements .table table tbody tr th {
  width: 33%;
  padding: 2.5em;
  line-height: 2;
  vertical-align: top;
  border-bottom: solid 1px #313131;
}
@media only screen and (max-width: 780px) {
  .p-recruit__requirements .table table tbody tr th {
    width: auto;
    padding: 1.5em 1em 0 1em;
    font-weight: 700;
    border-bottom: none;
    display: block;
  }
}
.p-recruit__requirements .table table tbody tr td {
  padding: 2.5em 2.5em 2.5em 1.5em;
  line-height: 2;
  vertical-align: top;
  border-bottom: solid 1px #313131;
}
@media only screen and (max-width: 780px) {
  .p-recruit__requirements .table table tbody tr td {
    padding: 0 1em 1.5em 1em;
    display: block;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__requirements .table table tbody tr td .dl1 {
    margin-top: 1em;
  }
}
.p-recruit__requirements .table table tbody tr td .dl1 dt {
  margin-bottom: 1rem;
}
.p-recruit__requirements .table table tbody tr td .dl1 dt span {
  padding: 0.1em 0.5em;
  line-height: 1.6;
  border: solid 1px #ffffff;
  display: inline-block;
}
.p-recruit__requirements .table table tbody tr td .dl1 dd + dt {
  margin-top: 2.4rem;
}
@media only screen and (max-width: 780px) {
  .p-recruit__requirements .table table tbody tr td .dl1 dd + dt {
    margin-top: 1em;
  }
}
.p-recruit__floor {
  margin-bottom: 16rem;
}
@media only screen and (max-width: 780px) {
  .p-recruit__floor {
    margin-bottom: 8rem;
  }
}
.p-recruit__floor ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 781px) {
  .p-recruit__floor ul li {
    width: 33.3333%;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__floor ul li {
    width: 48%;
    margin: 0 1% 2% 1%;
  }
}
.p-recruit__entry {
  background: linear-gradient(to bottom right, #021A33, #032953);
}
@media only screen and (min-width: 781px) {
  .p-recruit__entry {
    max-width: 1488px;
    margin: 0 auto 12rem auto;
    padding: 9.6rem 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__entry {
    padding: 8rem 0;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__entry .inner {
    max-width: 1120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-recruit__entry .text .midashi01 {
  margin-bottom: 0.4em;
  font-size: 6rem;
}
@media only screen and (max-width: 780px) {
  .p-recruit__entry .text .midashi01 {
    margin-bottom: 0.9em;
    font-size: 2.8rem;
  }
}
.p-recruit__entry .text .midashi01 .ja {
  letter-spacing: 0;
}
@media only screen and (max-width: 780px) {
  .p-recruit__entry .text .midashi01 .ja {
    line-height: 1.33;
  }
}
@media only screen and (min-width: 781px) {
  .p-recruit__entry .text p {
    letter-spacing: 0.1em;
    line-height: 2.25;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__entry .text p {
    line-height: 2.85;
  }
}
@media only screen and (max-width: 780px) {
  .p-recruit__entry .btn {
    margin-top: 3rem;
    text-align: right;
  }
}

.p-property-sale__begining {
  padding-bottom: 12rem;
}
@media only screen and (max-width: 780px) {
  .p-property-sale__begining {
    padding-bottom: 8rem;
  }
}
.p-property-sale__begining p {
  line-height: 3;
}
.p-property-sale__list {
  margin-bottom: 11.2rem;
  padding: 4.8rem 0 10.4rem 0;
  background-color: #17181D;
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list {
    margin-bottom: 8rem;
    padding: 8rem 0;
  }
}
.p-property-sale__list .cate {
  border-bottom: solid 1px #313131;
}
@media only screen and (min-width: 781px) {
  .p-property-sale__list .cate {
    margin-bottom: 8.8rem;
    padding-bottom: 4.8rem;
    display: flex;
  }
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list .cate {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
  }
}
.p-property-sale__list .cate .label {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}
@media only screen and (min-width: 781px) {
  .p-property-sale__list .cate .label {
    padding-top: 0.3em;
    margin-right: 5.6rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list .cate .label {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
}
.p-property-sale__list .cate ul {
  display: flex;
  flex-wrap: wrap;
}
.p-property-sale__list .cate ul li {
  margin: 0 1.7em 0.5em 0;
  padding: 0.3em 2.2em;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  border: solid 1px #313131;
  border-radius: 99px;
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list .cate ul li {
    font-size: 1.2rem;
    padding: 0.3em 1em;
  }
}
.p-property-sale__list .cate ul li.current {
  color: #101115;
  background-color: #ffffff;
  border-color: #ffffff;
}
@media only screen and (min-width: 781px) {
  .p-property-sale__list .list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 781px) {
  .p-property-sale__list .list li {
    width: 32%;
    margin: 0 2% 9.6rem 0;
  }
  .p-property-sale__list .list li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list .list li {
    width: 100%;
  }
  .p-property-sale__list .list li + li {
    margin-top: 4rem;
  }
  .p-property-sale__list .list li:nth-child(n+4) {
    display: none;
  }
}
.p-property-sale__list .list li h3 {
  margin-bottom: 0.8em;
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list .list li h3 {
    font-size: 1.6rem;
  }
}
.p-property-sale__list .list li .images {
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list .list li .images {
    margin-bottom: 1.2rem;
  }
}
.p-property-sale__list .list li .images .main {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list .list li .images .main {
    margin-bottom: 0.5rem;
  }
}
.p-property-sale__list .list li .images .main .swiper-slide {
  width: 100%;
  background-color: #1B1C24;
}
@media only screen and (min-width: 781px) {
  .p-property-sale__list .list li .images .main .swiper-slide {
    height: auto;
    aspect-ratio: 768/506;
  }
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list .list li .images .main .swiper-slide {
    width: 79.7vw;
    height: 52.5vw;
  }
}
.p-property-sale__list .list li .images .main .swiper-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  display: block;
}
.p-property-sale__list .list li .images .thumbnails .swiper-slide {
  overflow: hidden;
}
.p-property-sale__list .list li .images .thumbnails .swiper-slide > img,
.p-property-sale__list .list li .images .thumbnails .swiper-slide > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 781px) {
  .p-property-sale__list .list li .images .thumbnails .swiper-slide {
    width: 23%;
    height: auto;
    margin-right: 2.6%;
    aspect-ratio: 8/5;
  }
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list .list li .images .thumbnails .swiper-slide {
    width: 7.2rem;
    height: 4.5rem;
    margin-right: 1rem;
  }
}
.p-property-sale__list .list li .images .thumbnails .swiper-slide:last-child {
  margin-right: 0;
}
.p-property-sale__list .list li .images .thumbnails .swiper-slide.swiper-slide-thumb-active {
  opacity: 0.3;
}
.p-property-sale__list .list li .price {
  margin-bottom: 1em;
  font-size: 0.9375em;
}
.p-property-sale__list .list li .price span {
  margin: 0 0.25em 0 2em;
  font-size: 1.33em;
  font-weight: 700;
  display: inline-block;
}
.p-property-sale__list .list li table {
  width: 100%;
  font-size: 0.9375em;
  border-collapse: separate;
  border-spacing: 0 0.5em;
}
.p-property-sale__list .list li table tbody tr th {
  width: 11.63rem;
  padding: 0.25em1 0.6em 0.25em 0;
  border-right: solid 1px #313131;
  vertical-align: top;
}
.p-property-sale__list .list li table tbody tr td {
  padding: 0.25em 0 0.25em 1.6em;
  vertical-align: top;
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list .list.all li {
    display: block !important;
  }
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list .list.all + .more {
    display: none !important;
  }
}
@media only screen and (max-width: 780px) {
  .p-property-sale__list .more {
    margin-top: 4rem;
    font-size: 1.4rem;
    text-align: center;
  }
  .p-property-sale__list .more span {
    padding: 0.4em 2.2em;
    border: solid 1px #313131;
    border-radius: 99px;
    display: inline-block;
  }
}
.p-property-sale__btn {
  margin-bottom: 11.2rem;
}
@media only screen and (max-width: 780px) {
  .p-property-sale__btn {
    margin-bottom: 8rem;
  }
}

.p-land-recruitment__begining {
  margin-bottom: 11.2rem;
}
@media only screen and (max-width: 780px) {
  .p-land-recruitment__begining {
    margin-bottom: 8rem;
  }
}
.p-land-recruitment__begining p {
  line-height: 3;
}
.p-land-recruitment__category {
  margin-bottom: 12rem;
}
@media only screen and (max-width: 780px) {
  .p-land-recruitment__category {
    margin-bottom: 8rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-land-recruitment__category .midashi01 {
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 781px) {
  .p-land-recruitment__category ul {
    margin-top: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.p-land-recruitment__category ul li {
  background-color: #17181D;
}
@media only screen and (min-width: 781px) {
  .p-land-recruitment__category ul li {
    width: 48.3%;
    margin-bottom: 4rem;
    padding: 7.2rem 6.4rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-land-recruitment__category ul li {
    margin-bottom: 2rem;
    padding: 2.6rem 2rem;
  }
}
.p-land-recruitment__category ul li h3 {
  margin-bottom: 2em;
  font-family: "Noto serif JP", serif;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-land-recruitment__category ul li h3 {
    font-size: 2rem;
  }
}
.p-land-recruitment__category ul li h3 span {
  font-size: 0.46875em;
}
@media only screen and (max-width: 780px) {
  .p-land-recruitment__category ul li h3 span {
    font-size: 0.66em;
    display: block;
  }
}
.p-land-recruitment__category ul li .land_area {
  width: 26rem;
  margin: 0 auto;
  padding: 0.72em 0.5em;
  font-size: 2.2rem;
  text-align: center;
  border: solid 1px #ffffff;
}
@media only screen and (max-width: 780px) {
  .p-land-recruitment__category ul li .land_area {
    max-width: 90%;
    font-size: 1.8rem;
  }
}
.p-land-recruitment__category ul li .land_area + p {
  margin-top: 2em;
  line-height: 1.75;
  text-align: center;
}
.p-land-recruitment__category ul li .text {
  margin-top: 2.5em;
  padding-top: 2em;
  border-top: solid 1px #313131;
}
.p-land-recruitment__category ul li .text h4 {
  margin-bottom: 1.13em;
  font-size: 0.9375em;
}
.p-land-recruitment__category ul li .text p {
  margin-bottom: 1.2em;
  font-size: 0.875em;
}
.p-land-recruitment__category ul li .text > *:last-child {
  margin-bottom: 0 !important;
}
.p-land-recruitment__area {
  background-color: #091826;
}
@media only screen and (min-width: 781px) {
  .p-land-recruitment__area {
    max-width: 1488px;
    margin: 0 auto 11.2rem auto;
    padding: 10.4rem 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-land-recruitment__area {
    margin-bottom: 8rem;
    padding: 8rem 0;
  }
}
@media only screen and (min-width: 781px) {
  .p-land-recruitment__area .inner {
    display: flex;
  }
}
@media only screen and (min-width: 781px) {
  .p-land-recruitment__area .midashi01 {
    width: 40%;
  }
}
.p-land-recruitment__area p {
  line-height: 3;
}
@media only screen and (min-width: 781px) {
  .p-land-recruitment__area p {
    width: 60%;
  }
}
.p-land-recruitment__btn {
  margin-bottom: 11.2rem;
}
@media only screen and (max-width: 780px) {
  .p-land-recruitment__btn {
    margin-bottom: 8rem;
  }
}

.p-trading__begining {
  margin-bottom: 11.2rem;
}
@media only screen and (max-width: 780px) {
  .p-trading__begining {
    margin-bottom: 8rem;
  }
}
.p-trading__begining p {
  line-height: 3;
}
.p-trading__list {
  margin-bottom: 11.2rem;
}
@media only screen and (max-width: 780px) {
  .p-trading__list {
    margin-bottom: 8rem;
  }
}
.p-trading__list .year_select {
  margin-bottom: 4rem;
  text-align: right;
}
@media only screen and (max-width: 780px) {
  .p-trading__list .year_select {
    text-align: center;
  }
}
.p-trading__list .year_select .input-select {
  width: 33rem;
  max-width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: left;
  background-color: #ffffff;
}
@media only screen and (max-width: 780px) {
  .p-trading__list .scroll_text {
    margin-bottom: 1em;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    text-align: right;
  }
  .p-trading__list .scroll_text i {
    margin-left: 3rem;
    display: inline-block;
    vertical-align: 0.4em;
    position: relative;
  }
  .p-trading__list .scroll_text i:before {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
    transform: rotate(45deg);
    transform-origin: center center;
    position: absolute;
    top: -0.6rem;
    left: 0;
  }
  .p-trading__list .scroll_text i:after {
    width: 2rem;
    height: 1px;
    margin-left: -1.5rem;
    content: "";
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-trading__list .sp_scroll {
    width: 100%;
    padding-bottom: 2rem;
    overflow-x: auto;
  }
}
.p-trading__list table {
  width: 100%;
  table-layout: fixed;
}
@media only screen and (max-width: 780px) {
  .p-trading__list table {
    width: 80rem;
    font-size: 1.3rem;
  }
}
.p-trading__list table thead th {
  padding: 1.125em 2em;
  background-color: #17181D;
  border-left: solid 1px #313131;
}
@media only screen and (max-width: 780px) {
  .p-trading__list table thead th {
    padding: 1em;
  }
}
.p-trading__list table thead th:first-child {
  width: 26.6%;
  border-left: none;
}
.p-trading__list table tbody td {
  padding: 1.6em 2em;
  vertical-align: top;
  border-bottom: solid 1px #313131;
}
@media only screen and (max-width: 780px) {
  .p-trading__list table tbody td {
    padding: 1em;
  }
}
.p-trading__list table tbody td:first-child {
  width: 26.6%;
}
.p-trading__btn {
  margin-bottom: 11.2rem;
}
@media only screen and (max-width: 780px) {
  .p-trading__btn {
    margin-bottom: 8rem;
  }
}

.p-contact__begining {
  margin-bottom: 5.6rem;
}
.p-contact__begining p {
  line-height: 3;
}
.p-contact__tel {
  margin-bottom: 11.2rem;
}
@media only screen and (max-width: 780px) {
  .p-contact__tel {
    margin-bottom: 8rem;
  }
}
.p-contact__tel .inner {
  max-width: 1000px;
  padding: 5rem 0 4rem 0;
  text-align: center;
  background-color: #17181D;
}
@media only screen and (max-width: 780px) {
  .p-contact__tel .inner {
    padding: 3rem 0;
  }
}
.p-contact__tel p {
  margin-bottom: 1.5em;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media only screen and (max-width: 780px) {
  .p-contact__tel p {
    font-size: 1.3rem;
  }
}
.p-contact__tel a {
  font-family: "Noto serif JP", serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
}
@media only screen and (max-width: 780px) {
  .p-contact__tel a {
    font-size: 2.2rem;
  }
}
.p-contact__tel a:before {
  width: 0.85em;
  height: 0.85em;
  margin-right: 0.7em;
  content: "";
  background-image: url("../img/icon_tel_white.png");
  background-size: cover;
  display: inline-block;
  vertical-align: -0.05em;
}
.p-contact__tel .time {
  margin-top: 0.66em;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}
.p-contact__mail {
  margin-bottom: 16rem;
}
@media only screen and (max-width: 780px) {
  .p-contact__mail {
    margin-bottom: 6rem;
  }
}
.p-contact__mail .form_area .input_field_area {
  margin-bottom: 7.2rem;
  padding: 12.8rem 2rem;
  color: #101115;
  background-color: #ffffff;
}
@media only screen and (max-width: 780px) {
  .p-contact__mail .form_area .input_field_area {
    margin-bottom: 6rem;
    padding: 3rem 2rem;
  }
}
.p-contact__mail .form_area .input_field_area .input_field {
  max-width: 968px;
  margin: 0 auto 4rem auto;
}
@media only screen and (max-width: 780px) {
  .p-contact__mail .form_area .input_field_area .input_field {
    margin-bottom: 3rem;
  }
}
.p-contact__mail .form_area .input_field_area .input_field:last-child {
  margin-bottom: 0;
}
.p-contact__mail .form_area .input_field_area .input_field .input_label {
  margin-bottom: 1em;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #101115;
}
.p-contact__mail .form_area .input_field_area .input_field .input_label span {
  margin-left: 1em;
  padding: 0 0.5em;
  font-size: 0.875em;
  color: #DE1111;
  border: solid 1px #DE1111;
  border-radius: 0.4rem;
  display: inline-block;
  vertical-align: 0;
}
.p-contact__mail .form_area .input_field_area .input_field .input_area.row {
  display: flex;
  justify-content: space-between;
}
.p-contact__mail .form_area .input_field_area .input_field .input_area.row .col {
  width: 48%;
}
.p-contact__mail .form_area .input_field_area .input_field .input_area.row .col .label {
  margin-bottom: 0.6em;
  font-size: 0.9375em;
  font-weight: 500;
  color: #101115;
}
.p-contact__mail .form_area .input_field_area .input_field .input_area .annotation {
  margin-top: 1em;
  font-size: 0.875em;
}
.p-contact__mail .form_area .input_field_area .input_field .input_area .file_attachment {
  color: #101115;
}
.p-contact__mail .form_area .input_field_area .input_field .input_area .file_attachment + .file_attachment {
  margin-top: 1em;
}
.p-contact__mail .form_area .privacy {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 780px) {
  .p-contact__mail .form_area .privacy {
    margin-bottom: 6rem;
  }
}
.p-contact__mail .form_area .privacy > p {
  margin-bottom: 2em;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
@media only screen and (max-width: 780px) {
  .p-contact__mail .form_area .privacy > p {
    margin-bottom: 3em;
  }
}
.p-contact__mail .form_area .privacy .box {
  height: 24rem;
  margin-bottom: 3.2rem;
  padding: 2em;
  border: solid 1px #313131;
}
@media only screen and (max-width: 780px) {
  .p-contact__mail .form_area .privacy .box {
    height: 14rem;
    margin-bottom: 4em;
  }
}
.p-contact__mail .form_area .privacy .box .scroll {
  width: 100%;
  height: 100%;
  padding-right: 1em;
  overflow: auto;
}
.p-contact__mail .form_area .privacy .box h3 {
  margin-bottom: 1em;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 780px) {
  .p-contact__mail .form_area .privacy .box h3 {
    font-size: 1.6rem;
  }
}
.p-contact__mail .form_area .privacy .box h4 {
  margin-bottom: 0.5em;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-contact__mail .form_area .privacy .box p {
  margin-bottom: 2em;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.p-contact__mail .form_area .privacy .check {
  text-align: center;
}
.p-contact__mail .form_area .privacy .check label input + span:before {
  background-color: transparent;
  border: solid 1px #ffffff;
}
.p-contact__mail .form_area .privacy .check label input + span:after {
  border-left: solid 0.2rem #ffffff;
  border-bottom: solid 0.2rem #ffffff;
}
.p-contact__mail .form_area .submit {
  text-align: center;
}
.p-contact__mail .form_area .submit .submit_btn {
  width: 43.2rem;
  height: 9rem;
  background-image: url("../img/submit_btn.png");
  background-size: cover;
  display: inline-block;
}
@media only screen and (max-width: 780px) {
  .p-contact__mail .form_area .submit .submit_btn {
    width: 29rem;
    height: 6rem;
  }
}
.p-contact__mail .form_area .submit input[type=submit] {
  width: 100%;
  height: 100%;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  background: none;
}
.p-contact__mail .form_area .submit input[type=submit]:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.p-contact__mail .form_area .submit input[type=submit]:disabled {
  background-color: rgba(16, 17, 21, 0.8) !important;
}

.p-news__list {
  margin-bottom: 21.6rem;
}
@media only screen and (max-width: 780px) {
  .p-news__list {
    margin-bottom: 8rem;
  }
}
.p-news__list .news_list li {
  padding-bottom: 4rem;
  border-bottom: solid 1px #323336;
}
@media only screen and (max-width: 780px) {
  .p-news__list .news_list li {
    padding-bottom: 2rem;
  }
}
.p-news__list .news_list li + li {
  margin-top: 4rem;
}
@media only screen and (max-width: 780px) {
  .p-news__list .news_list li + li {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-news__list .news_list li a p {
    position: relative;
  }
  .p-news__list .news_list li a p:after {
    width: 0;
    height: 1px;
    content: "";
    background-color: #ffffff;
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    transition: width 0.3s;
  }
  .p-news__list .news_list li a:hover p:after {
    width: 100%;
  }
}
.p-news__list .news_list li .date {
  margin-bottom: 1.2em;
  font-family: "Noto serif JP", serif;
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-news__list .news_list li .date {
    margin-bottom: 0.57em;
    font-size: 1.3rem;
  }
}
.p-news__list .news_list li p {
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 781px) {
  .p-news__list .news_list li p {
    font-size: 1.5rem;
    display: inline-block;
  }
}
.p-news__list .pagination {
  margin-top: 12rem;
}
@media only screen and (max-width: 780px) {
  .p-news__list .pagination {
    margin-top: 6rem;
  }
}
.p-news__post {
  margin-bottom: 16.8rem;
}
@media only screen and (max-width: 780px) {
  .p-news__post {
    margin-bottom: 8rem;
  }
}
.p-news__post .news_headding {
  margin-bottom: 5.6rem;
}
@media only screen and (max-width: 780px) {
  .p-news__post .news_headding {
    margin-bottom: 6rem;
  }
}
.p-news__post .news_headding .inner {
  max-width: 1080px;
}
.p-news__post .news_headding .cate {
  margin-bottom: 2em;
  letter-spacing: -0.4em;
}
.p-news__post .news_headding .cate > * {
  display: inline-block;
  letter-spacing: normal;
}
.p-news__post .news_headding .cate span {
  margin: 0 1em 0.5em 0;
  padding: 0.4em 2.2em;
  font-size: 1.4rem;
  text-align: center;
  border: solid 1px #313131;
  border-radius: 99px;
}
.p-news__post .news_headding h2 {
  margin-bottom: 1.2em;
  font-family: "Noto serif JP", serif;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.38;
}
@media only screen and (max-width: 780px) {
  .p-news__post .news_headding h2 {
    font-size: 2rem;
  }
}
.p-news__post .news_headding .date {
  letter-spacing: -0.4em;
}
.p-news__post .news_headding .date > * {
  display: inline-block;
  letter-spacing: normal;
}
.p-news__post .news_headding .date span {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 200;
  letter-spacing: 0.1em;
}
.p-news__post .news_headding .date span:before {
  width: 1.14em;
  height: 1.14em;
  margin-right: 0.9em;
  content: "";
  background-size: cover;
  display: inline-block;
  vertical-align: -0.2em;
}
.p-news__post .news_headding .date span.post_date:before {
  background-image: url("../img/news/post_date.png");
}
.p-news__post .news_headding .date span.update_post {
  margin-left: 1.7em;
}
.p-news__post .news_headding .date span.update_post:before {
  background-image: url("../img/news/update_post.png");
}
.p-news__post .news_headding .icatch {
  max-width: 1000px;
  height: auto;
  margin: 5.6rem auto 0 auto;
}
@media only screen and (max-width: 780px) {
  .p-news__post .news_headding .icatch {
    margin-top: 4rem;
  }
}
.p-news__post .editor-area {
  margin-bottom: 11.2rem;
}
@media only screen and (max-width: 780px) {
  .p-news__post .editor-area {
    margin-bottom: 6rem;
  }
}
.p-news__post .editor-area .inner {
  max-width: 1000px;
}
.p-news__post .post-navigation {
  padding-top: 6.4rem;
  border-top: solid 1px #313131;
}
@media only screen and (max-width: 780px) {
  .p-news__post .post-navigation {
    padding-top: 8rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-news__post .post-navigation .inner {
    max-width: 1080px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-news__post .post-navigation .arrow {
  display: flex;
}
@media only screen and (max-width: 780px) {
  .p-news__post .post-navigation .arrow {
    justify-content: center;
  }
}
.p-news__post .post-navigation .arrow .nav-previous {
  margin-right: 4rem;
}
.p-news__post .post-navigation .arrow .nav-previous a {
  width: 6.4rem;
  height: 6.4rem;
  background-image: url("../img/icon_arrow01.png");
  background-size: 2.4rem auto;
  background-repeat: no-repeat;
  background-position: center center;
  border: solid 1px #ffffff;
  border-radius: 50%;
  display: block;
  transform: scaleX(-1);
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (max-width: 780px) {
  .p-news__post .post-navigation .arrow .nav-previous a {
    width: 4rem;
    height: 4rem;
    background-size: 1.8rem auto;
  }
}
.p-news__post .post-navigation .arrow .nav-next a {
  width: 6.4rem;
  height: 6.4rem;
  background-image: url("../img/icon_arrow01.png");
  background-size: 2.4rem auto;
  background-repeat: no-repeat;
  background-position: center center;
  border: solid 1px #ffffff;
  border-radius: 50%;
  display: block;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (max-width: 780px) {
  .p-news__post .post-navigation .arrow .nav-next a {
    width: 4rem;
    height: 4rem;
    background-size: 1.8rem auto;
  }
}
@media only screen and (max-width: 780px) {
  .p-news__post .post-navigation .btn {
    margin-top: 4rem;
    text-align: center;
  }
}

/****************************************************
 * 6.装飾
 ****************************************************/
.underline {
  text-decoration: underline;
}

.bold {
  font-weight: 700;
}

/****************************************************
 * 7.印刷用調整
 ****************************************************/
@media print {
  @page {
    /* A4縦サイズ */
    size: 210mm 297mm;
  }
  html {
    font-size: 10pt !important;
  }
  body {
    margin: 0 !important;
    padding: 0 !important;
  }
  * {
    -webkit-print-color-adjust: exact;
  }
  .container {
    padding: 0 !important;
  }
  #header {
    position: static !important;
  }
  img {
    display: block !important;
  }
}