@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

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

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "ryo-gothic-plusn", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #191920;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  background: #f4f4f4;
}

* {
  box-sizing: border-box;
}

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

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

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  color: #191920;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    padding: 0;
    width: 70.666667%;
  }
}

.inner-middle {
  max-width: 1140px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .inner-middle {
    padding: 0 25px;
  }
}

.inner-big {
  max-width: 1260px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .inner-big {
    padding: 0 25px;
  }
}

[data-trigger] {
  position: relative;
  top: 60px;
  transition: top 1s, opacity 1s;
  opacity: 0;
}
[data-trigger].visible {
  top: 0;
  opacity: 1;
}

.visuallyhidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.footer {
  margin-top: 190px;
}
@media only screen and (max-width: 767px) {
  .footer {
    margin-top: 170px;
  }
}
.footer__whole {
  background: #797979;
  position: relative;
  padding-top: 220px;
}
@media only screen and (max-width: 767px) {
  .footer__whole {
    padding-top: 216px;
  }
}
.footer__upper {
  max-width: 1260px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .footer__upper {
    padding: 0 25px;
  }
}
.footer__contact {
  position: absolute;
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .footer__contact {
    width: calc(100% - 50px);
  }
}
.footer__contact a {
  display: block;
  width: 100%;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .footer__contact a:hover:before {
    transform: scale(1.05);
  }
  .footer__contact a:hover span {
    top: -20px;
  }
  .footer__contact a:hover em {
    top: 65%;
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  .footer__contact a {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
.footer__contact a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/footer/contact.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
  transform: scale(1);
  transition: transform 0.5s;
}
@media only screen and (max-width: 767px) {
  .footer__contact a:before {
    background-image: url(../images/footer/contact_sp.jpg);
  }
}
.footer__contact a span {
  font-family: "Cinzel", serif;
  font-size: 50px;
  letter-spacing: 0.15em;
  line-height: 1.12;
  display: block;
  color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
  top: 0;
  transition: all 0.5s;
}
@media only screen and (max-width: 767px) {
  .footer__contact a span {
    font-size: 36px;
    line-height: 1.11111111;
  }
}
@media only screen and (min-width: 768px) {
  .footer__contact a em {
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.15em;
    transition: all 0.5s;
  }
}
@media only screen and (max-width: 767px) {
  .footer__contact a em {
    text-align: center;
    display: block;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.15em;
    margin-top: 8px;
    font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
    position: relative;
    z-index: 2;
  }
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    padding: 0;
    width: 100%;
  }
}
.footer__brand {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer__brand {
    display: block;
  }
}
.footer__brand > div:nth-child(1) a {
  display: block;
}
.footer__brand > div:nth-child(1) a img {
  height: 60px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .footer__brand > div:nth-child(1) a img {
    height: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__brand > div:nth-child(2) {
    margin-top: 50px;
  }
}
.footer__brand > div:nth-child(2) strong,
.footer__brand > div:nth-child(2) span {
  display: block;
  color: #fff;
}
.footer__brand > div:nth-child(2) strong {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .footer__brand > div:nth-child(2) strong {
    font-size: 15px;
  }
}
.footer__brand > div:nth-child(2) span {
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-top: 18px;
}
@media only screen and (max-width: 767px) {
  .footer__brand > div:nth-child(2) span {
    font-size: 13px;
    margin-top: 20px;
    line-height: 1.69230769;
  }
}
.footer__nav {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 46px;
  }
}
.footer__nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer__nav ul li:nth-child(odd) {
    width: 47%;
  }
  .footer__nav ul li:nth-child(even) {
    width: 53%;
  }
}
.footer__nav ul li a {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer__nav ul li a {
    display: block;
  }
}
.footer__nav ul li a span {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.66666667;
}
@media only screen and (max-width: 767px) {
  .footer__nav ul li a span {
    font-size: 15px;
    line-height: 2.4;
  }
}
.footer__meta {
  margin-top: 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer__meta {
    margin-top: 50px;
    font-size: 12px;
  }
}
.footer__meta ul {
  display: flex;
  gap: 0 50px;
}
@media only screen and (max-width: 767px) {
  .footer__meta ul {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .footer__meta ul li {
    display: block;
    margin-bottom: 12px;
  }
}
.footer__meta ul li a span,
.footer__meta ul li a img {
  display: inline-block;
  vertical-align: middle;
}
.footer__meta ul li a span {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .footer__meta ul li a span {
    font-size: 12px;
  }
}
.footer__meta ul li a img {
  margin-left: 12px;
}
@media only screen and (max-width: 767px) {
  .footer__meta ul li a img {
    width: 12px;
    height: 12px;
    margin-left: 5px;
  }
}
.footer__meta p {
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .footer__meta p {
    padding-top: 8px;
    font-size: 12px;
  }
}
.footer__bottom {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .footer__bottom {
    margin-top: 50px;
  }
}
.footer__bottom a {
  display: block;
  width: 100%;
  font-size: 0;
  background: #525252;
  padding: 36px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer__bottom a {
    padding: 30px 0;
  }
}
.footer__bottom a span,
.footer__bottom a img {
  display: inline-block;
  vertical-align: middle;
}
.footer__bottom a span {
  font-family: "Cinzel", serif;
  font-size: 24px;
  letter-spacing: 0.15em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer__bottom a span {
    font-size: 18px;
  }
}
.footer__bottom a img {
  width: 30px;
  height: 30px;
  margin-left: 30px;
}
@media only screen and (max-width: 767px) {
  .footer__bottom a img {
    width: 26px;
    height: 26px;
    margin-left: 20px;
  }
}

body > .header.on {
  opacity: 0;
}

main > .header.on {
  position: fixed;
}

body.show-header .header {
  top: 0;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  top: -100px;
  transition: top 0.4s, opacity 0.4s;
}
.header__inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 27px 40px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .header__inner {
    padding: 17px 20px 15px;
  }
}
.header__brand > div:nth-child(2) {
  display: none;
}
.header__brand a img {
  display: block;
  width: 340px;
  height: auto;
}
@media only screen and (max-width: 1080px) {
  .header__brand a img {
    width: 240px;
  }
}
@media only screen and (max-width: 845px) {
  .header__brand a img {
    width: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .header__brand a img {
    width: auto;
    height: 38px;
  }
}
.header__right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header__right {
    display: none;
  }
}
.header__right nav ul {
  display: flex;
  gap: 0 22px;
}
@media only screen and (max-width: 1080px) {
  .header__right nav ul {
    gap: 0 12px;
  }
}
.header__right nav ul li a span {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 15px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1080px) {
  .header__right nav ul li a span {
    font-size: 13px;
  }
}
.header__right > div {
  margin-left: 32px;
}
@media only screen and (max-width: 1080px) {
  .header__right > div {
    margin-left: 10px;
  }
}
.header__right > div a {
  width: 45px;
  height: 45px;
  display: block;
  position: relative;
  background: transparent;
}
@media only screen and (max-width: 1080px) {
  .header__right > div a {
    width: 35px;
    height: 35px;
  }
}
.header__right > div a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(59, 140, 214);
  background: linear-gradient(225deg, rgb(59, 140, 214) 0%, rgb(16, 53, 98) 100%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.header__right > div a:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  display: block;
  border: 1px solid #191920;
  opacity: 1;
  transition: opacity 0.3s;
}
.header__right > div a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.header__right > div a span svg {
  width: 17.5px;
  height: 14px;
  display: block;
}
@media only screen and (max-width: 1080px) {
  .header__right > div a span svg {
    width: 13px;
    height: auto;
  }
}
.header__right > div a span svg path {
  transition: stroke 0.3s;
}
@media only screen and (min-width: 768px) {
  .header__right > div a:hover {
    border-color: transparent;
  }
  .header__right > div a:hover:before {
    opacity: 1;
  }
  .header__right > div a:hover:after {
    opacity: 0;
  }
  .header__right > div a:hover svg path {
    stroke: #fff;
  }
}
.header__toggle a {
  display: block;
  width: 36px;
  height: 32px;
}
.header__toggle a.on > span span:nth-child(1) {
  transform: rotate(30deg);
  top: 0;
}
.header__toggle a.on > span span:nth-child(2) {
  transform: rotate(-30deg);
  bottom: 0;
}
.header__toggle a > span {
  width: 30px;
  height: 10px;
  position: relative;
  display: block;
  left: 0;
  right: 0;
  margin: auto;
}
.header__toggle a > span span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  display: block;
  background: #191920;
  transition: all 0.3s;
  transform: rotate(0deg);
  top: 0;
  bottom: 0;
}
.header__toggle a > span span:nth-child(1) {
  top: -9px;
}
.header__toggle a > span span:nth-child(2) {
  bottom: -9px;
}
.header__toggle a em {
  display: block;
  text-align: center;
  color: #191920;
  font-size: 10px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.15em;
  margin-top: 9px;
}
.header__mega {
  background: #797979;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  overflow: scroll;
  display: none;
}
.header__mega__inner {
  padding-top: 80px;
  padding-bottom: 70px;
  padding-left: 40px;
  padding-right: 40px;
}
.header__mega__inner > ul {
  color: #fff;
}
.header__mega__inner > ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header__mega__inner > ul li:last-child {
  border: none;
}
.header__mega__inner > ul li a {
  display: block;
  padding: 18px 0;
}
.header__mega__inner > ul li a span strong,
.header__mega__inner > ul li a span em {
  display: block;
  text-align: center;
}
.header__mega__inner > ul li a span strong {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
.header__mega__inner > ul li a span em {
  font-size: 13px;
  letter-spacing: 0.15em;
  font-family: "Cinzel", serif;
  opacity: 0.6;
  margin-top: 10px;
}
.header__mega__inner > div {
  margin-top: 16px;
}
.header__mega__inner > div a {
  display: block;
  border: 1px solid #fff;
  text-align: center;
  font-size: 0;
  color: #fff;
  padding: 18px 0;
}
.header__mega__inner > div a svg,
.header__mega__inner > div a span {
  display: inline-block;
  vertical-align: middle;
}
.header__mega__inner > div a svg {
  width: 17.5px;
  height: 14px;
  margin-right: 18px;
}
.header__mega__inner > div a span {
  font-size: 18px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.15em;
}

main .header {
  position: absolute;
  top: 0;
}
main .header__inner {
  background: transparent;
}
main .header__brand div:nth-child(1) {
  display: none;
}
main .header__brand div:nth-child(2) {
  display: block;
}
main .header__right {
  color: #fff;
}
main .header__right > div a:after {
  border-color: #fff;
}
main .header__right > div a span svg path {
  stroke: #fff;
}
main .header__toggle a > span span {
  background: #fff;
}
main .header__toggle a em {
  color: #fff;
}

.archive-area {
  padding-top: 100px;
}
.archive-area .inner-middle {
  max-width: 1180px;
}
.archive-area__ttl {
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 2.15384615;
  padding-bottom: 10px;
  border-bottom: 1px solid #dbdbdb;
  font-family: "Cinzel", serif;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .archive-area__ttl {
    font-size: 20px;
  }
}
.archive-area__ttl.on img {
  transform: translateY(-50%) rotate(0deg);
}
.archive-area__ttl img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  right: 0;
  width: 19px;
  height: auto;
  transition: transform 0.3s;
}
@media only screen and (max-width: 767px) {
  .archive-area__ttl img {
    width: 14px;
    top: 46%;
  }
}

.archive-js-wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 39px;
}
@media only screen and (max-width: 767px) {
  .archive-js-wrapper {
    padding-top: 32px;
  }
}
.archive-js-wrapper__whole {
  display: none;
}
.archive-js-wrapper .archive-all {
  width: 108px;
  font-size: 20px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .archive-js-wrapper .archive-all {
    padding-bottom: 22px;
    font-size: 18px;
    width: 100%;
    line-height: 1.76470588;
  }
}
.archive-js-wrapper .archive-list {
  width: calc(100% - 108px);
  display: flex;
  align-items: flex-start;
  gap: 40px 60px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .archive-js-wrapper .archive-list {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 28px 0;
  }
}
.archive-js-wrapper .archive-list .archive-year {
  width: 148px;
  font-family: "Cinzel", serif;
  font-size: 20px;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .archive-js-wrapper .archive-list .archive-year {
    font-size: 18px;
    width: 46.5%;
  }
}
@media only screen and (max-width: 767px) {
  .archive-js-wrapper .archive-list .archive-year__txt {
    font-size: 18px;
  }
}
.archive-js-wrapper .archive-list .archive-year .months {
  display: flex;
  align-items: flex-start;
  gap: 0 17px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  left: -3px;
  padding-top: 2px;
}
@media only screen and (max-width: 767px) {
  .archive-js-wrapper .archive-list .archive-year .months {
    font-size: 17px;
  }
}
.archive-js-wrapper .archive-list .archive-year .months .month-item {
  text-decoration: underline;
  text-align: center;
  width: 24px;
}
.archive-js-wrapper .archive-list .archive-year .months .month-item.is-inactive {
  text-decoration: none;
  color: #797979;
}

.breadcrumb {
  padding: 30px 40px 0;
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    padding: 20px 25px 0;
  }
}
.breadcrumb div ul {
  font-size: 0;
}
.breadcrumb div ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 48px;
  font-size: 12px;
  letter-spacing: 0.05em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .breadcrumb div ul li {
    line-height: 1.3;
  }
}
.breadcrumb div ul li:before {
  content: "";
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: #191920;
}
.breadcrumb div ul li:last-child {
  margin-right: 0;
}
.breadcrumb div ul li:last-child:before {
  content: none;
}

.common-title h2 small {
  display: block;
  position: relative;
  padding-left: 50px;
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .common-title h2 small {
    font-size: 16px;
    padding-left: 32px;
  }
}
.common-title h2 small:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 2px;
  background: rgb(16, 53, 98);
  background: linear-gradient(45deg, rgb(16, 53, 98) 0%, rgb(59, 140, 214) 100%);
}
@media only screen and (max-width: 767px) {
  .common-title h2 small:before {
    width: 20px;
    bottom: auto;
    top: 11px;
  }
}
.common-title h2 span {
  display: block;
  margin-top: 24px;
  font-size: 32px;
  letter-spacing: 0.15em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  line-height: 1.5625;
}
@media only screen and (max-width: 767px) {
  .common-title h2 span {
    font-size: 24px;
    margin-top: 21px;
  }
}

/**

 */
body.top {
  height: 100%;
  width: 100%;
}

.about-greeting {
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .about-greeting {
    margin-top: 50px;
  }
}
.about-greeting .inner {
  position: relative;
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .about-greeting .inner {
    padding-bottom: 40px;
    width: 100%;
  }
}
.about-greeting .inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200%;
  height: 75%;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .about-greeting .inner:before {
    height: 87%;
  }
}
.about-greeting__box {
  position: relative;
}
.about-greeting__inner figure {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
}
.about-greeting__inner figure img {
  display: block;
  width: 26%;
}
@media only screen and (max-width: 767px) {
  .about-greeting__inner figure img {
    width: 56%;
    margin: auto;
  }
}
.about-greeting__inner figure figcaption {
  width: 66%;
}
@media only screen and (max-width: 767px) {
  .about-greeting__inner figure figcaption {
    width: 100%;
    padding: 0 25px;
  }
}
.about-greeting__inner figure figcaption h3 {
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .about-greeting__inner figure figcaption h3 {
    padding-top: 24px;
  }
}
.about-greeting__inner figure figcaption h3 small,
.about-greeting__inner figure figcaption h3 strong {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .about-greeting__inner figure figcaption h3 small,
  .about-greeting__inner figure figcaption h3 strong {
    display: block;
    text-align: center;
  }
}
.about-greeting__inner figure figcaption h3 small {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-right: 20px;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .about-greeting__inner figure figcaption h3 small {
    font-size: 15px;
    margin: 0;
  }
}
.about-greeting__inner figure figcaption h3 strong {
  font-size: 26px;
  letter-spacing: 0.05em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .about-greeting__inner figure figcaption h3 strong {
    font-size: 22px;
    margin-top: 10px;
  }
  .about-greeting__inner figure figcaption h3 strong span {
    font-size: 15px;
    margin: 0;
    margin-right: 12px;
  }
}
.about-greeting__inner figure figcaption div {
  margin-top: 110px;
  max-width: 625px;
}
@media only screen and (max-width: 767px) {
  .about-greeting__inner figure figcaption div {
    margin-top: 30px;
  }
}
.about-greeting__inner figure figcaption div p {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.13333333;
}
@media only screen and (max-width: 767px) {
  .about-greeting__inner figure figcaption div p {
    line-height: 1.86666667;
  }
}

.about-members {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .about-members {
    margin-top: 90px;
  }
}
.about-members__row .inner-middle {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about-members__row .inner-middle figure {
  width: calc(50% - 60px);
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .about-members__row .inner-middle figure {
    width: 100%;
    margin-top: 60px;
  }
  .about-members__row .inner-middle figure:nth-child(1) {
    margin-top: 50px;
  }
}
.about-members__row .inner-middle figure figcaption div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .about-members__row .inner-middle figure figcaption div {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
}
.about-members__row .inner-middle figure figcaption div img {
  width: 165px;
}
@media only screen and (max-width: 767px) {
  .about-members__row .inner-middle figure figcaption div img {
    width: 63.6%;
  }
}
.about-members__row .inner-middle figure figcaption h3 {
  width: calc(100% - 165px - 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DBDBDB;
}
@media only screen and (max-width: 767px) {
  .about-members__row .inner-middle figure figcaption h3 {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.about-members__row .inner-middle figure figcaption h3 small {
  font-size: 16px;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
.about-members__row .inner-middle figure figcaption h3 strong {
  font-size: 22px;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
.about-members__row .inner-middle figure figcaption p {
  padding-top: 34px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.85714286;
}
@media only screen and (max-width: 767px) {
  .about-members__row .inner-middle figure figcaption p {
    padding-top: 30px;
  }
}

.about-message {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .about-message {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .about-message .inner {
    padding: 0 25px;
    width: 100%;
  }
}
.about-message .inner h2 {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .about-message .inner h2 {
    text-align: left;
  }
}
.about-message .inner h2 small {
  display: block;
}
.about-message .inner h2 small > em {
  display: inline-block;
  position: relative;
}
.about-message .inner h2 small > em > em {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .about-message .inner h2 small > em > em {
    font-size: 16px;
    padding-left: 32px;
  }
}
.about-message .inner h2 small > em > em:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 2px;
  background: rgb(16, 53, 98);
  background: linear-gradient(45deg, rgb(16, 53, 98) 0%, rgb(59, 140, 214) 100%);
}
@media only screen and (max-width: 767px) {
  .about-message .inner h2 small > em > em:before {
    width: 20px;
    bottom: auto;
    top: 11px;
  }
}
.about-message .inner h2 strong {
  display: block;
  margin-top: 28px;
  font-size: 32px;
  letter-spacing: 0.15em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .about-message .inner h2 strong {
    font-size: 24px;
    margin-top: 21px;
  }
}
.about-message__body {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .about-message__body {
    margin-top: 50px;
  }
}
.about-message__body p {
  margin-bottom: 42px;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2.375;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .about-message__body p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 2;
  }
}
.about-message__body p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .about-message__body p:last-child {
    margin-bottom: 0;
  }
}

.about-mission {
  margin-top: 110px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .about-mission {
    margin-top: 70px;
  }
}
.about-mission__whole {
  margin-top: 80px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about-mission__whole {
    margin-top: 50px;
  }
}
.about-mission__whole .inner-middle {
  position: relative;
}
.about-mission__whole .inner-middle:before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 200%;
  height: 100%;
  background: #fff;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .about-mission__whole .inner-middle:before {
    left: 25px;
  }
}
.about-mission__box {
  position: relative;
}
.about-mission__inner {
  padding: 60px;
  padding-left: 100px;
  padding-bottom: 80px;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  .about-mission__inner {
    padding: 36px 0px 40px 30px;
  }
}
.about-mission__inner h3 {
  font-size: 0;
}
.about-mission__inner h3 strong,
.about-mission__inner h3 small {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .about-mission__inner h3 strong,
  .about-mission__inner h3 small {
    display: block;
  }
}
.about-mission__inner h3 strong {
  font-size: 60px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.15em;
  color: #dbdbdb;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .about-mission__inner h3 strong {
    font-size: 40px;
  }
}
.about-mission__inner h3 small {
  font-size: 22px;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 0.15em;
  margin-left: 18px;
  position: relative;
  top: -2px;
}
@media only screen and (max-width: 767px) {
  .about-mission__inner h3 small {
    font-size: 16px;
    top: 0;
    margin-left: 0;
    margin-top: 10px;
  }
}
.about-mission__inner h4 {
  font-size: 26px;
  letter-spacing: 0.15em;
  line-height: 1.65;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .about-mission__inner h4 {
    font-size: 20px;
    margin-top: 30px;
  }
}
.about-mission__inner hr {
  display: block;
  width: 100%;
  height: 1px;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
  background: #dbdbdb;
  margin: 60px 0;
}
@media only screen and (max-width: 767px) {
  .about-mission__inner hr {
    margin: 40px 0;
  }
}
.about-mission__inner img {
  display: block;
  margin-top: 40px;
  width: calc(100% - 32px);
  height: auto;
}
@media only screen and (max-width: 767px) {
  .about-mission__inner img {
    margin: auto;
    margin-top: 20px;
    width: 81.36%;
  }
}

.about-outline {
  margin-top: 140px;
}
@media only screen and (max-width: 767px) {
  .about-outline {
    margin-top: 90px;
  }
}
.about-outline .inner-middle {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .about-outline .common-title {
    width: 100%;
  }
}
.about-outline__content {
  width: 74.259259%;
}
@media only screen and (max-width: 767px) {
  .about-outline__content {
    width: 100%;
  }
}
.about-outline__content table {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .about-outline__content table {
    display: block;
    width: 100%;
    border-top: 1px solid #dbdbdb;
    margin-top: 50px;
  }
  .about-outline__content table tbody {
    display: block;
    width: 100%;
  }
}
.about-outline__content table tr {
  border-bottom: 1px solid #dbdbdb;
}
@media only screen and (max-width: 767px) {
  .about-outline__content table tr {
    width: 100%;
    display: block;
    padding: 24px 0;
  }
}
.about-outline__content table tr th {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  padding-left: 40px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .about-outline__content table tr th {
    width: 100%;
    display: block;
    padding: 0;
    font-size: 16px;
  }
}
.about-outline__content table tr td {
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 28px 0;
  padding-right: 40px;
  line-height: 1.73333333;
}
@media only screen and (max-width: 767px) {
  .about-outline__content table tr td {
    width: 100%;
    display: block;
    padding: 0;
    font-size: 14px;
    line-height: 1.85714286;
    margin-top: 12px;
  }
}

.contact__form {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .contact__form {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .contact__form .inner {
    width: 100%;
    padding: 0 25px;
  }
}
@media only screen and (min-width: 768px) {
  .contact__form .inner .common-title h2 {
    text-align: center;
  }
  .contact__form .inner .common-title h2 small,
  .contact__form .inner .common-title h2 span {
    display: inline-block;
  }
  .contact__form .inner .common-title h2 span {
    margin-top: 20px;
  }
}
.contact__form__step {
  border: 1px solid;
  padding: 38px 0;
  text-align: center;
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  .contact__form__step {
    padding: 30px 0 40px;
    margin-top: 42px;
  }
}
.contact__form__step ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  width: 666px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .contact__form__step ul {
    width: 250px;
  }
}
.contact__form__step ul li > span {
  font-size: 0;
}
.contact__form__step ul li > span em,
.contact__form__step ul li > span span {
  display: inline-block;
  vertical-align: middle;
  color: #797979;
}
@media only screen and (max-width: 767px) {
  .contact__form__step ul li > span em,
  .contact__form__step ul li > span span {
    display: block;
    text-align: center;
  }
}
.contact__form__step ul li > span em {
  font-size: 20px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.15em;
  margin-right: 18px;
  position: relative;
  top: 2px;
}
@media only screen and (max-width: 767px) {
  .contact__form__step ul li > span em {
    font-size: 16px;
    top: 0;
    margin-right: 0;
  }
}
.contact__form__step ul li > span span {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 22px;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .contact__form__step ul li > span span {
    font-size: 18px;
    line-height: 1.33333333;
    margin-top: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .contact__form__step ul li svg {
    width: 30px;
    height: auto;
    position: relative;
    top: 10px;
  }
}
.contact__form__step ul li.on > span em,
.contact__form__step ul li.on > span span {
  color: #191920;
}
.contact__form__step ul li.on > span em {
  text-decoration: underline;
}
.contact__form__step ul li.on svg path {
  stroke: #191920;
}
.contact__form__form form table {
  margin-top: 80px;
  width: 100%;
  border-top: 1px solid #dbdbdb;
  table-layout: fixed;
}
@media only screen and (max-width: 767px) {
  .contact__form__form form table {
    margin-top: 60px;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .contact__form__form form table tbody {
    width: 100%;
    display: block;
  }
}
.contact__form__form form table tbody tr {
  border-bottom: 1px solid #dbdbdb;
}
@media only screen and (max-width: 767px) {
  .contact__form__form form table tbody tr {
    width: 100%;
    display: block;
  }
}
.contact__form__form form table tbody tr:last-child th {
  vertical-align: top;
  padding-top: 40px;
}
.contact__form__form form table tbody tr th {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 40px;
  width: 340px;
  text-align: left;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .contact__form__form form table tbody tr th {
    width: 100%;
    display: block;
    padding: 0;
    padding-top: 24px;
  }
}
.contact__form__form form table tbody tr th > span {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.contact__form__form form table tbody tr th > span b,
.contact__form__form form table tbody tr th > span em {
  width: 53px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .contact__form__form form table tbody tr th > span b,
  .contact__form__form form table tbody tr th > span em {
    width: 49px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
  }
}
.contact__form__form form table tbody tr th > span b {
  background: rgb(16, 53, 98);
  background: linear-gradient(45deg, rgb(16, 53, 98) 0%, rgb(59, 140, 214) 100%);
}
.contact__form__form form table tbody tr th > span em {
  background: #797979;
}
.contact__form__form form table tbody tr th > span span {
  width: calc(100% - 53px);
  padding-left: 20px;
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .contact__form__form form table tbody tr th > span span {
    width: calc(100% - 49px);
    padding-left: 14px;
    font-size: 16px;
  }
}
.contact__form__form form table tbody tr th > span span small {
  font-size: 14px;
  display: block;
  margin-top: 7px;
}
@media only screen and (max-width: 767px) {
  .contact__form__form form table tbody tr th > span span small {
    font-size: 12px;
    display: inline-block;
    margin-top: 0;
  }
}
.contact__form__form form table tbody tr td {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 40px;
  word-break: break-all;
}
@media only screen and (max-width: 767px) {
  .contact__form__form form table tbody tr td {
    width: 100%;
    display: block;
    padding: 0;
    padding-top: 18px;
    padding-bottom: 24px;
  }
}
.contact__form__form form table tbody tr td > div > p {
  font-size: 15px;
  display: block;
  width: 100%;
  padding: 16.5px 14px;
  letter-spacing: 0.05em;
  line-height: 1.45;
}
@media only screen and (max-width: 767px) {
  .contact__form__form form table tbody tr td > div > p {
    font-size: 14px;
    padding: 0;
  }
}
.contact__form__form form table tbody tr td > div > input[type=text],
.contact__form__form form table tbody tr td > div > input[type=email] {
  font-size: 15px;
  display: block;
  width: 100%;
  background: #fff;
  padding: 16.5px 14px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .contact__form__form form table tbody tr td > div > input[type=text],
  .contact__form__form form table tbody tr td > div > input[type=email] {
    font-size: 14px;
    padding: 15px 14px;
  }
}
.contact__form__form form table tbody tr td > div > textarea {
  font-size: 15px;
  display: block;
  width: 100%;
  background: #fff;
  padding: 10px 14px;
  line-height: 1.45;
  height: 240px;
  resize: none;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .contact__form__form form table tbody tr td > div > textarea {
    height: 200px;
  }
}
.contact__form__form form table tbody tr td > div .checkboxes label {
  display: block;
  cursor: pointer;
  margin-bottom: 14px;
  position: relative;
  height: 28px;
  line-height: 28px;
}
.contact__form__form form table tbody tr td > div .checkboxes label:last-child {
  margin-bottom: 0;
}
.contact__form__form form table tbody tr td > div .checkboxes label input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact__form__form form table tbody tr td > div .checkboxes label input:checked + span:after {
  content: "";
  position: absolute;
  border-top: 1px solid #191920;
  border-right: 1px solid #191920;
  left: 8px;
  top: 44%;
  transform: translateY(-50%) rotate(135deg);
  width: 12px;
  height: 5px;
}
.contact__form__form form table tbody tr td > div .checkboxes label span {
  display: block;
  padding-left: 44px;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.contact__form__form form table tbody tr td > div .checkboxes label span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  width: 28px;
  height: 28px;
}
@media only screen and (max-width: 767px) {
  .contact__form__form form table tbody tr td > div .checkboxes label span em {
    line-height: 1.46666667;
    display: block;
    position: relative;
    top: -6px;
  }
}
.contact__form__form__caution {
  text-align: center;
  padding-top: 72px;
}
@media only screen and (max-width: 767px) {
  .contact__form__form__caution {
    padding-top: 42px;
  }
}
.contact__form__form__caution p {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .contact__form__form__caution p {
    font-size: 15px;
    line-height: 2;
    text-align: left;
  }
}
.contact__form__form__caution p a {
  color: #797979;
  text-decoration: underline;
}
.contact__form__form__caution label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  height: 28px;
  line-height: 28px;
  margin-top: 36px;
}
@media only screen and (max-width: 767px) {
  .contact__form__form__caution label {
    margin-top: 24px;
    height: 26px;
    line-height: 26px;
  }
}
.contact__form__form__caution label input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  display: block;
}
.contact__form__form__caution label input:checked + span:after {
  content: "";
  position: absolute;
  border-top: 1px solid #191920;
  border-right: 1px solid #191920;
  left: 8px;
  top: 35%;
  transform: translateY(-50%) rotate(135deg);
  width: 12px;
  height: 5px;
}
.contact__form__form__caution label span {
  display: block;
  padding-left: 44px;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.contact__form__form__caution label span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  width: 28px;
  height: 28px;
}
@media only screen and (max-width: 767px) {
  .contact__form__form__caution label span:before {
    width: 26px;
    height: 26px;
  }
}
.contact__form__form__caution .about__link {
  padding-left: 0px;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .contact__form__form__caution .about__link {
    margin-top: 40px;
  }
}
.contact__form__form__caution .about__link button {
  margin: auto;
  text-align: left;
}
.contact__form__form__caution__back {
  text-align: center;
  margin-top: 32px;
}
.contact__form__form__caution__back a {
  font-size: 14px;
  display: block;
  color: #797979;
  width: 100%;
  letter-spacing: 0.05em;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .contact__form__form__caution__back a {
    font-size: 12px;
  }
}

.contact__intro {
  margin-top: 110px;
}
@media only screen and (max-width: 767px) {
  .contact__intro {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .contact__intro .inner {
    width: 100%;
    padding: 0 25px;
  }
}
.contact__intro p {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 2;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contact__intro p {
    text-align: left;
    font-size: 15px;
  }
}
.contact__intro .common-title {
  margin-bottom: 46px;
}
.contact__intro .about__link {
  text-align: left;
  margin-top: 52px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .contact__intro .about__link {
    margin-top: 36px;
  }
}
.contact__intro .about__link a {
  margin: auto;
}

.contact__phone {
  overflow: hidden;
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  .contact__phone {
    margin-top: 70px;
  }
}
.contact__phone .inner-middle {
  position: relative;
  padding-top: 50px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .contact__phone .inner-middle {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.contact__phone .inner-middle:before {
  content: "";
  width: 200%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 130px;
  z-index: 0;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .contact__phone .inner-middle:before {
    left: 85px;
  }
}
.contact__phone__inner {
  position: relative;
  z-index: 1;
}
.contact__phone__row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.contact__phone__row > div {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .contact__phone__row > div {
    width: 100%;
  }
}
.contact__phone__row > div:nth-child(2) > strong {
  display: block;
  font-size: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid #dbdbdb;
}
@media only screen and (max-width: 767px) {
  .contact__phone__row > div:nth-child(2) > strong {
    margin-top: 42px;
    padding-bottom: 12px;
  }
}
.contact__phone__row > div:nth-child(2) > strong small,
.contact__phone__row > div:nth-child(2) > strong span {
  display: inline-block;
  vertical-align: middle;
  font-family: "Cinzel", serif;
}
.contact__phone__row > div:nth-child(2) > strong small {
  font-size: 22px;
  letter-spacing: 0.15em;
  margin-right: 20px;
}
.contact__phone__row > div:nth-child(2) > strong span {
  font-size: 40px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .contact__phone__row > div:nth-child(2) > strong span {
    font-size: 34px;
  }
}
.contact__phone__row > div:nth-child(2) > div {
  padding-top: 16px;
}
@media only screen and (max-width: 767px) {
  .contact__phone__row > div:nth-child(2) > div {
    padding-top: 18px;
  }
}
.contact__phone__row > div:nth-child(2) > div ul {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 0 20px;
}
@media only screen and (max-width: 767px) {
  .contact__phone__row > div:nth-child(2) > div ul {
    margin-top: 12px;
  }
}
.contact__phone__row > div:nth-child(2) > div ul li:nth-child(1) span {
  font-size: 14px;
  letter-spacing: 0.1em;
  display: block;
  text-align: center;
  width: 120px;
  background: #797979;
  color: #fff;
  padding: 9.5px 0;
}
@media only screen and (max-width: 767px) {
  .contact__phone__row > div:nth-child(2) > div ul li:nth-child(1) span {
    font-size: 12px;
  }
}
.contact__phone__row > div:nth-child(2) > div ul li:nth-child(2) > span {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .contact__phone__row > div:nth-child(2) > div ul li:nth-child(2) > span {
    font-size: 16px;
  }
}
.contact__phone__row > div:nth-child(2) > div ul li:nth-child(2) > span em {
  display: inline-block;
  font-size: 20px;
  font-family: "Cinzel", serif;
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  .contact__phone__row > div:nth-child(2) > div ul li:nth-child(2) > span em {
    font-size: 18px;
  }
}

.flow__description {
  margin-top: 110px;
}
@media only screen and (max-width: 767px) {
  .flow__description {
    margin-top: 70px;
  }
}
.flow__description .inner {
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  .flow__description .inner {
    width: 100%;
    margin-top: 42px;
  }
}
.flow__description .inner p {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.13333333;
}
@media only screen and (max-width: 767px) {
  .flow__description .inner p {
    line-height: 1.73333333;
  }
}
@media only screen and (max-width: 767px) {
  .flow__description__image {
    margin-left: -25px;
    width: calc(100% + 50px);
  }
}
.flow__description__image div img {
  margin-top: 50px;
  width: 100%;
  height: auto;
}

.flow__fee {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .flow__fee {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .flow__fee .inner {
    width: 100%;
  }
}
.flow__fee .inner > h3 {
  margin-top: 100px;
  font-size: 24px;
  line-height: 1.41666667;
  padding-bottom: 20px;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  border-bottom: 1px solid;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .flow__fee .inner > h3 {
    font-size: 20px;
    padding-bottom: 18px;
    margin-top: 62px;
  }
}
.flow__fee .inner > h3:first-child {
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  .flow__fee .inner > h3:first-child {
    margin-top: 40px;
  }
}
.flow__fee .inner p {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.13333333;
}
@media only screen and (max-width: 767px) {
  .flow__fee .inner p {
    line-height: 1.73333333;
  }
}
.flow__fee__box h4 {
  position: relative;
  margin-top: 64px;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .flow__fee__box h4 {
    margin-top: 42px;
  }
}
.flow__fee__box h4 img {
  position: absolute;
  left: 0;
  width: 16px;
  height: auto;
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .flow__fee__box h4 img {
    width: 12px;
  }
}
.flow__fee__box h4 span {
  font-size: 20px;
  letter-spacing: 0.15em;
  line-height: 1.5;
  display: block;
  padding-left: 32px;
}
@media only screen and (max-width: 767px) {
  .flow__fee__box h4 span {
    font-size: 18px;
    padding-left: 24px;
  }
}
.flow__fee__box p {
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .flow__fee__box p {
    margin-top: 22px;
  }
}
.flow__fee__box p:first-child {
  margin-top: 52px;
}
@media only screen and (max-width: 767px) {
  .flow__fee__box p:first-child {
    margin-top: 34px;
  }
}
.flow__fee__box > img {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .flow__fee__box > img {
    margin-top: 32px;
  }
}
.flow__fee__box small {
  display: block;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 18px;
}
@media only screen and (max-width: 767px) {
  .flow__fee__box small {
    margin-top: 12px;
  }
}

.news__category {
  margin-top: 110px;
}
@media only screen and (max-width: 767px) {
  .news__category {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .news__category .inner {
    width: 100%;
    padding: 0 25px;
  }
}
.news__category__box {
  background: #dbdbdb;
  padding: 30px 0 50px;
}
@media only screen and (max-width: 767px) {
  .news__category__box {
    padding: 25px;
  }
}
.news__category__box h2 {
  font-size: 60px;
  letter-spacing: 0.15em;
  color: #fff;
  text-align: center;
  font-family: "Cinzel", serif;
}
@media only screen and (max-width: 767px) {
  .news__category__box h2 {
    font-size: 36px;
  }
}
.news__category__box ul {
  max-width: 840px;
  margin: auto;
  margin-top: 24px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .news__category__box ul {
    margin-top: 12px;
  }
}
.news__category__box ul li {
  width: 19.047619%;
}
@media only screen and (max-width: 767px) {
  .news__category__box ul li {
    width: calc(50% - 2.5px);
    margin-top: 5px;
  }
  .news__category__box ul li:nth-child(1) {
    width: 100%;
    margin-top: 0;
  }
}
.news__category__box ul li a {
  display: block;
  text-align: center;
  font-size: 16px;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 0.1em;
  color: #797979;
  background: #fff;
  padding: 10px 0 9px;
  transition: background-color 0.3s, color 0.3s;
}
.news__category__box ul li a.on {
  background: #797979;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .news__category__box ul li a:hover {
    background: #797979;
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .news__category__box ul li a {
    font-size: 15px;
    padding: 9px 0 8px;
  }
}
.news__lists .inner-middle {
  max-width: 1180px;
}
@media only screen and (max-width: 767px) {
  .news__lists .inner-middle {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .news__lists .inner-middle .cases__contents {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .news__lists .inner-middle .cases__contents__row {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.news__lists .inner-middle .cases__contents__row a {
  width: 29.821429%;
  position: relative;
  margin-top: 90px;
}
@media only screen and (max-width: 767px) {
  .news__lists .inner-middle .cases__contents__row a {
    width: 50%;
    margin-top: 50px;
    margin-left: initial;
    margin-right: initial;
  }
}
@media only screen and (min-width: 768px) {
  .news__lists .inner-middle .cases__contents__row a:nth-child(1), .news__lists .inner-middle .cases__contents__row a:nth-child(2), .news__lists .inner-middle .cases__contents__row a:nth-child(3) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .news__lists .inner-middle .cases__contents__row a:nth-child(1), .news__lists .inner-middle .cases__contents__row a:nth-child(2) {
    margin-top: 0;
  }
}
.news__lists .inner-middle .cases__contents__row a > em {
  position: absolute;
  top: 0;
  right: 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 18px;
  display: block;
  letter-spacing: 0.05em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .news__lists .inner-middle .cases__contents__row a > em {
    display: none;
  }
}
.news__lists .inner-middle .cases__contents__row a figure {
  padding-right: 34px;
}
@media only screen and (max-width: 767px) {
  .news__lists .inner-middle .cases__contents__row a figure {
    padding-right: 0;
  }
  .news__lists .inner-middle .cases__contents__row a figure figcaption strong {
    font-size: 15px;
  }
  .news__lists .inner-middle .cases__contents__row a figure figcaption strong em {
    display: block;
    font-size: 12px;
    letter-spacing: 0.05em;
    font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
    margin-bottom: 4px;
  }
}

.news-single {
  margin-top: 110px;
}
@media only screen and (max-width: 767px) {
  .news-single {
    margin-top: 70px;
  }
}
.news-single__inner {
  background: #fff;
  padding: 76px 80px;
}
@media only screen and (max-width: 767px) {
  .news-single__inner {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .news-single__box {
    padding: 40px 30px 8px;
  }
}
.news-single__head ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 13px;
  border-bottom: 1px solid;
}
.news-single__head ul li:nth-child(1) {
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  width: 120px;
}
@media only screen and (max-width: 767px) {
  .news-single__head ul li:nth-child(1) {
    width: 88px;
    font-size: 14px;
  }
}
.news-single__head ul li:nth-child(2) {
  width: calc(100% - 120px);
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .news-single__head ul li:nth-child(2) {
    width: calc(100% - 88px);
    font-size: 14px;
  }
}
.news-single__head h1 {
  font-size: 34px;
  letter-spacing: 0.15em;
  line-height: 1.35294118;
  margin-top: 32px;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .news-single__head h1 {
    font-size: 24px;
  }
}
.news-single__body {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.13333333;
}
@media only screen and (max-width: 767px) {
  .news-single__body {
    line-height: 1.73333333;
  }
}
.news-single__body table {
  width: 100%;
  border-top: 1px solid #dbdbdb;
  margin-top: 72px;
  margin-bottom: 72px;
}
@media only screen and (max-width: 767px) {
  .news-single__body table {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #dbdbdb;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .news-single__body table tr {
    display: block;
    width: 100%;
  }
}
.news-single__body table th,
.news-single__body table td {
  padding: 30px 0;
  border-bottom: 1px solid #dbdbdb;
}
@media only screen and (max-width: 767px) {
  .news-single__body table th,
  .news-single__body table td {
    padding: 0;
    display: block;
    width: 100%;
    border: none;
  }
}
.news-single__body table td {
  font-size: 15px;
  line-height: 1.73333333;
  letter-spacing: 0.05em;
  width: auto !important;
}
@media only screen and (max-width: 767px) {
  .news-single__body table td {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.85714286;
  }
}
.news-single__body table th,
.news-single__body table td:nth-child(1) {
  font-size: 18px;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 0.05em;
  line-height: 1.44444444;
  padding-left: 38px;
  padding-right: 40px;
}
@media only screen and (max-width: 767px) {
  .news-single__body table th,
  .news-single__body table td:nth-child(1) {
    font-size: 16px;
    line-height: 1.5;
    padding: 0;
    padding-top: 20px;
    border-top: 1px solid #dbdbdb;
  }
}
@media only screen and (max-width: 767px) {
  .news-single__body table th,
  .news-single__body table td:nth-child(1) {
    display: block;
    width: 100%;
  }
}
.news-single__body table td:nth-child(2),
.news-single__body table td:nth-child(3),
.news-single__body table td:nth-child(4),
.news-single__body table td:nth-child(5),
.news-single__body table td:nth-child(6),
.news-single__body table td:nth-child(7),
.news-single__body table td:nth-child(8) {
  padding-right: 38px;
}
@media only screen and (max-width: 767px) {
  .news-single__body table td:nth-child(2),
  .news-single__body table td:nth-child(3),
  .news-single__body table td:nth-child(4),
  .news-single__body table td:nth-child(5),
  .news-single__body table td:nth-child(6),
  .news-single__body table td:nth-child(7),
  .news-single__body table td:nth-child(8) {
    padding: 0;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .news-single__body table td:nth-child(2),
  .news-single__body table td:nth-child(3),
  .news-single__body table td:nth-child(4),
  .news-single__body table td:nth-child(5),
  .news-single__body table td:nth-child(6),
  .news-single__body table td:nth-child(7),
  .news-single__body table td:nth-child(8) {
    display: block;
    width: 100%;
  }
}
.news-single__body #toc_container {
  background: #f4f4f4;
  padding: 42px 50px;
}
@media only screen and (max-width: 767px) {
  .news-single__body #toc_container {
    padding: 22px 30px;
  }
}
.news-single__body #toc_container .toc_list {
  font-size: 14px;
  letter-spacing: 0.025em;
  font-size: 15px;
}
.news-single__body #toc_container .toc_list > li {
  font-size: 15px;
}
.news-single__body #toc_container .toc_list > li:nth-child(1) > a {
  font-weight: bold;
  text-decoration: underline;
}
.news-single__body #toc_container .toc_list > li:nth-child(1) > a:before {
  content: "1. ";
}
.news-single__body #toc_container .toc_list > li:nth-child(2) > a {
  font-weight: bold;
  text-decoration: underline;
}
.news-single__body #toc_container .toc_list > li:nth-child(2) > a:before {
  content: "2. ";
}
.news-single__body #toc_container .toc_list > li:nth-child(3) > a {
  font-weight: bold;
  text-decoration: underline;
}
.news-single__body #toc_container .toc_list > li:nth-child(3) > a:before {
  content: "3. ";
}
.news-single__body #toc_container .toc_list > li:nth-child(4) > a {
  font-weight: bold;
  text-decoration: underline;
}
.news-single__body #toc_container .toc_list > li:nth-child(4) > a:before {
  content: "4. ";
}
.news-single__body #toc_container .toc_list > li:nth-child(5) > a {
  font-weight: bold;
  text-decoration: underline;
}
.news-single__body #toc_container .toc_list > li:nth-child(5) > a:before {
  content: "5. ";
}
.news-single__body #toc_container .toc_list > li:nth-child(6) > a {
  font-weight: bold;
  text-decoration: underline;
}
.news-single__body #toc_container .toc_list > li:nth-child(6) > a:before {
  content: "6. ";
}
.news-single__body #toc_container .toc_list > li:nth-child(7) > a {
  font-weight: bold;
  text-decoration: underline;
}
.news-single__body #toc_container .toc_list > li:nth-child(7) > a:before {
  content: "7. ";
}
.news-single__body #toc_container .toc_list > li:nth-child(8) > a {
  font-weight: bold;
  text-decoration: underline;
}
.news-single__body #toc_container .toc_list > li:nth-child(8) > a:before {
  content: "8. ";
}
.news-single__body #toc_container .toc_list > li:nth-child(9) > a {
  font-weight: bold;
  text-decoration: underline;
}
.news-single__body #toc_container .toc_list > li:nth-child(9) > a:before {
  content: "9. ";
}
.news-single__body #toc_container .toc_list > li > ul > li:nth-child(1) > a {
  font-weight: normal;
  text-decoration: none;
}
.news-single__body #toc_container .toc_list > li > ul > li:nth-child(1) > a:before {
  content: "a. ";
}
.news-single__body #toc_container .toc_list > li > ul > li:nth-child(2) > a {
  font-weight: normal;
  text-decoration: none;
}
.news-single__body #toc_container .toc_list > li > ul > li:nth-child(2) > a:before {
  content: "b. ";
}
.news-single__body #toc_container .toc_list > li > ul > li:nth-child(3) > a {
  font-weight: normal;
  text-decoration: none;
}
.news-single__body #toc_container .toc_list > li > ul > li:nth-child(3) > a:before {
  content: "c. ";
}
.news-single__body #toc_container .toc_list > li > ul > li:nth-child(4) > a {
  font-weight: normal;
  text-decoration: none;
}
.news-single__body #toc_container .toc_list > li > ul > li:nth-child(4) > a:before {
  content: "d. ";
}
.news-single__body #toc_container .toc_list > li > ul > li:nth-child(5) > a {
  font-weight: normal;
  text-decoration: none;
}
.news-single__body #toc_container .toc_list > li > ul > li:nth-child(5) > a:before {
  content: "e. ";
}
.news-single__body #toc_container .toc_list > li > ul > li > ul > li {
  padding-left: 10px;
}
.news-single__body #toc_container .toc_list > li > ul > li > ul > li > a {
  font-weight: normal;
  text-decoration: none;
}
.news-single__body #toc_container .toc_list > li > ul > li > ul > li > a:before {
  content: "・";
}
.news-single__body h2 {
  font-size: 32px;
  letter-spacing: 0.15em;
  line-height: 1.5625;
  padding-left: 50px;
  position: relative;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  margin: 112px 0 72px;
}
@media only screen and (max-width: 767px) {
  .news-single__body h2 {
    font-size: 24px;
    padding-left: 36px;
    margin: 62px 0 32px;
  }
}
.news-single__body h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 2px;
  background: rgb(16, 53, 98);
  background: linear-gradient(45deg, rgb(16, 53, 98) 0%, rgb(59, 140, 214) 100%);
}
@media only screen and (max-width: 767px) {
  .news-single__body h2:before {
    width: 20px;
    bottom: auto;
    top: 17px;
  }
}
.news-single__body h3 {
  font-size: 24px;
  letter-spacing: 0.15em;
  line-height: 1.41666667;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  border-bottom: 1px solid;
  padding-bottom: 20px;
  margin: 92px 0 52px;
}
@media only screen and (max-width: 767px) {
  .news-single__body h3 {
    font-size: 20px;
    line-height: 1.5;
    margin: 62px 0 32px;
  }
}
.news-single__body h4 {
  font-size: 20px;
  letter-spacing: 0.15em;
  line-height: 1.5;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  position: relative;
  padding-left: 32px;
  margin: 62px 0 32px;
}
@media only screen and (max-width: 767px) {
  .news-single__body h4 {
    font-size: 18px;
    margin: 42px 0 22px;
    padding-left: 24px;
  }
}
.news-single__body h4:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 24px;
  background-image: url(../images/icon/ico_h4.svg);
  background-size: 100% 100%;
}
@media only screen and (max-width: 767px) {
  .news-single__body h4:before {
    width: 12px;
    height: 18px;
  }
}
.news-single__body a {
  font-weight: bold;
  text-decoration: underline;
}
.news-single__body > p {
  margin: 50px 0;
}
@media only screen and (max-width: 767px) {
  .news-single__body > p {
    margin: 32px 0;
  }
}
.news-single__body > p > strong {
  background: linear-gradient(transparent 60%, #dbdbdb 0%);
}
.news-single__body img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .news-single__body img {
    margin-top: 40px;
  }
}
.news-single__body blockquote {
  font-size: 15px;
  line-height: 2.13333333;
  padding: 42px 50px;
  background: #f4f4f4;
}
@media only screen and (max-width: 767px) {
  .news-single__body blockquote {
    padding: 22px 30px;
    line-height: 1.73333333;
  }
}
.news-single__body blockquote strong {
  background: linear-gradient(transparent 60%, #dbdbdb 0%);
}
.news-single__pager {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .news-single__pager {
    margin-top: 50px;
    margin-bottom: 80px;
  }
}
.news-single__pager ul {
  max-width: 492px;
  margin: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.news-single__pager ul li:nth-child(1), .news-single__pager ul li:nth-child(3) {
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .news-single__pager ul li:nth-child(1), .news-single__pager ul li:nth-child(3) {
    font-size: 16px;
  }
}
.news-single__pager ul li:nth-child(1) span,
.news-single__pager ul li:nth-child(1) svg, .news-single__pager ul li:nth-child(3) span,
.news-single__pager ul li:nth-child(3) svg {
  display: inline-block;
  vertical-align: middle;
}
.news-single__pager ul li:nth-child(2) {
  font-family: "Cinzel", serif;
  font-size: 26px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .news-single__pager ul li:nth-child(2) {
    font-size: 20px;
  }
}
.news-single__pager ul li:nth-child(1) span {
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  .news-single__pager ul li:nth-child(1) span {
    margin-left: 4px;
  }
}
.news-single__pager ul li:nth-child(3) span {
  margin-right: 8px;
}
@media only screen and (max-width: 767px) {
  .news-single__pager ul li:nth-child(3) span {
    margin-right: 4px;
  }
}

.scheme__ma {
  margin-top: 110px;
}
@media only screen and (max-width: 767px) {
  .scheme__ma {
    margin-top: 70px;
  }
}
.scheme__ma.mt {
  margin-top: 170px;
}
@media only screen and (max-width: 767px) {
  .scheme__ma.mt {
    margin-top: 120px;
  }
}
@media only screen and (min-width: 768px) {
  .scheme__ma__inner {
    padding-right: 40px;
  }
}
.scheme__ma__row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
}
.scheme__ma__row > div:nth-child(1) {
  width: 57.692308%;
}
@media only screen and (max-width: 767px) {
  .scheme__ma__row > div:nth-child(1) {
    width: 100%;
  }
}
.scheme__ma__row > div:nth-child(1) .common-title {
  position: relative;
}
.scheme__ma__row > div:nth-child(1) .common-title > em {
  position: absolute;
  right: -18px;
  top: -20px;
  font-family: "Cinzel", serif;
  font-size: 180px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .scheme__ma__row > div:nth-child(1) .common-title > em {
    font-size: 120px;
    top: -10px;
  }
}
.scheme__ma__row > div:nth-child(1) .common-title > h2 {
  position: relative;
  z-index: 1;
}
.scheme__ma__row > div:nth-child(1) img {
  display: block;
}
@media only screen and (max-width: 767px) {
  .scheme__ma__row > div:nth-child(1) img {
    margin-top: 48px;
  }
}
.scheme__ma__row > div:nth-child(1) p {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.13333333;
}
@media only screen and (min-width: 768px) {
  .scheme__ma__row > div:nth-child(1) p {
    padding-left: 40px;
    margin-top: 62px;
  }
}
@media only screen and (max-width: 767px) {
  .scheme__ma__row > div:nth-child(1) p {
    line-height: 1.73333333;
    margin-top: 30px;
  }
}
.scheme__ma__row > div:nth-child(2) {
  width: 34.615385%;
}
@media only screen and (max-width: 767px) {
  .scheme__ma__row > div:nth-child(2) {
    width: 100%;
  }
}
.scheme__pmi {
  margin-top: 120px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .scheme__pmi {
    margin-top: 60px;
  }
}
.scheme__pmi .inner-middle {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .scheme__pmi .inner-middle {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.scheme__pmi .inner-middle:before {
  content: "";
  position: absolute;
  left: 160px;
  top: 0;
  width: 200%;
  background: #fff;
  z-index: 0;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .scheme__pmi .inner-middle:before {
    left: 75px;
  }
}
.scheme__pmi__inner {
  position: relative;
  padding-right: 40px;
}
@media only screen and (max-width: 767px) {
  .scheme__pmi__inner {
    padding-right: 0;
  }
}
.scheme__pmi__row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
}
.scheme__pmi__row > div:nth-child(1) {
  width: 34.615385%;
}
@media only screen and (max-width: 767px) {
  .scheme__pmi__row > div:nth-child(1) {
    width: 100%;
  }
}
.scheme__pmi__row > div:nth-child(2) {
  width: 57.692308%;
}
@media only screen and (max-width: 767px) {
  .scheme__pmi__row > div:nth-child(2) {
    width: 100%;
  }
}
.scheme__pmi__row > div:nth-child(2) .common-title {
  position: relative;
}
.scheme__pmi__row > div:nth-child(2) .common-title > em {
  position: absolute;
  right: -18px;
  top: -20px;
  font-family: "Cinzel", serif;
  font-size: 180px;
  letter-spacing: 0.05em;
  color: #f4f4f4;
}
@media only screen and (max-width: 767px) {
  .scheme__pmi__row > div:nth-child(2) .common-title > em {
    font-size: 120px;
    top: -10px;
  }
}
.scheme__pmi__row > div:nth-child(2) .common-title > h2 {
  position: relative;
  z-index: 1;
}
.scheme__pmi__row > div:nth-child(2) img {
  display: block;
}
@media only screen and (max-width: 767px) {
  .scheme__pmi__row > div:nth-child(2) img {
    margin-top: 48px;
  }
}
.scheme__pmi__row > div:nth-child(2) p {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.13333333;
}
@media only screen and (min-width: 768px) {
  .scheme__pmi__row > div:nth-child(2) p {
    padding-left: 40px;
    margin-top: 62px;
  }
}
@media only screen and (max-width: 767px) {
  .scheme__pmi__row > div:nth-child(2) p {
    line-height: 1.73333333;
    margin-top: 30px;
  }
}

.strength__advisory {
  padding-top: 140px;
}
@media only screen and (max-width: 767px) {
  .strength__advisory {
    padding-top: 90px;
  }
}
.strength__advisory__inner {
  padding-left: 40px;
}
@media only screen and (max-width: 767px) {
  .strength__advisory__inner {
    padding: 0;
  }
}
.strength__advisory__inner figure {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
}
.strength__advisory__inner figure > div {
  width: 32.692308%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .strength__advisory__inner figure > div {
    width: 100%;
    z-index: 0;
  }
}
.strength__advisory__inner figure > div span {
  position: absolute;
  color: #dbdbdb;
  font-family: "Cinzel", serif;
  z-index: 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  left: -98px;
  top: -25px;
  z-index: 0;
}
@media only screen and (min-width: 768px) {
  .strength__advisory__inner figure > div span {
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 767px) {
  .strength__advisory__inner figure > div span {
    left: auto;
    right: 0;
    top: 0;
  }
}
.strength__advisory__inner figure > div span em,
.strength__advisory__inner figure > div span strong {
  display: block;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .strength__advisory__inner figure > div span em,
  .strength__advisory__inner figure > div span strong {
    text-align: left;
  }
}
.strength__advisory__inner figure > div span em {
  font-size: 40px;
  letter-spacing: 0.15em;
  position: relative;
  top: -8px;
}
@media only screen and (max-width: 767px) {
  .strength__advisory__inner figure > div span em {
    font-size: 24px;
    top: 0;
  }
}
.strength__advisory__inner figure > div span strong {
  font-size: 120px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .strength__advisory__inner figure > div span strong {
    font-size: 80px;
    top: -6px;
    position: relative;
  }
}
.strength__advisory__inner figure > div div {
  background-size: cover;
  background-position: center;
  padding-top: 125.588235%;
}
@media only screen and (max-width: 767px) {
  .strength__advisory__inner figure > div div {
    display: none;
  }
}
.strength__advisory__inner figure figcaption {
  width: 59.615385%;
}
@media only screen and (max-width: 767px) {
  .strength__advisory__inner figure figcaption {
    width: 100%;
    position: relative;
  }
}
.strength__advisory__inner figure figcaption img {
  margin-top: 50px;
}
.strength__advisory__inner figure figcaption p {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.13333333;
  margin-top: 72px;
}
@media only screen and (max-width: 767px) {
  .strength__advisory__inner figure figcaption p {
    margin-top: 32px;
    line-height: 1.73333333;
  }
}

.strength__consulting {
  padding-top: 120px;
}
@media only screen and (max-width: 767px) {
  .strength__consulting {
    padding-top: 90px;
  }
}
.strength__consulting .inner-middle {
  position: relative;
}
.strength__consulting .inner-middle > span {
  position: absolute;
  color: #dbdbdb;
  font-family: "Cinzel", serif;
  z-index: 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  left: -98px;
  top: -25px;
  z-index: 0;
}
@media only screen and (min-width: 768px) {
  .strength__consulting .inner-middle > span {
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 767px) {
  .strength__consulting .inner-middle > span {
    left: auto;
    right: 25px;
    top: 0;
  }
}
.strength__consulting .inner-middle > span em,
.strength__consulting .inner-middle > span strong {
  display: block;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .strength__consulting .inner-middle > span em,
  .strength__consulting .inner-middle > span strong {
    text-align: left;
  }
}
.strength__consulting .inner-middle > span em {
  font-size: 40px;
  letter-spacing: 0.15em;
  position: relative;
  top: -8px;
}
@media only screen and (max-width: 767px) {
  .strength__consulting .inner-middle > span em {
    font-size: 24px;
    top: 0;
  }
}
.strength__consulting .inner-middle > span strong {
  font-size: 120px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .strength__consulting .inner-middle > span strong {
    font-size: 80px;
    top: -6px;
    position: relative;
  }
}
.strength__consulting__row {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .strength__consulting__image {
    position: absolute;
    left: 3%;
    top: 69px;
    width: 42.592593%;
  }
}
@media only screen and (max-width: 767px) {
  .strength__consulting__image {
    width: 100%;
  }
}
.strength__consulting__inner {
  width: 53.703704%;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 767px) {
  .strength__consulting__inner {
    width: 100%;
  }
}
.strength__consulting__box {
  margin-top: 72px;
  padding-left: 60px;
}
@media only screen and (max-width: 767px) {
  .strength__consulting__box {
    margin: 0;
    padding: 0;
    margin-top: 40px;
  }
}
.strength__consulting__box p {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.13333333;
}
@media only screen and (max-width: 767px) {
  .strength__consulting__box p {
    line-height: 1.73333333;
    margin-top: 40px;
  }
}
.strength__consulting__box .about__link {
  margin: 0;
  margin-top: 50px;
  padding-left: 0;
}

.strength__quality {
  padding-top: 140px;
  overflow: hidden;
  position: relative;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .strength__quality {
    padding-top: 90px;
    padding-bottom: 60px;
    overflow: visible;
  }
}
.strength__quality:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 696px;
}
@media only screen and (max-width: 767px) {
  .strength__quality:before {
    height: 66.9%;
  }
}
.strength__quality .inner-middle {
  position: relative;
  z-index: 1;
}
.strength__quality .inner-middle > span {
  position: absolute;
  color: #dbdbdb;
  font-family: "Cinzel", serif;
  z-index: 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  right: -24px;
  top: 0px;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .strength__quality .inner-middle > span {
    left: auto;
    right: 30px;
    top: -23px;
  }
}
.strength__quality .inner-middle > span em,
.strength__quality .inner-middle > span strong {
  display: block;
}
.strength__quality .inner-middle > span em {
  font-size: 40px;
  letter-spacing: 0.15em;
  position: relative;
  top: 10px;
}
@media only screen and (max-width: 767px) {
  .strength__quality .inner-middle > span em {
    font-size: 24px;
  }
}
.strength__quality .inner-middle > span strong {
  font-size: 120px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .strength__quality .inner-middle > span strong {
    font-size: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .strength__quality .inner {
    width: 100%;
  }
}
.strength__quality .inner p {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.13333333;
  margin-top: 72px;
}
@media only screen and (max-width: 767px) {
  .strength__quality .inner p {
    margin-top: 44px;
    line-height: 1.73333333;
  }
}
.strength__quality__row > div div {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.strength__quality__row > div div img {
  display: block;
  width: 42%;
  margin-top: 72px;
}
@media only screen and (max-width: 767px) {
  .strength__quality__row > div div img {
    width: 100%;
    margin-top: 60px;
  }
}

.strength__service {
  padding-top: 110px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .strength__service {
    padding-top: 70px;
  }
}
.strength__service__whole .inner-middle {
  position: relative;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .strength__service__whole .inner-middle {
    padding-bottom: 60px;
  }
}
.strength__service__whole .inner-middle:before {
  content: "";
  position: absolute;
  width: 200%;
  background-color: #fff;
  left: 190px;
  bottom: 0;
  height: 703px;
}
@media only screen and (max-width: 767px) {
  .strength__service__whole .inner-middle:before {
    left: 20%;
    height: 94.5%;
  }
}
.strength__service__inner {
  position: relative;
  z-index: 1;
}
.strength__service .inner {
  padding-top: 80px;
}
@media only screen and (max-width: 767px) {
  .strength__service .inner {
    width: 100%;
    padding-top: 42px;
  }
}
.strength__service .inner > p {
  position: relative;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.13333333;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .strength__service .inner > p {
    line-height: 1.73333333;
  }
}
.strength__service .inner > p > em {
  position: relative;
  z-index: 1;
}
.strength__service .inner > p span {
  position: absolute;
  color: #dbdbdb;
  font-family: "Cinzel", serif;
  z-index: 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  right: -98px;
  top: -63px;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .strength__service .inner > p span {
    right: -8px;
    top: -74px;
  }
}
.strength__service .inner > p span em,
.strength__service .inner > p span strong {
  display: block;
}
.strength__service .inner > p span em {
  font-size: 40px;
  letter-spacing: 0.15em;
  position: relative;
  top: 10px;
}
@media only screen and (max-width: 767px) {
  .strength__service .inner > p span em {
    font-size: 24px;
  }
}
.strength__service .inner > p span strong {
  font-size: 120px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .strength__service .inner > p span strong {
    font-size: 80px;
  }
}
.strength__service .inner blockquote {
  display: block;
  border: 1px solid #191920;
  padding: 52px 60px;
  margin-top: 52px;
}
@media only screen and (max-width: 767px) {
  .strength__service .inner blockquote {
    margin-top: 48px;
    padding: 40px 30px;
  }
}
.strength__service .inner blockquote h3 {
  font-size: 24px;
  letter-spacing: 0.15em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  padding-bottom: 22px;
  border-bottom: 1px solid #191920;
}
@media only screen and (max-width: 767px) {
  .strength__service .inner blockquote h3 {
    font-size: 20px;
  }
}
.strength__service .inner blockquote p {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.13333333;
  padding-top: 42px;
}
@media only screen and (max-width: 767px) {
  .strength__service .inner blockquote p {
    padding-top: 38px;
  }
}

.about {
  margin-top: 110px;
  overflow: hidden;
  padding-bottom: 110px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about {
    margin-top: 80px;
    padding-bottom: 60px;
  }
}
.about .inner-middle:before {
  content: "";
  position: absolute;
  left: 190px;
  bottom: -110px;
  width: 400%;
  background: #fff;
  z-index: 0;
  height: 396px;
}
@media only screen and (max-width: 767px) {
  .about .inner-middle:before {
    left: 76px;
    height: 673px;
  }
}
.about__whole {
  position: relative;
}
.about__whole .inner-middle {
  position: relative;
}
.about__image {
  position: absolute;
  left: calc(50% + 140px);
  top: 0;
  width: 500px;
}
@media only screen and (max-width: 767px) {
  .about__image {
    display: none;
  }
}
.about__title {
  position: relative;
  z-index: 1;
}
.about__title h3 > small {
  padding-left: 50px;
  position: relative;
  display: block;
}
@media only screen and (max-width: 767px) {
  .about__title h3 > small {
    padding-left: 32px;
  }
}
.about__title h3 > small:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: auto;
  width: 30px;
  height: 2px;
  background: rgb(16, 53, 98);
  background: linear-gradient(45deg, rgb(16, 53, 98) 0%, rgb(59, 140, 214) 100%);
}
@media only screen and (max-width: 767px) {
  .about__title h3 > small:before {
    width: 20px;
  }
}
.about__title h3 > small span {
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .about__title h3 > small span {
    font-size: 16px;
  }
}
.about__title h3 strong {
  display: block;
  font-size: 32px;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 0.15em;
  line-height: 1.75;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .about__title h3 strong {
    font-size: 24px;
    margin-top: 24px;
  }
}
.about__text {
  padding-left: 40px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .about__text {
    padding: 0;
    margin-top: 30px;
  }
}
.about__text p {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 2;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .about__text p {
    font-size: 16px;
    line-height: 1.875;
    margin-top: 30px;
  }
  .about__text p br {
    display: none;
  }
}
.about__link {
  padding-left: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .about__link {
    padding-left: 0;
    margin-top: 38px;
  }
}
.about__link a,
.about__link button {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 22px 26px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .about__link a:hover:before,
  .about__link button:hover:before {
    opacity: 1;
  }
  .about__link a:hover:after,
  .about__link button:hover:after {
    opacity: 0;
  }
  .about__link a:hover span,
  .about__link button:hover span {
    color: #fff;
  }
  .about__link a:hover svg,
  .about__link button:hover svg {
    right: 22px;
  }
  .about__link a:hover svg path,
  .about__link button:hover svg path {
    stroke: #fff;
  }
}
.about__link a:before,
.about__link button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(16, 53, 98);
  background: linear-gradient(45deg, rgb(16, 53, 98) 0%, rgb(59, 140, 214) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.about__link a:after,
.about__link button:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  display: block;
  border: 1px solid #191920;
  opacity: 1;
  transition: opacity 0.3s;
}
.about__link a span,
.about__link button span {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.about__link a svg,
.about__link button svg {
  position: absolute;
  right: 30px;
  left: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 38px;
  height: 6px;
  transition: right 0.3s;
}
.about__link a svg path,
.about__link button svg path {
  transition: stroke 0.3s;
}

.cases {
  overflow: hidden;
  position: relative;
  padding-top: 110px;
}
@media only screen and (max-width: 767px) {
  .cases {
    padding: 0;
    margin-top: 70px;
    padding-top: 64px;
  }
}
.cases:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 93.75%;
  height: 460px;
  background-color: #fff;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .cases:before {
    width: 100%;
    height: 240px;
  }
}
.cases__whole .inner-middle {
  padding-left: 130px;
}
@media only screen and (max-width: 767px) {
  .cases__whole .inner-middle {
    padding: 0;
  }
}
.cases__title {
  padding-left: 15px;
}
@media only screen and (max-width: 767px) {
  .cases__title {
    padding: 0 25px;
  }
}
.cases__title h3 {
  position: relative;
}
.cases__title h3 > em {
  position: absolute;
  font-size: 140px;
  letter-spacing: 0.15em;
  left: -5.5%;
  font-family: "Cinzel", serif;
  top: 50%;
  transform: translateY(-50%);
  color: #f4f4f4;
}
@media only screen and (max-width: 767px) {
  .cases__title h3 > em {
    font-size: 70px;
  }
}
.cases__title h3 > span {
  position: relative;
  font-size: 32px;
  letter-spacing: 0.15em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .cases__title h3 > span {
    font-size: 24px;
  }
}
.cases__title h3 a {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cases__title h3 a span,
.cases__title h3 a svg {
  display: inline-block;
  vertical-align: middle;
}
.cases__title h3 a span {
  font-size: 18px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.1em;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .cases__title h3 a span {
    font-size: 16px;
    margin-right: 10px;
  }
}
.cases__title h3 a svg {
  width: 4px;
  height: 8px;
}
.cases__contents {
  position: relative;
  margin-top: 90px;
}
@media only screen and (max-width: 767px) {
  .cases__contents {
    margin-top: 50px;
  }
}
.cases__contents .slick-list {
  overflow: visible;
}
@media only screen and (min-width: 768px) {
  .cases__contents__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .cases__contents__row:before {
    content: "";
    width: 30.612245%;
    display: block;
    order: 1;
  }
}
@media only screen and (max-width: 767px) {
  .cases__contents__row {
    width: calc(48% - 20px);
    margin: auto;
  }
}
.cases__contents__row a {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cases__contents__row a {
    width: 30.612245%;
  }
  .cases__contents__row a:hover figure > div div {
    transform: scale(1.05);
  }
}
@media only screen and (max-width: 767px) {
  .cases__contents__row a {
    width: calc(100% - 20px);
    margin: auto;
    padding: 0 10px;
  }
}
.cases__contents__row a figure > div {
  overflow: hidden;
}
.cases__contents__row a figure > div div {
  padding-top: 133.333333%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.5s;
}
.cases__contents__row a figure figcaption strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.55555556;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  padding: 26px 0;
}
@media only screen and (max-width: 767px) {
  .cases__contents__row a figure figcaption strong {
    font-size: 16px;
    padding: 20px 0;
  }
}
.cases__contents__row a figure figcaption small {
  display: block;
  text-align: right;
  position: relative;
}
.cases__contents__row a figure figcaption small:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #dbdbdb;
  width: 100%;
  height: 1px;
}
.cases__contents__row a figure figcaption small span {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-family: "Cinzel", serif;
  position: relative;
  display: inline-block;
  background: #f4f4f4;
  padding-left: 14px;
}
@media only screen and (max-width: 767px) {
  .cases__contents__row a figure figcaption small span {
    font-size: 15px;
    padding-left: 20px;
  }
}
.cases__pager .wp-pagenavi {
  text-align: center;
  margin-top: 90px;
  font-family: "Cinzel", serif;
  font-size: 26px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .cases__pager .wp-pagenavi {
    font-size: 20px;
    margin-top: 60px;
    margin-left: -25px;
    width: calc(100% + 50px);
  }
}
.cases__pager .wp-pagenavi > span,
.cases__pager .wp-pagenavi a {
  display: inline-block;
  vertical-align: middle;
}
.cases__pager .wp-pagenavi > span {
  text-decoration: underline;
  margin: 0 35px;
}
@media only screen and (max-width: 767px) {
  .cases__pager .wp-pagenavi > span {
    margin: 0 17px;
  }
}
.cases__pager .wp-pagenavi > .page {
  margin: 0 35px;
}
@media only screen and (max-width: 767px) {
  .cases__pager .wp-pagenavi > .page {
    margin: 0 17px;
  }
}
.cases__pager .wp-pagenavi > .last {
  margin-left: 50px;
  position: relative;
  padding-right: 25px;
}
@media only screen and (max-width: 767px) {
  .cases__pager .wp-pagenavi > .last {
    margin-left: 32px;
  }
}
.cases__pager .wp-pagenavi > .last:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-image: url(../images/icon/ico_next.svg);
  background-size: 100% 100%;
}
@media only screen and (max-width: 767px) {
  .cases__pager .wp-pagenavi > .last:before {
    width: 9px;
    height: 8px;
  }
}
.cases__pager .wp-pagenavi > .first {
  margin-right: 50px;
  position: relative;
  padding-left: 25px;
}
@media only screen and (max-width: 767px) {
  .cases__pager .wp-pagenavi > .first {
    margin-right: 32px;
  }
}
.cases__pager .wp-pagenavi > .first:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-image: url(../images/icon/ico_prev.svg);
  background-size: 100% 100%;
}
@media only screen and (max-width: 767px) {
  .cases__pager .wp-pagenavi > .first:before {
    width: 9px;
    height: 8px;
  }
}
.cases__pager .wp-pagenavi > .last,
.cases__pager .wp-pagenavi > .first {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .cases__pager .wp-pagenavi > .last,
  .cases__pager .wp-pagenavi > .first {
    font-size: 16px;
  }
}

body.onload .kv__catch:before {
  height: 100px;
}
@media only screen and (max-width: 767px) {
  body.onload .kv__catch:before {
    height: 80px;
  }
}

.kv {
  width: 100%;
  position: relative;
  height: 100vh;
}
@media only screen and (max-width: 767px) {
  .kv {
    height: 100svh;
  }
}
.kv__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/top/main.jpg);
  background-size: cover;
  background-position: center;
}
.kv__catch {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  width: 100%;
}
.kv__catch:before {
  content: "";
  width: 1px;
  height: 0px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 50px);
  transition: height 0.5s;
}
@media only screen and (max-width: 767px) {
  .kv__catch:before {
    top: calc(100% + 30px);
  }
}
.kv__catch h2 strong,
.kv__catch h2 small {
  display: block;
  text-align: center;
}
.kv__catch h2 strong {
  font-size: 50px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.15em;
  line-height: 1.4;
}
.kv__catch h2 strong > em.on > span span {
  transform: translateY(0%);
}
.kv__catch h2 strong > em > span {
  overflow: hidden;
  display: inline-table;
}
.kv__catch h2 strong > em > span span {
  display: block;
  transform: translateY(100%);
  transition: transform 0.6s;
}
.kv__catch h2 small {
  font-size: 20px;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 0.15em;
  margin-top: 18px;
}
@media only screen and (max-width: 767px) {
  .kv__catch h2 small {
    font-size: 13px;
    margin-top: 20px;
  }
}
.kv__catch h2 small > span {
  overflow: hidden;
  display: inline-table;
}
.kv__catch h2 small > span span {
  display: block;
  transform: translateY(100%);
  transition: transform 0.6s;
}
.kv__catch h2 small.on > span span {
  transform: translateY(0%);
}
@media only screen and (max-width: 767px) {
  .kv__catch h2 em {
    display: block;
    text-align: center;
    letter-spacing: 0.15em;
  }
  .kv__catch h2 em:nth-child(1) {
    font-size: 40px;
  }
  .kv__catch h2 em:nth-child(2) {
    font-size: 40px;
  }
  .kv__catch h2 em:nth-child(4) {
    font-size: 28px;
  }
  .kv__catch h2 em:nth-child(5) {
    font-size: 35px;
  }
}
.kv--sub {
  height: 488px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .kv--sub {
    height: 380px;
  }
}
.kv--sub__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.kv--sub__image--about {
  background-image: url(../images/about/main.jpg);
}
@media only screen and (max-width: 767px) {
  .kv--sub__image--about {
    background-image: url(../images/about/main_sp.jpg);
  }
}
.kv--sub__image--strength {
  background-image: url(../images/strength/main_pc.jpg);
}
@media only screen and (max-width: 767px) {
  .kv--sub__image--strength {
    background-image: url(../images/strength/main_sp.jpg);
  }
}
.kv--sub__image--scheme {
  background-image: url(../images/scheme/main_pc.jpg);
}
@media only screen and (max-width: 767px) {
  .kv--sub__image--scheme {
    background-image: url(../images/scheme/main_sp.jpg);
  }
}
.kv--sub__image--flow {
  background-image: url(../images/flow/main_pc.jpg);
}
@media only screen and (max-width: 767px) {
  .kv--sub__image--flow {
    background-image: url(../images/flow/main_sp.jpg);
  }
}
.kv--sub__image--contact {
  background-image: url(../images/contact/main_pc.jpg);
}
@media only screen and (max-width: 767px) {
  .kv--sub__image--contact {
    background-image: url(../images/contact/main_sp.jpg);
  }
}
.kv--sub__image--news {
  background-image: url(../images/news/main_pc.jpg);
}
@media only screen and (max-width: 767px) {
  .kv--sub__image--news {
    background-image: url(../images/news/main_sp.jpg);
  }
}
.kv--sub__catch {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.kv--sub__catch:before {
  content: "";
  width: 1px;
  height: 60px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 50px);
  transition: height 0.5s;
}
@media only screen and (max-width: 767px) {
  .kv--sub__catch:before {
    top: calc(100% + 30px);
  }
}
.kv--sub__catch h2 {
  text-align: center;
}
.kv--sub__catch h2 span,
.kv--sub__catch h2 small {
  display: block;
  color: #fff;
}
.kv--sub__catch h2 span {
  font-size: 50px;
  letter-spacing: 0.15em;
  font-family: "Cinzel", serif;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .kv--sub__catch h2 span {
    font-size: 36px;
    line-height: 1.11111111;
  }
}
.kv--sub__catch h2 small {
  font-size: 20px;
  letter-spacing: 0.15em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .kv--sub__catch h2 small {
    font-size: 15px;
    margin-top: 12px;
  }
}

.news {
  position: relative;
  margin-top: -50px;
  z-index: 1;
}
.news__box {
  background: #ffffff;
  padding: 60px 70px 70px;
}
@media only screen and (max-width: 767px) {
  .news__box {
    padding: 30px;
    padding-bottom: 40px;
  }
}
.news__row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.news__row > div:nth-child(1) {
  width: 21.170213%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .news__row > div:nth-child(1) {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
}
.news__row > div:nth-child(1) h2 {
  font-family: "Cinzel", serif;
  font-size: 30px;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .news__row > div:nth-child(1) h2 {
    font-size: 24px;
  }
}
.news__row > div:nth-child(1) a {
  font-size: 0;
}
@media only screen and (min-width: 768px) {
  .news__row > div:nth-child(1) a {
    position: absolute;
    left: 0;
    bottom: -15px;
    padding-bottom: 15px;
  }
  .news__row > div:nth-child(1) a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #191920;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .news__row > div:nth-child(1) a:hover:before {
    opacity: 1;
  }
}
.news__row > div:nth-child(1) a span,
.news__row > div:nth-child(1) a svg {
  display: inline-block;
  vertical-align: middle;
}
.news__row > div:nth-child(1) a span {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-family: "Cinzel", serif;
}
@media only screen and (max-width: 767px) {
  .news__row > div:nth-child(1) a span {
    font-size: 16px;
  }
}
.news__row > div:nth-child(1) a svg {
  width: 4px;
  height: 8px;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .news__row > div:nth-child(1) a svg {
    margin-left: 14px;
  }
}
.news__row > div:nth-child(2) {
  width: 78.829787%;
}
@media only screen and (max-width: 767px) {
  .news__row > div:nth-child(2) {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .news__row > div:nth-child(2) ul {
    margin-top: 24px;
  }
}
.news__row > div:nth-child(2) ul li {
  border-bottom: 1px solid #dbdbdb;
}
.news__row > div:nth-child(2) ul li:nth-child(1) a {
  padding-top: 0;
}
.news__row > div:nth-child(2) ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 30px 0 20px;
}
@media only screen and (min-width: 768px) {
  .news__row > div:nth-child(2) ul li a {
    transition: color 0.3s;
  }
  .news__row > div:nth-child(2) ul li a:hover {
    color: #999;
  }
}
@media only screen and (max-width: 767px) {
  .news__row > div:nth-child(2) ul li a {
    display: block;
    padding: 0;
    padding-top: 12px;
  }
}
.news__row > div:nth-child(2) ul li a em,
.news__row > div:nth-child(2) ul li a span {
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .news__row > div:nth-child(2) ul li a em,
  .news__row > div:nth-child(2) ul li a span {
    font-size: 15px;
  }
}
.news__row > div:nth-child(2) ul li a em {
  width: 125px;
  font-family: "Cinzel", serif;
}
@media only screen and (max-width: 767px) {
  .news__row > div:nth-child(2) ul li a em {
    width: 100%;
  }
}
.news__row > div:nth-child(2) ul li a span {
  width: calc(100% - 125px);
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .news__row > div:nth-child(2) ul li a span {
    width: 100%;
    padding-bottom: 12px;
    margin-top: 4px;
  }
}

.services {
  margin-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .services {
    margin-top: 70px;
    padding-bottom: 80px;
  }
}
.services.mt {
  margin-top: 140px;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .services.mt {
    margin-top: 90px;
  }
}
.services__list {
  border-top: 1px solid #dbdbdb;
}
.services__item {
  padding: 40px;
  border-bottom: 1px solid #dbdbdb;
}
@media only screen and (max-width: 767px) {
  .services__item {
    padding: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.services__item a {
  display: block;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .services__item a:hover figure > div div {
    transform: scale(1.05);
  }
}
.services__item a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  background-size: cover;
  background-image: url(../images/icon/ico_link_arrow.svg);
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .services__item a:before {
    width: 50px;
    height: 50px;
    bottom: auto;
    top: 62%;
    transform: translateY(-50%);
  }
}
.services__item a figure {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.services__item a figure > div {
  width: 37.037037%;
  overflow: hidden;
  display: block;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .services__item a figure > div {
    min-height: 225px;
    overflow: hidden;
  }
  .services__item a figure > div div {
    transform: scale(1);
    transition: transform 0.5s;
  }
}
@media only screen and (max-width: 767px) {
  .services__item a figure > div {
    width: 100%;
  }
}
.services__item a figure > div div {
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .services__item a figure > div div {
    position: static;
    padding-top: 55.384615%;
  }
}
.services__item a figure figcaption {
  width: 62.962963%;
  padding: 48px 0;
  padding-left: 60px;
}
@media only screen and (max-width: 767px) {
  .services__item a figure figcaption {
    width: 100%;
    padding: 0;
    padding-top: 30px;
  }
}
.services__item a figure figcaption > div strong {
  padding-left: 50px;
  position: relative;
  display: block;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .services__item a figure figcaption > div strong {
    padding-left: 34px;
  }
}
.services__item a figure figcaption > div strong:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: auto;
  width: 30px;
  height: 2px;
  background: rgb(16, 53, 98);
  background: linear-gradient(45deg, rgb(16, 53, 98) 0%, rgb(59, 140, 214) 100%);
}
@media only screen and (max-width: 767px) {
  .services__item a figure figcaption > div strong:before {
    width: 20px;
    bottom: auto;
    top: 11px;
  }
}
.services__item a figure figcaption > div strong span,
.services__item a figure figcaption > div strong small {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .services__item a figure figcaption > div strong span,
  .services__item a figure figcaption > div strong small {
    display: block;
  }
}
.services__item a figure figcaption > div strong span {
  font-family: "Cinzel", serif;
  font-size: 40px;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .services__item a figure figcaption > div strong span {
    font-size: 26px;
  }
}
.services__item a figure figcaption > div strong small {
  font-size: 18px;
  letter-spacing: 0.15em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .services__item a figure figcaption > div strong small {
    margin-left: 0;
    font-size: 13px;
    margin-top: 4px;
  }
}
.services__item a figure figcaption > div p {
  margin-top: 22px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .services__item a figure figcaption > div p br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .services.simple .services__item a:before {
    top: 91%;
  }
}

.strength {
  position: relative;
  overflow: hidden;
}
.strength .inner-middle {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .strength .inner-middle {
    padding-left: 100px;
    padding-right: 100px;
  }
}
.strength__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 380px;
  background-image: url(../images/top/img04.jpg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.strength__title {
  padding-top: 120px;
}
@media only screen and (max-width: 767px) {
  .strength__title {
    padding-top: 70px;
  }
}
.strength__title h3 {
  padding-left: 50px;
  position: relative;
  display: block;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .strength__title h3 {
    padding-left: 34px;
  }
}
.strength__title h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: auto;
  width: 30px;
  height: 2px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .strength__title h3:before {
    bottom: auto;
    top: 11px;
    width: 20px;
  }
}
.strength__title h3 strong,
.strength__title h3 small {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}
.strength__title h3 strong {
  font-family: "Cinzel", serif;
  font-size: 40px;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .strength__title h3 strong {
    font-size: 32px;
  }
}
.strength__title h3 small {
  font-size: 18px;
  letter-spacing: 0.15em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .strength__title h3 small {
    font-size: 13px;
    margin-left: 0;
    line-height: 1.23076923;
    margin-top: 4px;
  }
}
.strength__title h3 a {
  color: #fff;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .strength__title h3 a {
    display: none;
  }
}
.strength__title h3 a span,
.strength__title h3 a svg {
  display: inline-block;
  vertical-align: middle;
}
.strength__title h3 a span {
  font-size: 18px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.1em;
  margin-right: 20px;
}
.strength__title h3 a svg {
  width: 4px;
  height: 8px;
}
.strength__slider--whole {
  max-width: 850px;
  margin: auto;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .strength__slider--whole {
    margin-top: 30px;
    max-width: 285px;
  }
}
.strength__slider--whole .slick-list {
  overflow: visible;
}
.strength__slider--whole .slick-slider {
  margin-bottom: 194px;
}
@media only screen and (max-width: 767px) {
  .strength__slider--whole .slick-slider {
    margin-bottom: 103px;
  }
}
.strength__slider--whole .slick-prev,
.strength__slider--whole .slick-next {
  margin: 0;
  padding: 0;
  width: 54px;
  height: 54px;
}
.strength__slider--whole .slick-prev:before,
.strength__slider--whole .slick-next:before {
  content: none;
}
.strength__slider--whole .slick-prev {
  background-image: url(../images/icon/ico_link_arrow_back.svg);
  background-size: cover;
  background-position: center;
  top: auto;
  bottom: -121px;
  left: 20px;
}
@media only screen and (max-width: 767px) {
  .strength__slider--whole .slick-prev {
    bottom: -109px;
    left: -23px;
  }
}
.strength__slider--whole .slick-next {
  background-image: url(../images/icon/ico_link_arrow.svg);
  background-size: cover;
  background-position: center;
  top: auto;
  bottom: -121px;
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .strength__slider--whole .slick-next {
    bottom: -109px;
    right: -23px;
  }
}
.strength__slider--whole .slick-dots {
  max-width: 608px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0 16px;
  bottom: -70px;
}
@media only screen and (max-width: 767px) {
  .strength__slider--whole .slick-dots {
    max-width: 190px;
    bottom: -58px;
  }
}
.strength__slider--whole .slick-dots li {
  margin: 0;
  padding: 0;
  width: calc(25% - 8px);
  height: auto;
}
@media only screen and (max-width: 767px) {
  .strength__slider--whole .slick-dots li {
    width: 21.052632%;
  }
}
.strength__slider--whole .slick-dots li.slick-active button {
  background: rgb(16, 53, 98);
  background: linear-gradient(45deg, rgb(16, 53, 98) 0%, rgb(59, 140, 214) 100%);
}
.strength__slider--whole .slick-dots li button {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 1px;
  display: block;
  background: #dbdbdb;
}
.strength__slider--whole .slick-dots li button:before {
  content: none;
}
.strength__slide {
  cursor: pointer;
}
.strength__slide__row {
  background: #fff;
  padding: 49px 60px 0px;
  padding-right: 80px;
  min-height: 222px;
  width: calc(100% - 40px);
  margin: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .strength__slide__row {
    width: calc(100% - 20px);
    padding: 0;
    min-height: 278px;
    padding: 25px;
    padding-bottom: 40px;
  }
}
.strength__slide__row > div:nth-child(1) {
  width: 190px;
}
@media only screen and (max-width: 767px) {
  .strength__slide__row > div:nth-child(1) {
    width: 100%;
    padding-top: 0;
  }
}
.strength__slide__row > div:nth-child(1) em,
.strength__slide__row > div:nth-child(1) strong {
  display: block;
}
.strength__slide__row > div:nth-child(1) em {
  font-size: 20px;
  letter-spacing: 0.15em;
  font-family: "Cinzel", serif;
}
@media only screen and (max-width: 767px) {
  .strength__slide__row > div:nth-child(1) em {
    font-size: 14px;
  }
}
.strength__slide__row > div:nth-child(1) strong {
  font-size: 30px;
  letter-spacing: 0.15em;
  font-family: "Cinzel", serif;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .strength__slide__row > div:nth-child(1) strong {
    font-size: 24px;
    margin-top: 4px;
  }
}
.strength__slide__row > div:nth-child(2) {
  width: calc(100% - 190px);
}
@media only screen and (max-width: 767px) {
  .strength__slide__row > div:nth-child(2) {
    width: 100%;
  }
}
.strength__slide__row > div:nth-child(2) strong {
  display: block;
  font-size: 24px;
  letter-spacing: 0.15em;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .strength__slide__row > div:nth-child(2) strong {
    margin-top: -11px;
  }
}
@media only screen and (max-width: 767px) {
  .strength__slide__row > div:nth-child(2) strong {
    font-size: 18px;
    margin-top: 10px;
  }
}
.strength__slide__row > div:nth-child(2) p {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .strength__slide__row > div:nth-child(2) p.mt {
    margin-top: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .strength__slide__row > div:nth-child(2) p {
    font-size: 14px;
    margin-top: 18px;
    line-height: 1.71428571;
  }
  .strength__slide__row > div:nth-child(2) p br {
    display: none;
  }
}
.strength__link {
  text-align: center;
}
.strength__link a {
  font-size: 0;
}
.strength__link a span,
.strength__link a svg {
  display: inline-block;
  vertical-align: auto;
}
.strength__link a span {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Cinzel", serif;
}
.strength__link a svg {
  margin-left: 14px;
}
.strength__link a svg path {
  stroke: #191920;
}