@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,400i");
/*base*/
body {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #000;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: all .3s;
}

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

button {
  cursor: pointer;
  transition: all .3s;
}

::-webkit-input-placeholder {
  color: #7f7f7f;
}

:-ms-input-placeholder {
  color: #7f7f7f;
}

::-ms-input-placeholder {
  color: #7f7f7f;
}

::placeholder {
  color: #7f7f7f;
}

/* Layouts */
.l-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media all and (max-width: 1130px) {
  .l-wrapper {
    position: relative;
  }
}

@media all and (max-width: 767px) {
  .l-wrapper {
    margin-bottom: 40px;
  }
}

.l-content {
  padding: 190px 0 100px;
}

@media all and (max-width: 767px) {
  .l-content {
    padding: 100px 0 60px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s;
}

.logged-in .l-header {
  margin-top: 32px;
}

@media all and (max-width: 767px) {
  .logged-in .l-header {
    margin-top: 42px;
  }
}

.l-header a, .l-header .button {
  color: #fff;
  transition: all 0.3s;
}

.l-header svg {
  fill: #fff;
  transition: all 0.3s;
}

.l-header .inner {
  position: relative;
  text-align: center;
  padding: 35px 0;
}

.l-header .inner a:hover, .l-header .inner .button:hover {
  opacity: 0.6;
}

.l-header .link,
.l-header .header-navi-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: helvetica, arial, sans-serif;
}

.l-header .link {
  left: 0;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: bold;
}

.l-header .header-navi-wrap {
  right: 0;
}

.l-header .button {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #fff;
}

.l-header .button span {
  margin-right: 10px;
}

.l-header .button span, .l-header .button svg {
  vertical-align: middle;
}

.is-header-black .l-header, .l-header.is-sticky {
  background: #fff;
}

.is-header-black .l-header a, .is-header-black .l-header .button, .l-header.is-sticky a, .l-header.is-sticky .button {
  color: #000;
}

.is-header-black .l-header svg, .l-header.is-sticky svg {
  fill: #000;
}

@media all and (max-width: 767px) {
  .l-header .inner {
    padding: 20px 0;
  }
  .l-header .link {
    display: none;
  }
  .l-header .logo {
    width: 100px;
    margin: auto;
  }
  .l-header .logo a {
    display: block;
  }
  .l-header .logo svg {
    width: 100px;
    height: 41px;
  }
}

.l-sticky-footer .button-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
}

.l-sticky-footer .button {
  display: block;
  padding: 20px 0 30px;
  width: 100%;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: bold;
}

.l-sticky-footer .button span {
  vertical-align: middle;
  margin-right: 10px;
}

.l-sticky-footer .button svg {
  fill: #000;
  width: 20px;
  height: 15px;
  vertical-align: middle;
}

.l-sticky-footer .logo {
  display: block;
  padding: 20px 0;
  text-align: center;
}

.l-sticky-footer .logo svg {
  width: 100px;
  height: 41px;
}

.l-navi-wrap {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: #fff;
  padding-bottom: 100px;
}

.l-navi-wrap .bg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.l-navi-wrap a, .l-navi-wrap .button {
  color: #000;
}

.l-navi-wrap svg {
  fill: #000;
}

.l-navi-wrap.is-active {
  display: block;
}

.l-navi-wrap.is-sp {
  position: fixed;
  height: 100vh;
  overflow-y: scroll;
  z-index: 100;
}

.l-navi-wrap.is-sp.is-active .button-wrap {
  border-top: solid 1px #e1e1e1;
}

.l-navi-global {
  display: flex;
  justify-content: space-between;
}

.l-navi-global a {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 2.4;
  letter-spacing: 1.3px;
  color: #000;
}

.l-navi-global a:hover {
  text-decoration: underline;
}

.l-navi-global .navi-list ul a {
  font-weight: normal;
}

@media all and (max-width: 1130px) {
  .l-navi-global a {
    display: block;
    font-size: 12px;
    line-height: 3;
    letter-spacing: 1px;
  }
}

@media all and (max-width: 767px) {
  .l-navi-global {
    flex-direction: column;
  }
  .l-navi-global .navi-list {
    padding-left: 40px;
  }
  .l-navi-global .navi-list ul {
    padding-left: 20px;
  }
}

.l-footer {
  background: #000;
  color: #fff;
  text-align: center;
}

.l-footer .copy {
  padding: 18px 0;
  color: #838383;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 1px;
}

.l-footer .logo {
  padding: 60px 0 50px;
}

.l-footer .logo .logo-bloom {
  fill: #fff;
}

.l-footer .logo a:hover {
  opacity: 0.6;
}

.l-footer .sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.l-footer .sns-list li {
  margin: 12px;
}

.l-footer .footer-navi-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-footer .footer-navi-list a {
  padding: 0 15px;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
}

.l-footer .footer-navi-list a:hover {
  text-decoration: underline;
}

@media all and (max-width: 767px) {
  .l-footer .logo {
    padding: 40px 0;
  }
  .l-footer .logo svg {
    width: 100px;
    height: 41px;
  }
  .l-footer .copy {
    padding: 18px 0 35px;
    font-size: 10px;
    line-height: 2.4;
    letter-spacing: 0.8px;
  }
}

.l-frame {
  max-width: 1190px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width: 767px) {
  .l-frame {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.l-frame-narrow {
  max-width: 760px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width: 767px) {
  .l-frame-narrow {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.l-frame-wide {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.l-section.is-pdt-l {
  padding-top: 100px;
}

.l-section.is-pdb-l {
  padding-bottom: 100px;
}

.l-section.is-pdt-m {
  padding-top: 75px;
}

.l-section.is-pdb-m {
  padding-bottom: 75px;
}

.l-section.is-blue {
  background: #dae7e8;
}

.l-section.is-dark-blue {
  background: #46536e;
}

@media all and (max-width: 767px) {
  .l-section.is-pdt-l {
    padding-top: 60px;
  }
  .l-section.is-pdb-l {
    padding-bottom: 60px;
  }
  .l-section.is-pdt-m {
    padding-top: 40px;
  }
  .l-section.is-pdb-m {
    padding-bottom: 40px;
  }
}

.l-article {
  position: relative;
}

.l-article .thumb {
  margin-bottom: 60px;
}

.l-article .page-title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.62;
  letter-spacing: 2.2px;
  margin-bottom: 10px;
}

.l-article .tag {
  margin-bottom: 10px;
}

.l-article .tag a {
  color: #ff5912;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  letter-spacing: 1.6px;
}

.l-article .tag a:hover {
  text-decoration: underline;
}

.l-article .date {
  font-size: 12px;
  line-height: 1.92;
  letter-spacing: 1.2px;
  color: #757575;
  margin-bottom: 60px;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.l-article .text-area h2 {
  margin: 3em 0 2em;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.62;
  letter-spacing: 2.2px;
}

.l-article .text-area h3 {
  margin: 3em 0 1em;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.69;
  letter-spacing: 1.8px;
}

.l-article .text-area p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 1.7px;
}

.l-article .text-area p + p {
  margin-top: 2em;
}

.l-article .text-area ol {
  padding-left: 3em;
  list-style: decimal;
  margin: 2em 0;
}

.l-article .text-area ol li {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 1.7px;
}

.l-article .text-area ul {
  padding-left: 3em;
  margin: 2em 0;
}

.l-article .text-area ul li {
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 1.7px;
}

.l-article .text-area ul li:before {
  position: absolute;
  top: .95em;
  left: -1.6em;
  width: 10px;
  height: 1px;
  content: "";
  background: #000;
}

.l-article .text-area strong {
  font-weight: bold;
}

.l-article .text-area .wp-block-quote {
  position: relative;
  margin: 2em 0;
  padding: 80px 50px 40px;
  background: #f3f3f3;
}

.l-article .text-area .wp-block-quote:before {
  position: absolute;
  top: 35px;
  left: 30px;
  width: 30px;
  height: 23.7px;
  background: url("../images/common/icon_quote_first.svg") no-repeat;
  background-size: contain;
  content: "";
}

.l-article .text-area .wp-block-quote:after {
  position: absolute;
  bottom: 25px;
  right: 30px;
  width: 30px;
  height: 23.7px;
  background: url("../images/common/icon_quote_end.svg") no-repeat;
  background-size: contain;
  content: "";
}

.l-article .text-area .wp-block-image figcaption {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 12px;
  line-height: 1.92;
  letter-spacing: 1.2px;
  color: #000;
  text-align: left;
}

.l-article .article {
  position: relative;
}

.l-article .sns-list {
  position: absolute;
  top: 40px;
  left: -70px;
  transform: translateX(-100%);
}

.l-article .sns-list li {
  margin-bottom: 15px;
}

@media all and (max-width: 950px) {
  .l-article .sns-list {
    position: relative;
    top: 0;
    left: 0;
    transform: translateX(0);
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .l-article .sns-list li {
    margin: 0 6px;
  }
}

@media all and (max-width: 767px) {
  .l-article .thumb {
    margin-bottom: 20px;
  }
  .l-article .page-title {
    font-size: 16px;
    line-height: 1.69;
    letter-spacing: 1.8px;
    margin-bottom: 0;
  }
  .l-article .tag {
    margin-bottom: 10px;
  }
  .l-article .tag a {
    color: #ff5912;
    font-weight: normal;
    font-size: 12px;
    line-height: 1.67;
    letter-spacing: 1.4px;
  }
  .l-article .date {
    font-size: 10px;
    line-height: 2.3;
    letter-spacing: 1px;
    margin-bottom: 40px;
  }
  .l-article .text-area h2 {
    font-size: 14px;
  }
  .l-article .text-area h3 {
    font-size: 13px;
  }
  .l-article .text-area p {
    font-size: 12px;
  }
  .l-article .text-area p + p {
    margin-top: 2em;
  }
  .l-article .text-area ol {
    padding-left: 2em;
  }
  .l-article .text-area ol li {
    font-size: 12px;
  }
  .l-article .text-area ul {
    padding-left: 2em;
  }
  .l-article .text-area ul li {
    font-size: 12px;
  }
  .l-article .text-area ul li:before {
    top: .95em;
    left: -1.5em;
    width: 6px;
  }
  .l-article .text-area .wp-block-quote {
    padding: 45px 20px 40px;
  }
  .l-article .text-area .wp-block-quote:before {
    top: 20px;
    left: 20px;
    width: 20px;
    height: 16px;
  }
  .l-article .text-area .wp-block-quote:after {
    bottom: 20px;
    right: 20px;
    width: 20px;
    height: 16px;
  }
  .l-article .text-area .wp-block-image figcaption {
    font-size: 10px;
    line-height: 2.3;
    letter-spacing: 1px;
    color: #757575;
  }
}

/* Component */
.c-main-title {
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 1.62;
  letter-spacing: 2.2px;
  text-align: center;
}

.c-main-title.is-mg-l {
  margin-bottom: 60px;
}

.c-main-title.is-mg-m {
  margin-bottom: 40px;
}

@media all and (max-width: 767px) {
  .c-main-title {
    margin-bottom: 10px;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.69;
    letter-spacing: 1.8px;
  }
  .c-main-title.is-mg-l {
    margin-bottom: 30px;
  }
  .c-main-title.is-mg-m {
    margin-bottom: 20px;
  }
}

.c-page-title {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 2.77;
  letter-spacing: 1.1px;
  text-align: center;
  margin-bottom: 10px;
}

.c-page-title .link {
  color: #000;
}

.c-page-title .link:hover {
  text-decoration: underline;
}

@media all and (max-width: 767px) {
  .c-page-title {
    text-align: left;
    font-size: 11px;
    letter-spacing: 0.9px;
    margin-bottom: 0;
  }
}

.c-sub-title {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.4px;
  text-align: center;
}

.c-sub-title.is-mg-l {
  margin-bottom: 60px;
}

.c-sub-title.is-big {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 2px;
}

@media all and (max-width: 767px) {
  .c-sub-title {
    text-align: left;
    font-size: 13px;
    line-height: 1.77;
    letter-spacing: 1.4px;
  }
  .c-sub-title.is-big {
    font-size: 13px;
    line-height: 1.77;
    letter-spacing: 1.4px;
  }
  .c-sub-title.is-mg-l {
    margin-bottom: 30px;
  }
}

.c-paging {
  position: relative;
  display: flex;
  padding: 15px 0;
  border-top: solid 1px #999;
  border-bottom: solid 1px #999;
}

.c-paging:before {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 50%;
  width: 1px;
  background: #999;
  content: "";
  transform: translateX(-50%);
}

.c-paging .prev {
  position: relative;
  width: 50%;
  padding-right: 30px;
  padding-left: 50px;
}

.c-paging .prev .arrow {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.c-paging .next {
  position: relative;
  width: 50%;
  padding-left: 30px;
  padding-right: 50px;
}

.c-paging .next .arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.c-paging .title {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 12px;
  line-height: 1.92;
  letter-spacing: 1.2px;
}

.c-paging a {
  font-size: 13px;
  line-height: 1.77;
  letter-spacing: 1.4px;
  color: #000;
}

.c-paging a:hover .page-title {
  text-decoration: underline;
}

@media all and (max-width: 767px) {
  .c-paging .prev .arrow {
    left: 10px;
  }
  .c-paging .next .arrow {
    right: 10px;
  }
}

.c-navi-accordion .button {
  display: none;
}

.c-navi-accordion .button:hover {
  opacity: 0.6;
}

@media all and (max-width: 767px) {
  .c-navi-accordion {
    position: relative;
  }
  .c-navi-accordion .button {
    display: block;
    position: absolute;
    top: 0.5em;
    left: -25px;
    width: 25px;
    height: 25px;
  }
  .c-navi-accordion .button:before, .c-navi-accordion .button:after {
    position: absolute;
    top: 0.5em;
    left: 5px;
    width: 2px;
    height: 10px;
    content: "";
    background: #000;
    display: block;
  }
  .c-navi-accordion .button:after {
    transform: rotate(-90deg);
  }
  .c-navi-accordion .accordion-content {
    display: none;
  }
  .c-navi-accordion.is-active .button:before, .c-navi-accordion.is-active .button:after {
    transform: rotate(-90deg);
  }
  .c-navi-accordion.is-active .accordion-content {
    display: block;
  }
}

.c-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.c-list.is-triple > li, .c-list.is-triple-double > li {
  width: calc(100% / 3 - 33.33333px);
}

.c-list.is-triple-double > li {
  margin-bottom: 60px;
}

.c-list.is-double > li {
  width: calc(100% / 2 - 25px);
}

.c-list.is-justify-center {
  justify-content: center;
}

.c-list.is-center-pc {
  text-align: center;
}

.c-list.is-align-end {
  align-items: flex-end;
}

.c-list .thumb {
  margin-bottom: 20px;
}

.c-list .thumb a {
  display: block;
}

.c-list .thumb a:hover {
  opacity: 0.6;
}

.c-list .thumb-link:hover {
  opacity: 0.6;
}

.c-list .tag {
  margin-bottom: 15px;
}

.c-list .title,
.c-list .top-title {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 1.2px;
  font-weight: bold;
}

.c-list .title span,
.c-list .top-title span {
  display: inline-block;
}

.c-list .news-title {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.78;
  letter-spacing: 1.2px;
  font-weight: bold;
}

.c-list .text {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.4px;
}

.c-list.is-list-mg li {
  margin-top: 80px;
}

@media all and (max-width: 767px) {
  .c-list.is-center-sp {
    text-align: center;
  }
  .c-list.is-center-pc {
    text-align: left;
  }
  .c-list.is-list-mg, .c-list.is-triple, .c-list.is-double {
    flex-direction: column;
  }
  .c-list.is-list-mg > li, .c-list.is-triple > li, .c-list.is-double > li {
    width: 100%;
    margin-top: 0;
  }
  .c-list.is-list-mg > li + li:not(.is-no-mg), .c-list.is-triple > li + li:not(.is-no-mg), .c-list.is-double > li + li:not(.is-no-mg) {
    margin-top: 50px;
  }
  .c-list.is-triple-double > li {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
  .c-list .thumb {
    margin-bottom: 15px;
  }
  .c-list .tag {
    margin-bottom: 10px;
  }
  .c-list .title,
  .c-list .news-title {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 2px;
    margin-bottom: 5px;
  }
  .c-list .top-title {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .c-list .text {
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 1.67;
  }
}

.c-tag {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.4px;
}

.c-tag:hover {
  text-decoration: underline;
}

.c-tag a {
  color: #ff5912;
}

.c-tag a:before {
  content: "#";
}

@media all and (max-width: 767px) {
  .c-flex-reverse-sp {
    display: flex;
    flex-direction: column-reverse;
  }
}

.c-link {
  display: inline-block;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.4px;
  color: #000;
}

.c-link:after {
  display: inline-block;
  margin-left: 10px;
  width: 22px;
  height: 14px;
  background: url("../images/common/icon_link_arrow.svg") no-repeat center center;
  content: "";
}

.c-link.is-white {
  color: #fff;
}

.c-link.is-white:after {
  background: url("../images/common/icon_link_arrow_white.svg") no-repeat center center;
}

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

@media all and (max-width: 767px) {
  .c-link {
    font-size: 12px;
    line-height: 1.67;
  }
}

.c-icon-link {
  margin-right: 10px;
}

.c-icon-link i {
  font-size: 14px;
  margin-right: 5px;
}

.c-icon-link a {
  color: #ff5912;
  font-size: 12px;
  line-height: 1.67;
  letter-spacing: 1.4px;
}

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

.c-two-column {
  display: flex;
}

.c-two-column .wrap-gray {
  width: 50%;
  padding-right: 15px;
}

.c-two-column .wrap-white {
  width: 50%;
  padding-right: 25px;
}

.c-two-column .wrap-text {
  width: 50%;
  padding-left: 25px;
}

.c-two-column .gray-box {
  background: #f0f0f0;
  padding: 50px 50px 20px;
}

.c-two-column .thumb {
  margin-bottom: 15px;
}

.c-two-column .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.78;
  margin-bottom: 10px;
}

.c-two-column .title small {
  font-size: 14px;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 1.4px;
}

.c-two-column .text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.4px;
  margin-bottom: 30px;
}

.c-two-column .text.is-no-mg {
  margin-bottom: 0;
}

.c-two-column .small-text {
  font-size: 13px;
  line-height: 1.77;
  letter-spacing: 1.4px;
  margin-bottom: 30px;
}

.c-two-column .video {
  margin-bottom: 30px;
}

.c-two-column img, .c-two-column iframe, .c-two-column video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media all and (max-width: 767px) {
  .c-two-column {
    flex-direction: column;
  }
  .c-two-column.reverse {
    flex-direction: column-reverse;
  }
  .c-two-column .wrap-gray,
  .c-two-column .wrap-white {
    width: 100%;
    padding-right: 0;
  }
  .c-two-column .wrap-gray.is-mgb-sp,
  .c-two-column .wrap-white.is-mgb-sp {
    margin-bottom: 40px;
  }
  .c-two-column .wrap-text {
    width: 100%;
    padding-left: 0;
  }
  .c-two-column .gray-box {
    background: #f0f0f0;
    padding: 20px 10px 5px;
  }
  .c-two-column .thumb, .c-two-column .video {
    margin-bottom: 20px;
  }
  .c-two-column .title {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.71;
    letter-spacing: 2px;
  }
  .c-two-column .small-text {
    font-size: 11px;
    line-height: 1.55;
    letter-spacing: 1.3px;
    margin-bottom: 15px;
  }
  .c-two-column .text {
    font-size: 12px;
    line-height: 1.67;
    letter-spacing: 1.4px;
    margin-bottom: 40px;
  }
  .c-two-column .text + .title, .c-two-column .small-text + .title {
    margin-top: 30px;
  }
}

.c-border-button-box {
  text-align: center;
  margin: 0 auto;
}

.c-border-button-box .text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.4px;
}

.c-border-button-box.is-mgt-m {
  margin-top: 50px;
}

.c-border-button-box.is-mgt-s {
  margin-top: 30px;
}

.c-border-button-box span {
  display: inline-block;
}

@media all and (max-width: 767px) {
  .c-border-button-box .text {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.55;
    letter-spacing: 1.3px;
  }
}

.c-border-button,
.malinky-load-more__button {
  display: inline-block;
  min-width: 200px;
  padding: 18px 35px;
  line-height: 22px;
  border: solid 1px #999;
  letter-spacing: 1.1px;
  text-align: center;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.c-border-button.is-white,
.malinky-load-more__button.is-white {
  color: #fff;
}

.c-border-button:hover,
.malinky-load-more__button:hover {
  border: solid 1px #000;
}

.c-border-button:hover.is-white,
.malinky-load-more__button:hover.is-white {
  border: solid 1px #fff;
}

.c-border-button:active,
.malinky-load-more__button:active {
  border: solid 1px #000;
  background: #000;
  color: #fff;
}

.c-border-button:active.is-white,
.malinky-load-more__button:active.is-white {
  border: solid 1px #fff;
  background: #fff;
  color: #000;
}

@media all and (max-width: 767px) {
  .c-border-button,
  .malinky-load-more__button {
    min-width: 0;
    width: 100%;
    line-height: 18px;
    padding: 15px 0;
    font-size: 11px;
    letter-spacing: 0.92px;
  }
}

.c-border-button-big {
  display: inline-block;
  width: 100%;
  max-width: 560px;
  padding: 20px 35px;
  line-height: 38px;
  border: solid 1px #999;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: #000;
  background: #fff;
}

.c-border-button-big:hover {
  border: solid 1px #000;
}

.c-border-button-big:active {
  border: solid 1px #000;
  background: #000;
  color: #fff;
}

@media all and (max-width: 767px) {
  .c-border-button-big {
    font-size: 14px;
    padding: 10px;
    line-height: 24px;
  }
}

.c-fill-button {
  display: inline-block;
  min-width: 200px;
  padding: 18px 20px;
  line-height: 22px;
  letter-spacing: 1.1px;
  text-align: center;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  background: rgba(255, 255, 255, 0.7);
}

.c-fill-button:hover, .c-fill-button:active {
  background: #fff;
}

@media all and (max-width: 767px) {
  .c-fill-button {
    min-width: 0;
    width: 100%;
    line-height: 18px;
    padding: 11px 0;
    font-size: 11px;
    letter-spacing: 0.92px;
  }
}

.c-balloon {
  text-align: center;
  margin-bottom: 20px;
}

.c-balloon span {
  position: relative;
  display: inline-block;
  padding: 5px 50px;
  font-size: 12px;
  line-height: 1.67;
  letter-spacing: 1.4px;
}

.c-balloon span:before, .c-balloon span:after {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 45px;
  background: #000;
  opacity: 0.5;
  content: "";
}

.c-balloon span:before {
  left: 0;
  transform: rotate(-40deg);
}

.c-balloon span:after {
  right: 0;
  transform: rotate(40deg);
}

.c-balloon.is-small span {
  padding: 5px 30px;
}

@media all and (max-width: 767px) {
  .c-balloon span {
    padding: 5px 0;
    font-size: 10px;
    line-height: 1.7;
    letter-spacing: 1px;
  }
  .c-balloon span:before, .c-balloon span:after {
    height: 30px;
  }
  .c-balloon span:before {
    left: -10px;
    transform: rotate(-35deg);
  }
  .c-balloon span:after {
    right: -10px;
    transform: rotate(35deg);
  }
  .c-balloon.is-small span {
    padding: 5px 0;
  }
}

.c-page-top {
  display: block;
  width: 100%;
  text-align: center;
}

.c-page-top > div {
  display: inline-block;
  padding: 40px;
}

.c-page-top > div:hover {
  opacity: 0.6;
}

.c-page-top img {
  width: 30px;
  height: 17px;
}

.c-fv-image img {
  width: 100%;
  height: auto;
}

@media all and (max-width: 767px) {
  .c-fv-image {
    position: relative;
    height: 240px;
    overflow: hidden;
  }
  .c-fv-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 170%;
    width: auto;
    transform: translate(-50%, -50%);
  }
}

.c-tag-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  letter-spacing: 1.6px;
}

.c-tag-menu a {
  color: #ff5912;
}

.c-tag-menu a:hover {
  text-decoration: underline;
}

.c-tag-menu li {
  position: relative;
  margin: 0 20px;
}

.c-tag-menu li.current-cat:before {
  position: absolute;
  top: 50%;
  left: -10px;
  border: solid transparent 4px;
  border-left: solid 4px #ff5912;
  content: "";
  transform: translateY(-50%);
}

.c-tab {
  font-size: 18px;
  letter-spacing: 1.2px;
  font-weight: bold;
  display: flex;
  width: 100%;
}

.c-tab li {
  width: 50%;
  text-align: center;
}

.c-tab a {
  display: block;
  border: solid 1px #ccc;
  padding: 25px 0;
  color: #7f7f7f;
}

.c-tab a:hover {
  opacity: 0.6;
}

.c-tab span {
  display: block;
  border-top: solid 4px #666;
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
  padding: 23px 0 25px;
}

.c-tab.is-left-active a {
  border-left: none;
}

.c-tab.is-right-active a {
  border-right: none;
}

@media all and (max-width: 767px) {
  .c-tab {
    font-size: 13px;
    line-height: 1.77;
    letter-spacing: 1.4px;
  }
  .c-tab span {
    padding: 8px 0 11px;
  }
  .c-tab a {
    padding: 10px 0 11px;
  }
}

.c-border-list {
  background: #fff;
  color: #000;
  padding: 0 50px;
  border: solid 1px #999;
}

.c-border-list.is-no-bd {
  border: none;
}

.c-border-list li {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}

.c-border-list li + li {
  border-top: dashed 1px #999;
}

.c-border-list .img-area {
  width: calc(25% - 25px);
}

.c-border-list .text-area {
  width: calc(75% - 25px);
}

.c-border-list .name-box {
  margin: 10px 0;
}

.c-border-list .detail {
  font-size: 12px;
  line-height: 1.67;
  letter-spacing: 1.4px;
}

.c-border-list .detail span {
  display: inline-block;
}

.c-border-list .name {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.4px;
}

.c-border-list .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.78;
  letter-spacing: 1.2px;
  margin-bottom: 15px;
}

.c-border-list .text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.4px;
}

.c-border-list .text + .text {
  margin-top: 30px;
}

@media all and (max-width: 767px) {
  .c-border-list {
    padding: 0 15px;
  }
  .c-border-list li {
    padding: 15px 0;
    flex-direction: column;
  }
  .c-border-list .img-area {
    display: flex;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 20px;
  }
  .c-border-list .text-area {
    width: 100%;
  }
  .c-border-list .thumb {
    width: 50%;
  }
  .c-border-list .name-box {
    width: 50%;
    margin: 0;
  }
  .c-border-list .detail {
    font-size: 11px;
    line-height: 1.55;
    letter-spacing: 1.3px;
    padding-left: 10px;
  }
  .c-border-list .name {
    font-size: 13px;
    line-height: 1.77;
    letter-spacing: 1.4px;
    padding-left: 10px;
  }
  .c-border-list .title {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .c-border-list .text {
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 1.67;
  }
  .c-border-list .text + .text {
    margin-top: 20px;
  }
}

.c-profile-box {
  display: flex;
  justify-content: space-between;
  background: #fff;
  color: #000;
  padding: 40px 50px;
  border: solid 1px #999;
}

.c-profile-box .img-area {
  width: calc(25% - 20px);
}

.c-profile-box .text-area {
  width: calc(75% - 20px);
}

.c-profile-box .name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.78;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.c-profile-box .detail {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.4px;
  margin-bottom: 30px;
}

@media all and (max-width: 767px) {
  .c-profile-box {
    padding: 15px;
    flex-direction: column;
  }
  .c-profile-box .img-area,
  .c-profile-box .text-area {
    width: 100%;
  }
  .c-profile-box .img-area .thumb,
  .c-profile-box .text-area .thumb {
    width: 50%;
    margin-bottom: 15px;
  }
  .c-profile-box .name {
    font-size: 14px;
    line-height: 1.71;
    margin-bottom: 10px;
  }
  .c-profile-box .detail {
    font-size: 12px;
    line-height: 1.67;
    margin-bottom: 20px;
  }
}

.c-about-box .text-wrap {
  margin: 0 75px;
  padding: 50px;
  background: #dae7e8;
}

.c-about-box .image-wrap {
  display: flex;
}

.c-about-box .image-wrap .image {
  position: relative;
  width: calc(50% - 20px);
}

.c-about-box .image-wrap .image img {
  position: relative;
}

.c-about-box .image-wrap .image:before {
  position: absolute;
  top: 50px;
  left: 75px;
  height: 100%;
  background: #dae7e8;
  width: calc(100% - 75px);
  content: "";
}

.c-about-box .image-wrap .text-wrap {
  margin-top: 50px;
  margin-left: 0;
  padding: 50px 50px 0 75px;
  width: calc(50% + 20px);
}

.c-about-box .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.78;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.c-about-box .text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.4px;
}

.c-about-box .text + .text {
  margin-top: 30px;
}

.c-about-box .text span {
  display: block;
}

@media all and (max-width: 767px) {
  .c-about-box .image-wrap {
    display: block;
  }
  .c-about-box .image-wrap .image {
    width: 100%;
    padding: 30px 15px 10px;
  }
  .c-about-box .image-wrap .image:before {
    top: 0;
    left: 0;
    width: 100%;
  }
  .c-about-box .image-wrap .text-wrap {
    width: 100%;
    margin-top: 0;
    padding: 30px 15px;
  }
  .c-about-box .image-wrap .text-wrap + .text {
    margin-top: 20px;
  }
  .c-about-box .text-wrap {
    margin: 0;
    padding: 0 15px 30px;
  }
  .c-about-box .title {
    font-size: 14px;
    line-height: 1.71;
    margin-bottom: 10px;
  }
  .c-about-box .text {
    font-size: 12px;
    line-height: 1.67;
  }
  .c-about-box .text + .text {
    margin-top: 20px;
  }
  .c-about-box .text span {
    display: inline;
  }
}

.c-dashed-list {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.4px;
}

.c-dashed-list > li {
  display: flex;
  padding: 6px 0;
  border-bottom: dashed 1px #999;
}

.c-dashed-list .label {
  width: 160px;
}

.c-dashed-list .label span {
  display: inline-block;
}

.c-dashed-list .text {
  width: calc(100% - 160px);
}

.c-dashed-list .text p + p {
  margin-top: 10px;
}

.c-dashed-list small {
  font-size: 12px;
  line-height: 1.67;
  letter-spacing: 1px;
}

.c-dashed-list strong {
  font-weight: bold;
}

.c-dashed-list.is-big .label {
  width: 200px;
}

@media all and (max-width: 767px) {
  .c-dashed-list {
    font-size: 12px;
    line-height: 1.67;
    letter-spacing: 1px;
  }
  .c-dashed-list .label {
    width: 85px;
    padding-right: 10px;
  }
  .c-dashed-list .text {
    width: calc(100% - 85px);
  }
  .c-dashed-list.is-big .label {
    width: 100px;
  }
}

.c-dashed-list-big {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.4px;
}

.c-dashed-list-big.is-narrow {
  max-width: 700px;
  margin: auto;
}

.c-dashed-list-big > li {
  display: flex;
  padding: 20px 0;
}

.c-dashed-list-big > li + li {
  border-top: dashed 1px #999;
}

.c-dashed-list-big .label {
  width: 220px;
}

.c-dashed-list-big .label span {
  display: inline-block;
}

.c-dashed-list-big .text {
  width: calc(100% - 220px);
}

.c-dashed-list-big small {
  font-size: 12px;
  line-height: 1.67;
  letter-spacing: 1px;
}

@media all and (max-width: 767px) {
  .c-dashed-list-big {
    font-size: 12px;
    line-height: 1.67;
    letter-spacing: 1px;
  }
  .c-dashed-list-big > li {
    flex-direction: column;
    padding: 15px 0;
  }
  .c-dashed-list-big .label {
    width: 100%;
    margin-bottom: 0.5em;
  }
  .c-dashed-list-big .text {
    width: 100%;
  }
}

.c-text-list {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  margin-bottom: 60px;
}

.c-text-list .title {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.77;
  letter-spacing: 1.3px;
  margin-bottom: 30px;
  white-space: nowrap;
}

.c-text-list .title::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-left: 20px;
  background: rgba(153, 153, 153, 0.5);
  content: "";
}

.c-text-list .text-list {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 1.2px;
}

@media all and (min-width: 768px) {
  .c-text-list ul {
    display: flex;
    flex-wrap: wrap;
  }
  .c-text-list ul > li {
    width: calc(100% / 3);
  }
}

@media all and (max-width: 767px) {
  .c-text-list {
    margin-bottom: 30px;
  }
  .c-text-list .title {
    font-size: 11px;
    letter-spacing: 0.9px;
    margin-bottom: 0;
  }
  .c-text-list .text-list {
    font-size: 10px;
    line-height: 1.6;
  }
}

.c-faq dt {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  letter-spacing: 2px;
  padding-left: 40px;
  text-indent: -40px;
}

.c-faq dt:before {
  content: "Q.";
  font-family: "Playfair Display", sans-serif;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.15;
  letter-spacing: 7.2px;
}

.c-faq dd {
  padding: 20px;
  background: #f0f0f0;
  font-size: 13px;
  line-height: 1.77;
  letter-spacing: 1.4px;
}

.c-faq dd strong {
  font-weight: bold;
}

@media all and (max-width: 767px) {
  .c-faq dt {
    font-size: 13px;
    line-height: 1.77;
    letter-spacing: 1.4px;
    padding-left: 20px;
    text-indent: -20px;
  }
  .c-faq dt:before {
    font-size: 14px;
    font-weight: bold;
    line-height: 2.14;
    letter-spacing: 3.8px;
  }
  .c-faq dd {
    font-size: 12px;
    line-height: 1.67;
    letter-spacing: 1.4px;
  }
}

.c-sticky-content {
  display: flex;
  padding: 0 30px;
}

.c-sticky-content .side-manu {
  position: relative;
  width: 30%;
}

.c-sticky-content .side-manu a {
  display: block;
  margin-bottom: 20px;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  letter-spacing: 2px;
}

.c-sticky-content .side-manu a:hover {
  text-decoration: underline;
}

.c-sticky-content .sticky {
  position: absolute;
  top: 0;
}

.c-sticky-content .sticky.is-sticky {
  position: fixed;
}

.c-sticky-content .main-content {
  width: calc(100% - 30%);
}

.c-sticky-content .main-content .title {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 2px;
  font-weight: bold;
}

.c-sticky-content .main-content .content {
  border-left: dashed 1px #999;
  padding-left: 50px;
  margin-bottom: 100px;
}

.c-sticky-content .main-content .item {
  margin-bottom: 30px;
}

@media all and (max-width: 767px) {
  .c-sticky-content {
    position: relative;
    display: block;
    padding: 0 15px;
  }
  .c-sticky-content .main-content {
    width: 100%;
  }
  .c-sticky-content .main-content .title {
    margin-bottom: 20px;
  }
  .c-sticky-content .main-content .content {
    border-left: none;
    padding-left: 0;
    padding-top: 80px;
    margin-bottom: 0;
  }
  .c-sticky-content .sticky {
    left: 15px;
    right: 15px;
    background: #fff;
  }
}

.c-select-wrap {
  position: relative;
  padding-bottom: 10px;
}

.c-select-wrap:before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  background: #000;
  content: "";
  pointer-events: none;
  z-index: 1;
}

.c-select-wrap:after {
  position: absolute;
  top: 15px;
  right: 13px;
  border: solid 6px transparent;
  border-top: solid 9px #fff;
  content: "";
  pointer-events: none;
  z-index: 1;
}

.c-select-wrap select {
  padding: 0 40px 0 10px;
  height: 40px;
  width: 100%;
  border: solid 1px #000;
  font-size: 16px;
  color: #000;
}

.c-select-wrap.is-pd-m {
  padding-bottom: 40px;
}

.mw_wp_form_preview .c-select-wrap:before, .mw_wp_form_preview .c-select-wrap:after {
  display: none;
}

.c-circle-button {
  display: block;
  border: solid 1px #999;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
}

.c-circle-button i {
  font-size: 16px;
  line-height: 34px;
  color: #000;
}

.c-circle-button:hover {
  border: solid 1px #000;
}

.c-circle-button:active {
  border: solid 1px #000;
  background: #000;
  color: #fff;
}

.c-circle-button.is-white i {
  color: #fff;
}

.c-circle-button.is-white svg {
  fill: #fff;
}

.c-circle-button.is-white:hover {
  border: solid 1px #fff;
}

.c-circle-button.is-white:active {
  border: solid 1px #fff;
  background: #fff;
  color: #000;
}

.c-circle-img {
  border-radius: 50%;
  overflow: hidden;
}

.c-border-box {
  display: block;
  color: #000;
  border: solid 1px #ccc;
  margin-bottom: 70px;
}

.c-border-box .box {
  display: flex;
  align-items: center;
  padding: 20px 25px;
}

.c-border-box .img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

.c-border-box .name {
  width: calc(100% - 75px);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.69;
  letter-spacing: 1.8px;
}

.c-border-box:hover {
  border: solid 1px #000;
}

.c-border-box:active {
  background: #000;
  color: #fff;
}

@media all and (max-width: 767px) {
  .c-border-box {
    border: none;
    margin-bottom: 0;
  }
  .c-border-box .box {
    justify-content: center;
    padding: 10px;
  }
  .c-border-box .img {
    width: 40px;
    height: 40px;
  }
  .c-border-box .name {
    width: calc(100% - 55px);
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 1.7px;
  }
}

.c-link-blank svg {
  margin-left: 5px;
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

.c-link-blank.is-white svg {
  fill: #fff;
}

.c-ol-list {
  padding-left: 1.6em;
  list-style: decimal;
}

.c-ol-list.is-mg-m li + li {
  margin-top: 2em;
}

.c-ol-list.is-mg-s li + li {
  margin-top: 0.5em;
}

.c-form p {
  margin-bottom: 0;
}

.c-form select {
  width: 100%;
  font-size: 16px;
  line-height: 1.5em;
  padding: 7px 15px;
  border: solid 1px #000;
  background: #fff;
}

.c-form select.wpcf7c-conf {
  border: none;
  background: none;
  padding: 7px 0;
}

.c-form input[type="submit"],
.c-form input[type="button"],
.c-form button[type="submit"] {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  cursor: pointer;
}

.c-form input[type="text"],
.c-form input[type="email"],
.c-form input[type="tel"],
.c-form textarea {
  width: 100%;
  background: #f0f0f0;
  font-size: 16px;
  line-height: 1.5em;
  padding: 7px 15px;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.c-form .mw-wp-form_file {
  display: inline-block;
}

.c-form .mw-wp-form_file a {
  color: #000;
}

.c-form .mw-wp-form_file a:hover {
  text-decoration: underline;
}

.c-form .back {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.4px;
  text-align: center;
}

.c-form .back:hover {
  text-decoration: underline;
}

.c-form .error {
  display: block;
}

@media all and (max-width: 767px) {
  .c-form select,
  .c-form input[type="text"],
  .c-form input[type="email"],
  .c-form input[type="tel"],
  .c-form textarea {
    padding: 7px 10px;
  }
  .c-form .file-input-button {
    padding: 9px 10px;
  }
}

/* Project */
.p-top .fv {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 58.368%;
  overflow: hidden;
}

.p-top .fv .bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
}

.p-top .fv .inner {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  flex-direction: column;
  color: #fff;
  line-height: 1.5;
  padding-bottom: 12%;
}

.p-top .main-catch {
  display: block;
  font-size: 26px;
  letter-spacing: 2.2px;
  margin-bottom: 5px;
}

.p-top .sub-catch {
  font-family: "Playfair Display", sans-serif;
  display: block;
  font-size: 20px;
  letter-spacing: 4.6px;
  margin-bottom: 50px;
}

.p-top .button-box .frame {
  max-width: 420px;
  display: flex;
  justify-content: space-between;
}

.p-top .button-box .frame:first-child {
  margin-bottom: 20px;
}

.p-top .button-box a {
  width: calc(100% / 2 - 10px);
}

@media all and (max-width: 767px) {
  .p-top .fv {
    padding-bottom: 150%;
  }
  .p-top .main-catch {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .p-top .sub-catch {
    font-size: 13px;
    letter-spacing: 2.6px;
    margin-bottom: 25px;
  }
  .p-top .button-box .frame:first-child {
    margin-bottom: 10px;
  }
  .p-top .button-box a {
    width: calc(100% / 2 - 7px);
  }
}

.p-page .text-area p:not(.c-sub-title):not(.label):not(.text) {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 2em;
}

.p-page .text-area form p:not(.c-sub-title):not(.label):not(.text) {
  margin-bottom: 0;
}

.p-page .text-area ol {
  padding-left: 1em;
  list-style: decimal;
}

.p-page .text-area ol li {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 2em;
}

.p-school.is-lower {
  padding-top: 100px;
}

.p-school .main-title {
  font-size: 26px;
  margin-bottom: 60px;
  line-height: 1.62;
  letter-spacing: 2.2px;
  text-align: center;
}

.p-school .main-link {
  text-align: center;
  margin-bottom: 150px;
}

.p-school .button {
  margin-top: 40px;
}

.p-school .contact-button {
  margin-top: 60px;
}

.p-school .main-title-wrap {
  margin: 70px 0 60px;
}

.p-school .img-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.p-school .img-box .img-1 {
  width: calc(45% - 10px);
}

.p-school .img-box .img-2 {
  width: calc(55% - 10px);
}

.p-school .img-box img {
  margin-bottom: 15px;
}

@media all and (max-width: 767px) {
  .p-school.is-lower {
    padding-top: 25px;
  }
  .p-school .main-title {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .p-school .main-link {
    margin-bottom: 60px;
  }
  .p-school .button {
    margin-top: 30px;
  }
  .p-school .contact-button {
    margin-top: 25px;
  }
  .p-school .main-title-wrap {
    margin: 30px 0 10px;
  }
  .p-school .img-box {
    margin-top: 20px;
  }
}

.p-company .detail {
  display: flex;
  justify-content: space-between;
}

.p-company .list {
  width: calc(50% - 15px);
}

.p-company .map {
  width: calc(50% - 15px);
}

.p-company .map iframe {
  width: 100%;
  height: 340px;
}

.p-company .text-wrap {
  margin: 10px 0;
}

.p-company .text-row {
  display: flex;
  font-size: 12px;
  line-height: 1.67;
  letter-spacing: 1.4px;
}

.p-company .text-row .title {
  width: 45px;
}

.p-company .text-row .text {
  width: calc(100% - 45px);
}

.p-company .area-wrap,
.p-company .area-child-list,
.p-company .area-links {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
}

@media all and (min-width: 768px) {
  .p-company .area-child-list {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 60px;
  }
  .p-company .area-child-list > div {
    width: calc(50% - 15px);
  }
  .p-company .area-child-list h3 {
    border-bottom: solid 1px #000;
    font-weight: bold;
    padding-bottom: 10px;
  }
  .p-company .area-child-list h4 {
    width: 110px;
  }
  .p-company .area-child-list a {
    color: #666666;
    margin-right: 14px;
  }
  .p-company .area-child-list a:hover {
    color: #ff5912;
    text-decoration: underline;
  }
  .p-company .area-child-list .child-list {
    display: flex;
    padding: 20px 0 10px;
    border-bottom: dashed 1px rgba(0, 0, 0, 0.5);
  }
  .p-company .area-links {
    margin-bottom: 60px;
  }
  .p-company .area-links ul {
    display: flex;
    margin: 0 -10px;
  }
  .p-company .area-links li {
    width: calc(100% / 7);
    padding: 0 10px;
  }
  .p-company .area-links a {
    display: block;
    color: #000;
    border: solid 1px #707070;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    padding: 10px;
  }
  .p-company .area-links a.is-active, .p-company .area-links a:hover {
    border: solid 1px #ff5912;
    color: #ff5912;
  }
}

.p-company .area-wrap {
  display: none;
}

.p-company .area-wrap.is-active {
  display: block;
}

.p-company .partner {
  padding-top: 130px;
  margin-top: -130px;
}

@media all and (max-width: 767px) {
  .p-company .area-links {
    position: relative;
    border: solid 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    padding: 10px 15px;
    height: 40px;
  }
  .p-company .area-links::before, .p-company .area-links::after {
    position: absolute;
    content: "";
    pointer-events: none;
  }
  .p-company .area-links::before {
    top: 15px;
    right: 11px;
    border: solid 8px transparent;
    border-top: solid 10px #fff;
    z-index: 1;
  }
  .p-company .area-links::after {
    top: 0;
    bottom: 0;
    right: 0;
    width: 40px;
    background: #000;
  }
  .p-company .area-links select {
    width: 100%;
    height: 100%;
  }
  .p-company .detail {
    flex-direction: column;
  }
  .p-company .list,
  .p-company .map {
    width: 100%;
  }
  .p-company .list {
    margin-bottom: 40px;
  }
  .p-company .text-row .title {
    font-weight: bold;
  }
  .p-company .partner {
    padding-top: 80px;
    margin-top: -80px;
  }
}

.p-recruit .fv {
  position: relative;
}

.p-recruit .bg {
  width: 100%;
  height: auto;
}

.p-recruit .bg img {
  width: 100%;
  max-width: initial;
}

.p-recruit .catch {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.p-recruit .catch .main {
  font-size: 48px;
  font-style: italic;
  font-family: "Playfair Display", sans-serif;
  line-height: 1.15;
  letter-spacing: 2.7px;
  margin-bottom: 20px;
}

.p-recruit .catch .sub {
  font-size: 26px;
  line-height: 1.62;
  letter-spacing: 2.2px;
}

.p-recruit .main-link {
  text-align: center;
  margin: 50px 0;
}

.p-recruit .staff-list {
  color: #fff;
}

.p-recruit .requirements-wrap .requirements-list > li + li {
  margin-top: 100px;
}

.p-recruit .requirements-wrap .requirements-list .title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.69;
  letter-spacing: 1.1px;
  text-align: center;
  padding-bottom: 60px;
}

@media all and (max-width: 767px) {
  .p-recruit .fv {
    overflow: hidden;
  }
  .p-recruit .bg {
    width: auto;
    height: calc(100vh - 80px);
  }
  .p-recruit .bg img {
    max-width: initial;
    height: 100%;
    width: auto;
    vertical-align: bottom;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
  }
  .p-recruit .catch .main {
    font-size: 36px;
    line-height: 0.83;
    letter-spacing: 2px;
  }
  .p-recruit .catch .sub {
    font-size: 16px;
    line-height: 1.69;
    letter-spacing: 1.4px;
  }
  .p-recruit .requirements-wrap .requirements-list > li + li {
    margin-top: 50px;
  }
  .p-recruit .requirements-wrap .requirements-list .title {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 2px;
    text-align: left;
    padding-bottom: 20px;
  }
}

.p-products .product {
  margin-bottom: 30px;
}

@media all and (max-width: 767px) {
  .p-products .product {
    margin-bottom: 0;
  }
}

.p-rentalspace .space-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.69;
  letter-spacing: 1.1px;
  text-align: center;
  margin-bottom: 20px;
}

.p-flowerartcollection .collection-wrap {
  display: flex;
  justify-content: space-between;
}

.p-flowerartcollection .collection-wrap .img-area {
  width: calc(100% / 3 * 2 - 25px);
}

.p-flowerartcollection .collection-wrap .img-area img {
  display: block;
  max-width: 600px;
  margin: auto;
}

.p-flowerartcollection .collection-wrap .img-area.is-big img {
  max-width: 100%;
}

.p-flowerartcollection .collection-wrap .text-area {
  width: calc(100% / 3 * 1 - 25px);
}

.p-flowerartcollection .collection-wrap .text-area h2 {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  letter-spacing: 2px;
}

.p-flowerartcollection .collection-wrap .text-area p {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.67;
  letter-spacing: 1.4px;
}

.p-flowerartcollection .collection-wrap .text-area p + h2 {
  margin-top: 40px;
}

@media all and (max-width: 767px) {
  .p-flowerartcollection .collection-wrap {
    flex-direction: column;
  }
  .p-flowerartcollection .collection-wrap .img-area {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-flowerartcollection .collection-wrap .img-area img {
    max-width: 100%;
  }
  .p-flowerartcollection .collection-wrap .text-area {
    width: 100%;
  }
  .p-flowerartcollection .collection-wrap .text-area h2 {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 1.7px;
  }
  .p-flowerartcollection .collection-wrap .text-area p {
    margin-bottom: 20px;
  }
  .p-flowerartcollection .collection-wrap .text-area p + h2 {
    margin-top: 30px;
  }
}

/* utility */
@media all and (max-width: 767px) {
  .u-tab-pc-visibility {
    display: none;
  }
}

@media all and (min-width: 766px) {
  .u-tab-pc-hidden {
    display: none;
  }
}

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

.u-left {
  text-align: left;
}

@media all and (max-width: 767px) {
  .u-order-0-sp {
    order: 0;
  }
  .u-order-1-sp {
    order: 1;
  }
  .u-order-2-sp {
    order: 2;
  }
  .u-order-3-sp {
    order: 3;
  }
  .u-order-4-sp {
    order: 4;
  }
  .u-order-5-sp {
    order: 5;
  }
}

@media all and (min-width: 766px) {
  .u-order-0-pc {
    order: 0;
  }
  .u-order-1-pc {
    order: 1;
  }
  .u-order-2-pc {
    order: 2;
  }
  .u-order-3-pc {
    order: 3;
  }
  .u-order-4-pc {
    order: 4;
  }
  .u-order-5-pc {
    order: 5;
  }
}

@media all and (min-width: 766px) {
  .u-pc-block {
    display: block;
  }
}

.fn-navi-button,
.fn-page-top {
  cursor: pointer;
  color: #000;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.slick-dots li {
  margin: 0;
}

.slick-dots li button {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  font-size: 0;
}

.slick-dots li button:before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  border: solid 1px #000;
  content: "";
}

.slick-dots li.slick-active button:before {
  background: #000;
}
