@charset "UTF-8";
/*
Theme Name:Delifeテーマ
Description:WordPressオリジナルテーマ
Version:1.0.0
*/
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
@font-face {
  font-display: swap;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
}
@font-face {
  font-display: swap;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Roboto-Medium.ttf") format("ttf");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Roboto-Bold.ttf") format("ttf");
}
/*======================
  reset
======================*/
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
p,
a,
img,
dl,
dt,
dd,
ol,
ul,
li,
label,
table,
tbody,
tr,
th,
td,
figure,
blockquote {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-in;
}

li {
  list-style: none;
}

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

video {
  max-width: 100%;
  height: auto;
}

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

tr,
th,
td {
  vertical-align: middle;
}

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

small {
  font-size: inherit;
}

/************************
　スクロールアニメーション用
*************************/
.fadeIn {
  opacity: 0;
  transition: 800ms;
}
.fadeIn.is-scrolled {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  transition: 800ms;
}
.fadeInUp.is-scrolled {
  opacity: 1;
  transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  transform: translateX(-20px);
  transition: 800ms;
}
.fadeInLeft.is-scrolled {
  opacity: 1;
  transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  transform: translateX(20px);
  transition: 800ms;
}
.fadeInRight.is-scrolled {
  opacity: 1;
  transform: translateX(0);
}

/* ----------------------
  animation
---------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*======================
  base
======================*/
body {
  color: #333;
  font-family: "YuGothic";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71;
  letter-spacing: 0em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
@media screen and (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0em;
  }
}
body.backlayer {
  overflow: hidden;
}

/* -----------------------------------------------------------------
 Layout
----------------------------------------------------------------- */
@media screen and (min-width: 992px) {
  .pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 992px) {
  .tab-none {
    display: none !important;
  }
}

/*=======================
  inner
=======================*/
/*=======================
  main
=======================*/
/* -----------------------------------------------------------------
 Component
----------------------------------------------------------------- */
/*=======================
  404
=======================*/
.c-404 {
  padding: 50px 0;
}
@media screen and (min-width: 992px) {
  .c-404 {
    padding: 100px 0;
  }
}
.c-404__title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 992px) {
  .c-404__title {
    font-size: 40px;
  }
}
.c-404__description {
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
}
.c-404__link {
  display: block;
  margin-top: 1em;
  color: #006ab7;
  text-align: center;
  text-decoration: underline;
}

/*=======================
  breadcrumb
=======================*/
.c-breadcrumb {
  display: block;
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}
.c-breadcrumb__item {
  position: relative;
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 24px;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "/";
  font-size: 12px;
  font-weight: 600;
  color: #333;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
.c-breadcrumb__item > a {
  font-size: 12px;
  font-family: Helvetica;
  font-weight: 600;
  color: #333;
}
.c-breadcrumb__item > a:hover {
  opacity: 0.7;
}
.c-breadcrumb__item > a.is-current {
  color: #fff;
  pointer-events: none;
}
.c-breadcrumb.m-post {
  margin: 0 5.33vw;
}
@media screen and (min-width: 1440px) {
  .c-breadcrumb.m-post {
    margin: 0 7.15vw;
  }
}
.c-breadcrumb.m-post .c-breadcrumb__list {
  max-width: 1250px;
  margin: 0 auto;
}
.c-breadcrumb.m-post .c-breadcrumb__item > a.is-current {
  color: #dedede;
}
.c-breadcrumb.m-contact {
  margin: 20px 5.33vw 0;
}
@media screen and (min-width: 1440px) {
  .c-breadcrumb.m-contact {
    margin: 40px 7.15vw 0;
  }
}
.c-breadcrumb.m-contact .c-breadcrumb__list {
  max-width: 1250px;
  margin: 0 auto;
}
.c-breadcrumb.m-contact .c-breadcrumb__item > a.is-current {
  color: #dedede;
}

/*=======================
  btn
=======================*/
/*=======================
  cateogries
=======================*/
.c-content-area {
  word-break: break-word;
}
.c-content-area h1 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin: 1em 0;
}
@media screen and (min-width: 992px) {
  .c-content-area h1 {
    font-size: 28px;
    letter-spacing: 0;
  }
}
.c-content-area h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin: 1em 0;
}
@media screen and (min-width: 992px) {
  .c-content-area h2 {
    font-size: 24px;
    letter-spacing: 0;
  }
}
.c-content-area h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 1em 0;
}
@media screen and (min-width: 992px) {
  .c-content-area h3 {
    font-size: 18px;
    letter-spacing: 0;
  }
}
.c-content-area h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin: 1em 0;
}
@media screen and (min-width: 992px) {
  .c-content-area h4 {
    font-size: 16px;
    letter-spacing: 0;
  }
}
.c-content-area h5 {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  margin: 1em 0;
}
@media screen and (min-width: 992px) {
  .c-content-area h5 {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.c-content-area h6 {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  margin: 1em 0;
}
@media screen and (min-width: 992px) {
  .c-content-area h6 {
    font-size: 12px;
    letter-spacing: 0;
  }
}
.c-content-area p {
  margin-bottom: 40px;
}
.c-content-area a {
  color: #006ab7;
  text-decoration: none;
}
.c-content-area a:hover {
  opacity: 0.7;
}
.c-content-area table {
  border-top: 1px solid #ddd;
}
.c-content-area table tr {
  border-bottom: 1px solid #ddd;
}
.c-content-area table tr th {
  padding: 1em 0.5em;
  font-size: 1em;
}
.c-content-area table tr td {
  padding: 1em 0.5em;
  font-size: 1em;
}

/*=======================
  form element
  フォームの各要素を初期化して、各ブラウザ間の差異をなくす
=======================*/
.c-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0.8em;
  background-image: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
}
.c-text:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}
.c-text::-moz-placeholder {
  color: #cdd6dd;
}
.c-text::placeholder {
  color: #cdd6dd;
}

.c-textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 200px;
  padding: 0.8em;
  background-image: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  word-break: break-word;
}
.c-textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}
.c-textarea::-moz-placeholder {
  color: #cdd6dd;
}
.c-textarea::placeholder {
  color: #cdd6dd;
}

.c-radio {
  display: none;
}
.c-radio + span {
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.4em;
  position: relative;
  cursor: pointer;
}
.c-radio + span::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.c-radio + span::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.25em;
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.c-radio[type="radio"]:checked + span:after {
  opacity: 1;
}

.c-checkbox {
  display: none;
}
.c-checkbox + span {
  display: inline-block;
  position: relative;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.4em;
  vertical-align: middle;
  cursor: pointer;
}
.c-checkbox + span::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.c-checkbox + span::after {
  content: "";
  background: #000;
  color: #273200;
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.1em;
  opacity: 0;
}
.c-checkbox[type="checkbox"]:checked + span:after {
  opacity: 1;
}

.c-select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0.8em;
  background: transparent url("../img/common/select-arrow.svg") no-repeat center
    right 16px/11px auto;
  background-size: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
}
.c-select::-ms-expand {
  display: none;
}
.c-select:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}
.c-select::-moz-placeholder {
  color: #cdd6dd;
}
.c-select::placeholder {
  color: #cdd6dd;
}

.c-submit {
  -webkit-appearance: none;
  display: inline-block;
  padding: 0.6em 2em;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  border: none;
  border-radius: 0;
  margin: 0 0 1em;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  text-decoration: none;
}
.c-submit:hover,
.c-submit:focus {
  outline: none;
}
.c-submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}

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

/*=======================
  page-template
=======================*/
/*=======================
  pagination
=======================*/
.c-pagination {
  width: 100%;
  /* WP-Pagenavi用 */
}
.c-pagination .wp-pagenavi {
  padding-top: 80px;
  position: relative;
  width: 100%;
  text-align: center;
}
.c-pagination .wp-pagenavi span,
.c-pagination .wp-pagenavi a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  padding: 0;
  border: 2px solid #000;
  margin: 0 6px 0.25em;
  font-size: 18px;
  font-family: Helvetica;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
}
.c-pagination .wp-pagenavi span.current,
.c-pagination .wp-pagenavi span:hover,
.c-pagination .wp-pagenavi a.current,
.c-pagination .wp-pagenavi a:hover {
  transition: 0.3s;
  background: #000;
  color: #fff;
}
.c-pagination .wp-pagenavi .pages {
  display: none;
}
.c-pagination .wp-pagenavi .previouspostslink,
.c-pagination .wp-pagenavi .nextpostslink,
.c-pagination .wp-pagenavi .first,
.c-pagination .wp-pagenavi .last {
  display: none;
}
.c-pagination .wp-pagenavi .extend {
  display: none;
}

/* -----------------------------------------------------------------
 Utility
----------------------------------------------------------------- */
.u-pc-none {
  display: block;
}
@media screen and (min-width: 992px) {
  .u-pc-none {
    display: none;
  }
}

.u-sp-none {
  display: none;
}
@media screen and (min-width: 992px) {
  .u-sp-none {
    display: block;
  }
}

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

.u-only-pc {
  display: none;
}
@media screen and (min-width: 992px) {
  .u-only-pc {
    display: block;
  }
}

.u-fit-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* -----------------------------------------------------------------
Project
----------------------------------------------------------------- */
/*====================================================
*
*	page: about
*
====================================================*/
.p-about-top {
  background: #efe8e3;
  margin-top: 140px;
}
@media screen and (max-width: 992px) {
  .p-about-top {
    margin-top: 76px;
  }
}
.p-about-top__inner {
  max-width: 1376px;
  margin: 0 auto;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 84px;
}
@media screen and (max-width: 992px) {
  .p-about-top__inner {
    padding-top: 3px;
    padding-bottom: 32px;
  }
}
.p-about-top__inner .breadcrumb-area {
  display: flex;
}
@media screen and (max-width: 992px) {
  .p-about-top__inner .breadcrumb-area {
    padding-left: 16px;
  }
}
.p-about-top__inner .breadcrumb-area p {
  padding-right: 12px;
}
@media screen and (max-width: 992px) {
  .p-about-top__inner .breadcrumb-area p {
    padding-right: 6px;
  }
}
.p-about-top__inner .breadcrumb-area p:nth-child(1) {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: center;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-about-top__inner .breadcrumb-area p:nth-child(1) {
    font-size: 8px;
  }
}
@media screen and (max-width: 992px) and (-webkit-min-device-pixel-ratio: 0) {
  .p-about-top__inner .breadcrumb-area p:nth-child(1) {
    font-size: 10px;
    transform: scale(0.8);
  }
}
.p-about-top__inner .breadcrumb-area p:nth-child(3) {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 180%;
  /* identical to box height, or 22px */
  /* #847563 */
  color: #847563;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .p-about-top__inner .breadcrumb-area p:nth-child(3) {
    font-size: 8px;
  }
}
@media screen and (max-width: 992px) and (-webkit-min-device-pixel-ratio: 0) {
  .p-about-top__inner .breadcrumb-area p:nth-child(3) {
    font-size: 10px;
    transform: scale(0.8);
  }
}
.p-about-top__inner .breadcrumb-area p:nth-child(4) {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 180%;
  /* identical to box height, or 22px */
  /* Font/Primary */
  color: #273200;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .p-about-top__inner .breadcrumb-area p:nth-child(4) {
    font-size: 8px;
  }
}
@media screen and (max-width: 992px) and (-webkit-min-device-pixel-ratio: 0) {
  .p-about-top__inner .breadcrumb-area p:nth-child(4) {
    font-size: 10px;
    transform: scale(0.8);
  }
}
.p-about-top__inner .breadcrumb-area p:nth-child(5) {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 180%;
  /* identical to box height, or 22px */
  /* Font/Primary */
  color: #273200;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .p-about-top__inner .breadcrumb-area p:nth-child(5) {
    font-size: 8px;
    padding-top: 2px;
  }
}
@media screen and (max-width: 992px) and (-webkit-min-device-pixel-ratio: 0) {
  .p-about-top__inner .breadcrumb-area p:nth-child(5) {
    font-size: 10px;
    transform: scale(0.8);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-left: -17px;
  }
}
.p-about-top__inner .breadcrumb-area .img-area {
  padding-right: 8px;
}
@media screen and (max-width: 992px) {
  .p-about-top__inner .breadcrumb-area .img-area {
    width: 8px;
    padding-right: initial;
  }
}
.p-about-top__inner .breadcrumb-area .img-area img {
  margin-bottom: 4px;
}
.p-about-top__inner .title-area {
  width: 100%;
  margin: 0 auto;
  padding-top: 48px;
}
@media screen and (max-width: 992px) {
  .p-about-top__inner .title-area {
    padding-top: 10px;
  }
}
.p-about-top__inner .title-area .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-about-top__inner .title-area .title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 1.3px;
  }
}
.p-about-top__inner .title-area .sub-title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  /* identical to box height, or 29px */
  text-align: center;
  color: #333333;
  padding-top: 15px;
}
@media screen and (max-width: 992px) {
  .p-about-top__inner .title-area .sub-title {
    padding-top: initial;
    font-size: 13px;
  }
}

.p-about-greeting__inner {
  max-width: 1168px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  padding-top: 88px;
}
@media screen and (max-width: 992px) {
  .p-about-greeting__inner {
    padding-left: 20px;
    padding-right: 17px;
    padding-top: 38px;
  }
}
@media screen and (max-width: 992px) {
  .p-about-greeting__inner .titlegroup {
    max-width: 836px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 992px) {
  .p-about-greeting__inner .titlegroup .title {
    font-size: 40px;
  }
}
.p-about-greeting__inner .content-group {
  display: flex;
  max-width: 1040px;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 32px;
}
@media screen and (max-width: 992px) {
  .p-about-greeting__inner .content-group {
    max-width: 527px;
    margin: 0 auto;
    margin-top: 18px;
    flex-direction: column-reverse;
  }
}
.p-about-greeting__inner .content-group .text-group {
  max-width: 527px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-about-greeting__inner .content-group .text-group {
    margin-top: 21px;
  }
}
.p-about-greeting__inner .content-group .text-group p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 38px;
  /* or 158% */
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-about-greeting__inner .content-group .text-group p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: initial;
  }
}
.p-about-greeting__inner .content-group .img-group {
  max-width: 454px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-about-greeting__inner .content-group .img-group {
    max-width: 185px;
    margin: 0 auto;
  }
}
.p-about-greeting__inner .content-group .main-person-area {
  margin-top: 140px;
}
@media screen and (max-width: 992px) {
  .p-about-greeting__inner .content-group .main-person-area {
    margin-top: 37px;
  }
}
.p-about-greeting__inner .content-group .main-person-area .img-group {
  border-radius: 16px;
}
@media screen and (max-width: 992px) {
  .p-about-greeting__inner .content-group .main-person-area .img-group {
    border-radius: initial;
  }
}
.p-about-greeting__inner .content-group .main-person-area .company {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  /* identical to box height */
  text-align: end;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-about-greeting__inner .content-group .main-person-area .company {
    letter-spacing: initial;
    padding-right: 5px;
    font-size: 14px;
    line-height: 24px;
  }
}
.p-about-greeting__inner .content-group .main-person-area .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  /* identical to box height */
  text-align: end;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-about-greeting__inner .content-group .main-person-area .title {
    letter-spacing: initial;
    padding-right: 5px;
    font-size: 14px;
    line-height: 24px;
  }
}
.p-about-greeting__inner .content-group .main-person-area .name {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  text-align: end;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-about-greeting__inner .content-group .main-person-area .name {
    letter-spacing: initial;
    padding-right: 3px;
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
  }
}

.p-about-purpose__inner {
  max-width: 1168px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  padding-top: 120px;
}
@media screen and (max-width: 992px) {
  .p-about-purpose__inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 87px;
    max-width: 876px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 992px) {
  .p-about-purpose__inner .titlegroup .title {
    font-size: 40px;
  }
}
.p-about-purpose__inner .content-group {
  max-width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-about-purpose__inner .content-group {
    max-width: 680px;
  }
}
.p-about-purpose__inner .content-group .main-text {
  margin-top: 32px;
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  /* identical to box height */
  text-align: center;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-about-purpose__inner .content-group .main-text {
    font-family: "Roboto";
    margin-top: 17px;
    font-size: 28px;
    line-height: 115%;
    text-align: start;
    letter-spacing: 1.5px;
  }
}
@media screen and (max-width: 992px) and (max-width: 450px) {
  .p-about-purpose__inner .content-group .main-text {
    max-width: 254px;
  }
}
.p-about-purpose__inner .content-group .sub-text {
  margin-top: 40px;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.1em;
  color: #333333;
  padding-left: 9px;
}
@media screen and (max-width: 992px) {
  .p-about-purpose__inner .content-group .sub-text {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin-top: 16px;
    padding-left: initial;
    letter-spacing: initial;
  }
}

.p-about-value {
  margin-top: 123px;
}
@media screen and (max-width: 992px) {
  .p-about-value {
    margin-top: 46px;
  }
}
.p-about-value__inner {
  padding-top: 120px;
  padding-bottom: 40px;
  background: #efe8e3;
}
@media screen and (max-width: 992px) {
  .p-about-value__inner {
    padding-top: 37px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 992px) {
  .p-about-value__inner .titlegroup .title {
    font-size: 40px;
  }
}
.p-about-value__inner .titlegroup {
  max-width: 1168px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 992px) {
  .p-about-value__inner .titlegroup {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 876px;
    margin: 0 auto;
  }
}
.p-about-value__inner .content-group {
  padding-top: 32px;
  max-width: 836px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-about-value__inner .content-group {
    padding-top: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-about-value__inner .content-group__single {
  padding-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .p-about-value__inner .content-group__single {
    padding-bottom: 24px;
  }
}
.p-about-value__inner .content-group__single .main-text {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 53px;
  /* identical to box height */
  color: #333333;
  margin-bottom: 32px;
}
@media screen and (max-width: 992px) {
  .p-about-value__inner .content-group__single .main-text {
    font-size: 22px;
    line-height: 135%;
    margin-bottom: 16px;
  }
}
.p-about-value__inner .content-group__single .sub-text {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-about-value__inner .content-group__single .sub-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: initial;
  }
}

.p-about-feature {
  margin-top: 126px;
}
@media screen and (max-width: 992px) {
  .p-about-feature {
    margin-top: 49px;
  }
}
.p-about-feature__inner {
  max-width: 1168px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-about-feature__inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 876px;
    margin: 0 auto;
  }
}
.p-about-feature__inner .titlegroup .title {
  font-family: "YuGothic";
}
@media screen and (max-width: 992px) {
  .p-about-feature__inner .titlegroup .title {
    font-size: 32px;
    line-height: 46px;
  }
}
.p-about-feature__inner .content {
  max-width: 913px;
  margin: 0 auto;
}
.p-about-feature__inner .content .first-text {
  max-width: 835px;
  padding-top: 38px;
  padding-right: 20px;
  margin: 0 auto;
  width: 100%;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-about-feature__inner .content .first-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: initial;
    padding-top: 20px;
    padding-right: initial;
  }
}
.p-about-feature__inner .content .img-group {
  margin-top: 53px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-about-feature__inner .content .img-group {
    max-width: 294.27px;
    margin: 0 auto;
    margin-top: 38px;
  }
}
.p-about-feature__inner .content .second-text {
  margin-top: 24px;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: 3.1px;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-about-feature__inner .content .second-text {
    font-size: 20px;
    line-height: 135%;
    letter-spacing: 1px;
    margin-top: 22px;
  }
}
.p-about-feature__inner .content .third-text {
  margin-top: 24px;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-about-feature__inner .content .third-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.1px;
    margin-top: 17px;
  }
}

.p-about-profile {
  margin-top: 129px;
}
@media screen and (max-width: 992px) {
  .p-about-profile {
    margin-top: 93px;
  }
}
.p-about-profile__inner {
  max-width: 1168px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-about-profile__inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 876px;
    margin: 0 auto;
  }
}
.p-about-profile__inner .titlegroup {
  padding-left: 24px;
}
@media screen and (max-width: 992px) {
  .p-about-profile__inner .titlegroup {
    padding-left: initial;
  }
}
.p-about-profile__inner .titlegroup .title {
  font-family: "YuGothic";
}
@media screen and (max-width: 992px) {
  .p-about-profile__inner .titlegroup .title {
    font-size: 40px;
    line-height: 47px;
  }
}
.p-about-profile__inner .titlegroup .title span {
  font-family: "Robot";
  letter-spacing: -0.6px;
  font-size: 46px;
}
@media screen and (max-width: 992px) {
  .p-about-profile__inner .titlegroup .title span {
    font-size: 35px;
    line-height: 47px;
  }
}
.p-about-profile__inner .content-group {
  max-width: 846px;
  padding-left: 11px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #ffffff;
  margin-top: 32px;
}
@media screen and (max-width: 992px) {
  .p-about-profile__inner .content-group {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 575px;
  }
}
.p-about-profile__inner .content-group__inner {
  display: flex;
  justify-content: space-between;
  max-width: 737px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media screen and (max-width: 992px) {
  .p-about-profile__inner .content-group__inner {
    padding-bottom: 45px;
    padding-top: 31px;
    flex-direction: column;
  }
}
.p-about-profile__inner .content-group__inner .text-group {
  max-width: 535px;
  width: 100%;
}
.p-about-profile__inner .content-group__inner .text-group .title-group-main {
  display: flex;
  align-items: baseline;
  max-width: 360px;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .p-about-profile__inner .content-group__inner .text-group .title-group-main {
    flex-direction: column;
  }
}
.p-about-profile__inner
  .content-group__inner
  .text-group
  .title-group-main
  .name {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: 0.1em;
  color: #333333;
  width: 154px;
}
@media screen and (max-width: 992px) {
  .p-about-profile__inner
    .content-group__inner
    .text-group
    .title-group-main
    .name {
    margin-top: 40px;
    font-size: 24px;
    line-height: 35px;
  }
}
.p-about-profile__inner
  .content-group__inner
  .text-group
  .title-group-main
  .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.1em;
  color: #333333;
  width: 187px;
}
@media screen and (max-width: 992px) {
  .p-about-profile__inner
    .content-group__inner
    .text-group
    .title-group-main
    .title {
    font-size: 14px;
    line-height: 24px;
    padding-top: 8px;
    letter-spacing: initial;
  }
}
.p-about-profile__inner .content-group__inner .text-group .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.1em;
  color: #333333;
  margin-top: 17px;
}
@media screen and (max-width: 992px) {
  .p-about-profile__inner .content-group__inner .text-group .content {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: initial;
    margin-top: 8px;
  }
}
.p-about-profile__inner .content-group__inner .img-group {
  margin-top: 22px;
}
@media screen and (max-width: 992px) {
  .p-about-profile__inner .content-group__inner .img-group {
    margin: 0 auto;
  }
}

.p-about-company {
  margin-top: 122px;
}
@media screen and (max-width: 992px) {
  .p-about-company {
    margin-top: 87px;
  }
}
.p-about-company__inner {
  max-width: 1168px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-about-company__inner {
    padding-left: 20px;
    padding-right: 13px;
    max-width: 869px;
    margin: 0 auto;
  }
}
.p-about-company__inner .titlegroup {
  padding-left: 22px;
}
@media screen and (max-width: 992px) {
  .p-about-company__inner .titlegroup {
    padding-left: initial;
  }
}
@media screen and (max-width: 992px) {
  .p-about-company__inner .titlegroup .title {
    font-size: 40px;
  }
}
.p-about-company__inner .content-group {
  max-width: 917px;
  padding-top: 16px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-about-company__inner .content-group {
    padding-top: 1px;
  }
}
.p-about-company__inner .content-group li {
  display: flex;
  padding-bottom: 16px;
  padding-top: 16px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  align-items: center;
}
.p-about-company__inner .content-group li .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  /* identical to box height */
  color: #333333;
  max-width: 192px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-about-company__inner .content-group li .title {
    max-width: 56px;
    font-size: 14px;
    line-height: 24px;
    margin-right: 12px;
  }
}
.p-about-company__inner .content-group li .ajust-height {
  line-height: 41px;
}
@media screen and (max-width: 992px) {
  .p-about-company__inner .content-group li .ajust-height {
    line-height: 26px;
  }
}
.p-about-company__inner .content-group li .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  /* identical to box height */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-about-company__inner .content-group li .content {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 992px) {
  .p-about-company__inner .content-group .sp-ajust .content {
    letter-spacing: -0.3px;
  }
}

/*=======================
  article (single post)
=======================*/
/*====================================================
*
*	page: contact
*
====================================================*/
.p-contact-main {
  margin-top: 84px;
}
@media screen and (max-width: 992px) {
  .p-contact-main {
    margin-top: 48px;
    letter-spacing: 1px;
  }
}
.p-contact-main__inner {
  max-width: 931px;
  margin: 0 auto;
  padding-right: 34px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-contact-main__inner .main-title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .main-title {
    font-size: 20px;
    line-height: 135%;
  }
}
.p-contact-main__inner .img-group {
  margin-top: 19px;
  width: 100%;
  height: 250px;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .img-group {
    margin-top: 24px;
    height: 94px;
  }
  .p-contact-main__inner .img-group img {
    height: 100%;
  }
}
.p-contact-main__inner .sub-text {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  /* identical to box height, or 29px */
  color: #333333;
  margin-top: 16px;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .sub-text {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: initial;
    margin-top: 24px;
    font-weight: 700;
  }
}
.p-contact-main__inner .info-group {
  display: flex;
  margin-top: 37px;
  max-width: 386px;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .info-group {
    flex-direction: column;
    align-items: initial;
    margin-top: 9px;
  }
}
.p-contact-main__inner .info-group .upper-group {
  display: flex;
  align-items: center;
}
.p-contact-main__inner .info-group img {
  width: 16px;
  margin-right: 8px;
  height: 23.54px;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .info-group img {
    width: 19px;
    height: 27px;
  }
}
.p-contact-main__inner .info-group .tel {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  color: #333333;
  margin-right: 24px;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .info-group .tel {
    font-size: 28px;
    line-height: 115%;
  }
}
.p-contact-main__inner .info-group .time {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  /* identical to box height, or 29px */
  color: #333333;
  padding-top: 12px;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .info-group .time {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: initial;
    padding-top: 6px;
  }
}
.p-contact-main__inner .contact-group {
  max-width: 896px;
  width: 100%;
  margin: 0 auto;
  padding-top: 4px;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .contact-group {
    padding-top: 7px;
  }
}
.p-contact-main__inner .contact-group__single {
  margin-top: 24px;
}
.p-contact-main__inner .contact-group__single ::-moz-placeholder {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  /* identical to box height, or 29px */
  /* Font/Secondary */
  color: #999999;
  padding-left: 13px;
  padding-top: 4px;
}
.p-contact-main__inner .contact-group__single ::placeholder {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  /* identical to box height, or 29px */
  /* Font/Secondary */
  color: #999999;
  padding-left: 13px;
  padding-top: 4px;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .contact-group__single ::-moz-placeholder {
    font-size: 14px;
    line-height: 24px;
  }
  .p-contact-main__inner .contact-group__single ::placeholder {
    font-size: 14px;
    line-height: 24px;
  }
}
.p-contact-main__inner .contact-group__single .title-group {
  display: flex;
}
.p-contact-main__inner .contact-group__single .contact-title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  /* or 32px */
  color: #333333;
  padding-bottom: 8px;
  margin-right: 7px;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .contact-group__single .contact-title {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: initial;
    margin-right: 14px;
    margin-top: 1px;
  }
}
.p-contact-main__inner .contact-group__single .a-text {
  padding-bottom: initial;
}
.p-contact-main__inner .contact-group__single input {
  height: 39px;
  width: 99%;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .contact-group__single input {
    width: 97.5%;
  }
}
.p-contact-main__inner .contact-group__single .required {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 180%;
  /* identical to box height, or 22px */
  /* /Base/White */
  color: #ffffff;
  width: 40px;
  background: #c12225;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  margin-top: 5px;
}
.p-contact-main__inner .contact-group__single .radio-group {
  display: flex;
  align-items: center;
  height: 33px;
  margin-left: -7px;
  margin-bottom: 4px;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .contact-group__single .radio-group {
    margin-left: -4px;
    margin-bottom: 0px;
    margin-top: 3px;
  }
}
.p-contact-main__inner .contact-group__single .radio-group input {
  max-width: 20px;
  width: 100%;
  height: 27px;
}
.p-contact-main__inner .contact-group__single .radio-group label {
  margin-left: 8px;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  /* identical to box height, or 29px */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .contact-group__single .radio-group label {
    font-size: 15px;
    line-height: 180%;
  }
}
.p-contact-main__inner .contact-group__single .radio-group span {
  font-size: 12px;
  margin-top: 2px;
  line-height: 170%;
  display: block;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .contact-group__single .a-radio-area {
    align-items: initial;
    height: initial;
  }
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .contact-group__single .a-text-size {
    font-size: 18px;
    line-height: 180%;
  }
}
.p-contact-main__inner .contact-group__single textarea {
  width: 100%;
  height: 233px;
}
.p-contact-main__inner .contact-group .pp-area {
  margin: 0 auto;
  margin-top: 22px;
  max-width: 334px;
  padding-left: 54px;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .contact-group .pp-area {
    max-width: 269px;
    padding-left: initial;
  }
}
.p-contact-main__inner .contact-group .pp-area input {
  transform: scale(1.5);
  margin-left: -2px;
  margin-right: 10px;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .contact-group .pp-area input {
    margin-left: 4px;
    margin-right: 11px;
  }
}
.p-contact-main__inner .contact-group .btn-area {
  height: 80px;
  background: #bda38d;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-top: 38px;
}
.p-contact-main__inner .contact-group .btn-area button {
  background: initial;
  border: initial;
}
.p-contact-main__inner .contact-group .btn-area p {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  /* identical to box height */
  color: #ffffff;
}
@media screen and (max-width: 992px) {
  .p-contact-main__inner .contact-group .btn-area p {
    font-size: 20px;
    line-height: 29px;
  }
}

/*====================================================
*
*	page: faq
*
====================================================*/
/*====================================================
*
*	Home
*
====================================================*/
.all-group .ex-main-group a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-in;
}
.all-group .ex-main-group li {
  list-style: none;
}
.all-group .ex-main-group img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.all-group .ex-main-group video {
  max-width: 100%;
  height: auto;
}
.all-group .ex-main-group table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

@media screen and (max-width: 992px) {
  .p-fv {
    margin-top: 94px;
  }
}
.p-fv__inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-image: url(../img/home/o-top-fv.png);
  z-index: 0;
}
.p-fv__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(222, 235, 244, 0.56) 0%,
    rgba(235, 232, 227, 0.56) 100%
  );
  position: absolute;
  top: 0;
  z-index: -2;
}
.p-fv__inner .fv-image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.p-fv__inner .title-group {
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .title-group {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-fv__inner .title-group__main {
  padding-top: 93px;
  font-weight: 700;
  font-size: 56px;
  line-height: 68px;
  /* identical to box height */
  letter-spacing: 0.1em;
  color: #333333;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .title-group__main {
    padding-top: 24px;
    font-size: 32px;
    line-height: 46px;
  }
}
.p-fv__inner .title-group__main .first {
  text-align: start;
  background: #ffffff;
  max-width: 338px;
  padding-left: 15px;
  padding-bottom: 6px;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .title-group__main .first {
    padding-left: 12px;
    padding-bottom: 0px;
    max-width: 196px;
  }
}
.p-fv__inner .title-group__main .first span {
  color: #bda38d;
}
.p-fv__inner .title-group__main .second {
  margin-top: 19px;
  text-align: start;
  background: #ffffff;
  max-width: 895px;
  padding-left: 17px;
  padding-bottom: 6px;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .title-group__main .second {
    margin-top: 7px;
    padding-left: initial;
    padding-bottom: 0px;
    background-color: initial;
  }
}
.p-fv__inner .title-group__main .second .span-text {
  color: #bda38d;
}
.p-fv__inner .title-group__main .second .span-border {
  position: relative;
  z-index: 100000;
}
.p-fv__inner .title-group__main .second .span-border::after {
  content: "";
  position: absolute;
  background: rgba(189, 163, 141, 0.5);
  width: 99.5%;
  height: 16px;
  bottom: 6px;
  left: -4px;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .title-group__main .second .span-border::after {
    width: 96.5%;
    height: 7px;
    bottom: 5px;
    left: 0px;
    z-index: -1;
  }
}
.p-fv__inner .title-group__main .second .upper-text {
  background: #ffffff;
  max-width: 230px;
  padding-left: 12px;
}
.p-fv__inner .title-group__main .second .bottom-text {
  background: #ffffff;
  padding-left: 12px;
  margin-top: 8px;
  max-width: 301px;
}
.p-fv__inner .title-group__sub {
  margin-top: 32px;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  /* or 150% */
  letter-spacing: 0.1em;
  color: #333333;
  text-shadow: 16px 16px 16px #e1e1df;
  max-width: 424px;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .title-group__sub {
    font-family: "YuGothic";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* or 171% */
    color: #333333;
    margin-top: 24px;
    letter-spacing: initial;
  }
}
.p-fv__inner .other-group {
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 93px;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .other-group {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
  }
}
@media screen and (min-width: 992px) {
  .p-fv__inner .other-group__single {
    min-width: 424px;
  }
}
.p-fv__inner .other-group__discription {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  padding-top: 40px;
  /* identical to box height, or 150% */
  letter-spacing: 0.1em;
  color: #333333;
  text-shadow: 16px 16px 16px #e1e1df;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .other-group__discription {
    font-size: 20px;
    line-height: 135%;
    padding-top: 16px;
    letter-spacing: initial;
    letter-spacing: 1px;
  }
  .p-fv__inner .other-group__discription p:first-child {
    max-width: 209px;
  }
  .p-fv__inner .other-group__discription p:last-child {
    margin-top: 8px;
  }
}
.p-fv__inner .other-group .cta-btn {
  margin-top: 40px;
  max-width: 370px;
  max-height: 64px;
  width: 100%;
  background: #847563;
  border-radius: 144px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .other-group .cta-btn {
    margin-top: 16px;
    max-height: 56px;
  }
}
.p-fv__inner .other-group .cta-btn p {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  align-items: center;
  padding: 21px 0;
  color: #ffffff;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .other-group .cta-btn p {
    font-size: 16px;
  }
}
.p-fv__inner .other-group .infomation-group {
  max-width: 581px;
  width: 100%;
  padding-top: 28px;
  padding-left: 40px;
  padding-right: 40px;
  background: #ffffff;
  border-radius: 8px;
  filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.08));
}
@media screen and (max-width: 992px) {
  .p-fv__inner .other-group .infomation-group {
    margin-top: 40px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 16px;
    position: absolute;
    max-width: 89.3%;
    bottom: -140px;
  }
}
.p-fv__inner .other-group .infomation-group__inner {
  max-width: 501px;
  width: 100%;
  margin: 0 auto;
}
.p-fv__inner .other-group .infomation-group .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.1em;
  color: #bda38d;
}
.p-fv__inner .other-group .infomation-group ul {
  padding-top: 14px;
  padding-bottom: 11px;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .other-group .infomation-group ul {
    padding-top: 16px;
    padding-bottom: initial;
  }
}
.p-fv__inner .other-group .infomation-group ul li {
  margin-bottom: 17px;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .other-group .infomation-group ul li {
    margin-bottom: initial;
    padding-bottom: 16px;
  }
}
.p-fv__inner .other-group .infomation-group ul li .base-group {
  display: flex;
  align-items: center;
}
.p-fv__inner .other-group .infomation-group ul li .base-group .date {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  /* identical to box height, or 131% */
  letter-spacing: 0.06em;
  color: #333333;
  margin-right: 51px;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .other-group .infomation-group ul li .base-group .date {
    margin-right: 40px;
  }
}
.p-fv__inner .other-group .infomation-group ul li .base-group .category {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 21px;
  /* identical to box height, or 210% */
  /* identical to box height, or 210% */
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #bda38d;
  padding: 1px 30px;
}
.p-fv__inner .other-group .infomation-group ul li .message {
  margin-top: 6px;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height, or 150% */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-fv__inner .other-group .infomation-group ul li .message {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media screen and (max-width: 992px) {
  .p-top-about {
    margin-top: 218px;
  }
}
.p-top-about__inner {
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-top-about__inner {
    padding-left: initial;
    padding-right: initial;
  }
}
.p-top-about__inner .content-group {
  margin-top: 120px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .p-top-about__inner .content-group {
    flex-direction: column-reverse;
    max-width: 611px;
    margin: 0 auto;
  }
}
.p-top-about__inner .image-group {
  max-width: 611px;
}
@media screen and (max-width: 992px) {
  .p-top-about__inner .image-group {
    max-height: 265px;
  }
  .p-top-about__inner .image-group img {
    height: 100%;
    width: 100%;
    max-height: 265px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.p-top-about__inner .text-group {
  max-width: 526px;
  margin-right: 20px;
}
@media screen and (max-width: 992px) {
  .p-top-about__inner .text-group {
    margin-right: initial;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-top-about__inner .text-group .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 70px;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-top-about__inner .text-group .title {
    margin-top: 25px;
    font-family: "YuGothic";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 135%;
    /* or 27px */
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
    color: #333333;
  }
}
.p-top-about__inner .text-group .discription {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  /* or 150% */
  letter-spacing: 0.11em;
  color: #333333;
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  .p-top-about__inner .text-group .discription {
    font-family: "YuGothic";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* or 171% */
    letter-spacing: initial;
    color: #333333;
    margin-top: 15px;
  }
}
.p-top-about__inner .licence-group {
  display: flex;
  max-width: 1054px;
  width: 100%;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 120px;
  justify-content: start;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group {
    flex-wrap: wrap;
    max-width: 283px;
    margin-top: 37px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .p-top-about__inner .licence-group {
    max-width: 611px;
  }
}
.p-top-about__inner .licence-group__single {
  max-width: 139px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single {
    max-width: 87.85px;
  }
  .p-top-about__inner .licence-group__single .img-area {
    height: 87.5px;
  }
}
.p-top-about__inner .licence-group__single:nth-child(1) {
  margin-right: 43px;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single:nth-child(1) {
    margin-left: 5px;
    margin-right: 14px;
  }
  .p-top-about__inner .licence-group__single:nth-child(1) p {
    margin-top: -3px;
  }
}
.p-top-about__inner .licence-group__single:nth-child(2) {
  margin-right: 31px;
}
.p-top-about__inner .licence-group__single:nth-child(2) img {
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single:nth-child(2) img {
    margin-top: initial;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single:nth-child(2) {
    margin-right: 25px;
    max-width: 72px;
  }
  .p-top-about__inner .licence-group__single:nth-child(2) .img-area {
    height: 72px;
    margin-top: 8px;
  }
}
.p-top-about__inner .licence-group__single:nth-child(3) {
  margin-right: 22px;
}
.p-top-about__inner .licence-group__single:nth-child(3) img {
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single:nth-child(3) img {
    margin-top: initial;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single:nth-child(3) {
    max-width: 72px;
    margin-right: initial;
  }
  .p-top-about__inner .licence-group__single:nth-child(3) .img-area {
    height: 72px;
    margin-top: 8px;
  }
}
.p-top-about__inner .licence-group__single:nth-child(4) {
  max-width: 154px;
  margin-right: 30px;
}
.p-top-about__inner .licence-group__single:nth-child(4) .img-area {
  max-width: 154px;
}
.p-top-about__inner .licence-group__single:nth-child(4) .img-area img {
  margin-top: -6px;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single:nth-child(4) {
    margin-top: 24px;
    max-width: 89.5px;
    margin-right: 9.5px;
  }
  .p-top-about__inner .licence-group__single:nth-child(4) .img-area {
    height: 89.5px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-top-about__inner .licence-group__single:nth-child(4) .img-area {
    height: 23px;
  }
}
.p-top-about__inner .licence-group__single:nth-child(5) {
  max-width: 163px;
  margin-right: 19px;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single:nth-child(5) {
    margin-top: 24px;
  }
}
.p-top-about__inner .licence-group__single:nth-child(5) .img-area {
  max-width: 163px;
}
.p-top-about__inner .licence-group__single:nth-child(5) .img-area img {
  margin-top: -6px;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single:nth-child(5) {
    max-width: 95.5px;
    margin-right: 9.5px;
  }
  .p-top-about__inner .licence-group__single:nth-child(5) .img-area {
    height: 95.5px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-top-about__inner .licence-group__single:nth-child(5) .img-area {
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single:nth-child(6) {
    max-width: 79px;
    margin-top: 18px;
  }
  .p-top-about__inner .licence-group__single:nth-child(6) p {
    margin-top: 3px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single:nth-child(6) .img-area {
    height: 39px;
  }
}
.p-top-about__inner .licence-group__single:nth-child(6) .img-area img {
  margin-top: -4px;
}
.p-top-about__inner .licence-group__single .img-area {
  max-width: 139px;
  height: 139px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single .img-area {
    height: initial;
  }
}
.p-top-about__inner .licence-group__single p {
  text-align: center;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  /* identical to box height */
  color: #273200;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner .licence-group__single p {
    font-size: 8px;
    line-height: 12px;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 767px) {
  .p-top-about__inner .licence-group__single p {
    font-size: 10px;
    transform: scale(0.8);
    margin-top: 5px;
  }
}
.p-top-about__inner .cta-btn {
  margin-top: 60.5px;
  background: #333333;
  border: 1px solid #333333;
  border-radius: 4px;
  max-width: 326px;
}
@media screen and (max-width: 992px) {
  .p-top-about__inner .cta-btn {
    max-width: 335px;
    margin: 0 auto;
  }
}
.p-top-about__inner .cta-btn p {
  padding: 26.5px 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  /* identical to box height */
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 992px) {
  .p-top-about__inner .cta-btn p {
    font-size: 16px;
    line-height: 23px;
    padding: 16px 0;
  }
}

.p-top-service {
  background: #efe8e3;
  position: relative;
  padding-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .p-top-service {
    margin-top: 48px;
    padding-bottom: 40px;
  }
}
.p-top-service__inner {
  max-width: 1299px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-top-service__inner {
    padding-left: initial;
    padding-right: initial;
  }
}
.p-top-service__inner .titlegroup {
  margin: 0 auto;
  padding-left: 11px;
  letter-spacing: 0.5px;
  padding-top: 50px;
}
@media screen and (max-width: 992px) {
  .p-top-service__inner .titlegroup {
    padding-top: 46px;
  }
}
.p-top-service__inner .titlegroup .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 54px;
  line-height: 63px;
  color: #bda38d;
}
@media screen and (max-width: 992px) {
  .p-top-service__inner .titlegroup .title {
    font-size: 40px;
    line-height: 47px;
    padding-left: 18px;
  }
}
.p-top-service__inner .text-group {
  margin: 0 auto;
}
.p-top-service__inner .text-group .text-main {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  /* text-align: center; */
  letter-spacing: 0.1em;
  color: #333333;
  padding-left: 11px;
  padding-top: 34px;
}
@media screen and (max-width: 992px) {
  .p-top-service__inner .text-group .text-main {
    font-size: 20px;
    line-height: 135%;
    max-width: 253px;
    padding-left: 0px;
    padding-top: 25px;
    margin-left: 30px;
    letter-spacing: 1px;
  }
}
.p-top-service__inner .text-group .text-sub {
  max-width: 968px;
  margin-top: 40px;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  color: #333333;
  padding-left: 11px;
}
@media screen and (max-width: 992px) {
  .p-top-service__inner .text-group .text-sub {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 17px;
    letter-spacing: 0px;
  }
}
.p-top-service__inner .content-group {
  display: flex;
  flex-wrap: wrap;
  padding-top: 25px;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .p-top-service__inner .content-group {
    margin: 0 auto;
    padding-top: 24px;
    justify-content: center;
  }
}
@media screen and (max-width: 992px) and (min-width: 550px) {
  .p-top-service__inner .content-group {
    max-width: 520px;
  }
}
@media screen and (max-width: 992px) and (max-width: 550px) {
  .p-top-service__inner .content-group {
    max-width: 336px;
  }
}
.p-top-service__inner .content-group li {
  margin-top: 32px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 16px;
  background: #ffffff;
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.08);
  border-radius: 13px;
  max-width: 385px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .p-top-service__inner .content-group li {
    max-width: 157px;
    flex-direction: column-reverse;
    padding: initial;
    height: 116px;
    justify-content: start;
    margin-top: 16px;
  }
  .p-top-service__inner .content-group li:nth-child(1) {
    padding-top: 22px;
  }
  .p-top-service__inner .content-group li:nth-child(1) img {
    margin-top: 8px;
  }
  .p-top-service__inner .content-group li:nth-child(2) {
    padding-top: 14px;
  }
  .p-top-service__inner .content-group li:nth-child(2) img {
    margin-top: 8px;
  }
  .p-top-service__inner .content-group li:nth-child(3) {
    padding-top: 18px;
  }
  .p-top-service__inner .content-group li:nth-child(3) img {
    margin-top: 1px;
  }
  .p-top-service__inner .content-group li:nth-child(4) {
    padding-top: 18px;
  }
  .p-top-service__inner .content-group li:nth-child(4) img {
    margin-top: 8px;
    width: 76px;
    height: 45px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-top-service__inner .content-group li:nth-child(5) {
    padding-top: 18px;
  }
  .p-top-service__inner .content-group li:nth-child(5) img {
    margin-top: 12px;
    width: 58px;
  }
  .p-top-service__inner .content-group li:nth-child(6) {
    padding-top: 18px;
  }
  .p-top-service__inner .content-group li:nth-child(6) img {
    margin-top: 0px;
    width: 63px;
  }
  .p-top-service__inner .content-group li:nth-child(7) {
    padding-top: 18px;
  }
  .p-top-service__inner .content-group li:nth-child(7) img {
    margin-top: 8px;
    width: 70px;
  }
  .p-top-service__inner .content-group li:nth-child(8) {
    padding-top: 10px;
  }
  .p-top-service__inner .content-group li:nth-child(8) p {
    max-width: 148px;
    padding-left: initial;
  }
  .p-top-service__inner .content-group li:nth-child(8) img {
    margin-top: 1px;
    width: 67px;
    height: 49px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-top-service__inner .content-group li:nth-child(9) {
    padding-top: 18px;
  }
  .p-top-service__inner .content-group li:nth-child(9) p {
    max-width: 148px;
    padding-left: initial;
  }
  .p-top-service__inner .content-group li:nth-child(9) img {
    margin-top: 9px;
    width: 67px;
    height: 49px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-top-service__inner .content-group li:nth-child(10) {
    padding-top: 18px;
  }
  .p-top-service__inner .content-group li:nth-child(10) p {
    max-width: 148px;
    padding-left: initial;
  }
  .p-top-service__inner .content-group li:nth-child(10) img {
    margin-top: 9px;
    width: 67px;
    height: 47px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-top-service__inner .content-group li:nth-child(11) {
    padding-top: 16px;
  }
  .p-top-service__inner .content-group li:nth-child(11) p {
    max-width: 148px;
    padding-left: initial;
  }
  .p-top-service__inner .content-group li:nth-child(11) img {
    margin-top: 9px;
    width: 88px;
    height: 49px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-top-service__inner .content-group li:nth-child(12) {
    padding-top: 13px;
  }
  .p-top-service__inner .content-group li:nth-child(12) p {
    max-width: 148px;
    padding-left: initial;
  }
  .p-top-service__inner .content-group li:nth-child(12) img {
    margin-top: 9px;
    width: 64px;
    height: 40px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (min-width: 550px) and (max-width: 992px) {
  .p-top-service__inner .content-group li:not(:nth-child(3n)) {
    margin-right: 24px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1300px) {
  .p-top-service__inner .content-group li:not(:nth-child(2n)) {
    margin-right: 32px;
  }
}
@media screen and (min-width: 992px) and (min-width: 1300px) {
  .p-top-service__inner .content-group li:not(:nth-child(3n)) {
    margin-right: 32px;
  }
}
@media (max-width: 550px) {
  .p-top-service__inner .content-group li:not(:nth-child(2n)) {
    margin-right: 22px;
  }
}
.p-top-service__inner .content-group li img {
  width: 85px;
}
@media screen and (max-width: 992px) {
  .p-top-service__inner .content-group li img {
    width: 53px;
  }
}
.p-top-service__inner .content-group li p {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  /* identical to box height */
  /* #333333 */
  color: #333333;
  padding-left: 15px;
}
@media screen and (max-width: 992px) {
  .p-top-service__inner .content-group li p {
    font-size: 14px;
    line-height: 24px;
    padding: initial;
    max-width: 123px;
    text-align: center;
    line-height: 16px;
  }
}
.p-top-service__inner .content-group li .exception-text {
  padding-left: 8px;
}

.p-top-performance {
  background: #efe8e3;
  position: relative;
  z-index: 0;
  padding-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .p-top-performance {
    padding-bottom: initial;
  }
}
.p-top-performance .gb-img {
  background-image: url(../img/home/service-bg.png);
  height: 401.45px;
  position: absolute;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  .p-top-performance .gb-img {
    height: 187px;
    background-size: cover;
    background-position: right;
  }
}
.p-top-performance__inner {
  padding-top: 327px;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner {
    padding-top: 114px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.p-top-performance__inner .performance {
  background: #ffffff;
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-top: 119.43px;
  max-width: 1300px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance {
    padding-left: initial;
    padding-right: initial;
    padding-top: 78px;
  }
}
.p-top-performance__inner .performance .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 96px;
  line-height: 112px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.07em;
  color: #efe8e3;
  position: absolute;
  top: -9px;
  left: 16px;
  color: #efe8e3;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance .title {
    font-weight: 700;
    font-size: 40px;
    line-height: 47px;
    /* identical to box height */
    color: #bda38d;
    font-size: 40px;
    top: 6px;
    left: 14px;
    letter-spacing: 0px;
  }
}
.p-top-performance__inner .performance .content-group {
  display: flex;
  max-width: 1092px;
  margin: 0 auto;
  justify-content: space-between;
  padding-bottom: 78px;
  padding-top: 54.4px;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance .content-group {
    max-width: 307px;
    flex-wrap: wrap;
    padding-top: initial;
    padding-right: 7px;
    padding-bottom: 16px;
  }
}
.p-top-performance__inner .performance .content-group li {
  max-width: 185px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance .content-group li {
    max-width: 89px;
    margin-bottom: 8px;
  }
}
.p-top-performance__inner .performance .content-group li .number {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 75px;
  display: flex;
  text-align: center;
  letter-spacing: 0.05em;
  padding-top: 42px;
  /* margin-top: -1px; */
  padding-left: 14px;
  color: #ffffff;
  background: #bda38d;
  border: 10px solid #bda38d;
  border-radius: 50%;
  justify-content: center;
  width: 185px;
  height: 185px;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance .content-group li .number {
    font-size: 32px;
    line-height: 38px;
    width: 89px;
    height: 89px;
    padding-left: 7px;
    padding-top: 11px;
    justify-content: space-between;
    padding-left: 2px;
  }
  .p-top-performance__inner
    .performance
    .content-group
    li
    .number
    p:first-child {
    width: 55px;
  }
}
.p-top-performance__inner .performance .content-group li .number .company {
  font-weight: 700;
  font-size: 30px;
  line-height: 43px;
  display: flex;
  text-align: center;
  padding-top: 26px;
  color: #ffffff;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance .content-group li .number .company {
    font-size: 16px;
    line-height: 23px;
    padding-top: 14px;
    margin-left: -12px;
    padding-right: 6px;
  }
}
.p-top-performance__inner .performance .content-group li .info {
  margin-top: 30px;
  font-weight: 700;
  font-size: 24px;
  margin-top: 26px;
  /* identical to box height */
  display: flex;
  align-items: center;
  /* #333333 */
  color: #333333;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance .content-group li .info {
    font-size: 14px;
    line-height: 16px;
    margin-top: 11px;
  }
}
.p-top-performance__inner
  .performance
  .content-group
  li:nth-child(2)
  .number
  p:first-child {
  padding-right: 3px;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner
    .performance
    .content-group
    li:nth-child(2)
    .number
    p:first-child {
    padding-right: 8px;
  }
}
.p-top-performance__inner
  .performance
  .content-group
  li:nth-child(2)
  .number
  .company {
  margin-left: 6px;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner
    .performance
    .content-group
    li:nth-child(2)
    .number
    .company {
    margin-left: -12px;
  }
}
.p-top-performance__inner .performance .content-group li:nth-child(3) {
  max-width: 192px;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance .content-group li:nth-child(3) {
    max-width: 89px;
  }
  .p-top-performance__inner
    .performance
    .content-group
    li:nth-child(3)
    .number {
    height: 87px;
  }
}
.p-top-performance__inner
  .performance
  .content-group
  li:nth-child(3)
  p:first-child {
  margin-right: 6px;
  width: 47px;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner
    .performance
    .content-group
    li:nth-child(3)
    p:first-child {
    margin-right: initial;
  }
}
.p-top-performance__inner .performance .content-group li:nth-child(3) .company {
  padding-right: 8px;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner
    .performance
    .content-group
    li:nth-child(3)
    .company {
    margin-right: initial;
    padding-top: 17px;
    padding-right: 14px;
  }
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance .content-group li:nth-child(3) .info {
    margin-top: 7px;
  }
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner
    .performance
    .content-group
    li:nth-child(4)
    .number {
    padding-top: 15px;
  }
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner
    .performance
    .content-group
    li:nth-child(4)
    .number
    p:first-child {
    width: 43px;
  }
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner
    .performance
    .content-group
    li:nth-child(4)
    .company {
    padding-top: 15px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance .content-group li:nth-child(4) .info {
    margin-top: 15px;
  }
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance .content-group li:nth-child(4) {
    margin-left: 58px;
  }
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance .content-group li:nth-child(5) {
    margin-right: 47px;
  }
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner
    .performance
    .content-group
    li:nth-child(5)
    .number {
    padding-top: 15px;
  }
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner
    .performance
    .content-group
    li:nth-child(5)
    .company {
    margin-left: -12px;
    padding-right: 14px;
  }
}
.p-top-performance__inner .performance .content-group li:nth-child(5) .info {
  margin-top: 10px;
  margin-top: 17px;
  line-height: 35px;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .performance .content-group li:nth-child(5) .info {
    margin-top: 8px;
    line-height: 16px;
  }
}
.p-top-performance__inner .cta-btn {
  background: #333333;
  border: 1px solid #333333;
  border-radius: 4px;
  max-width: 326px;
  margin: 0 auto;
  margin-top: 62.5px;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .cta-btn {
    margin-top: 40px;
    max-width: 335px;
  }
}
.p-top-performance__inner .cta-btn p {
  padding: 26.5px 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  /* identical to box height */
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 992px) {
  .p-top-performance__inner .cta-btn p {
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 16px 0;
  }
}

.p-top-project__inner {
  padding-top: 117px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner {
    padding-top: 94px;
  }
}
.p-top-project__inner .titlegroup {
  max-width: 1020px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .titlegroup {
    padding-left: 31px;
  }
  .p-top-project__inner .titlegroup .title {
    font-size: 40px;
    line-height: 47px;
  }
}
.p-top-project__inner .content-group {
  display: flex;
  justify-content: space-between;
  max-width: 1241px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  margin-top: 34px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group {
    margin-top: 27px;
    flex-wrap: wrap;
    max-width: 335px;
  }
}
.p-top-project__inner .content-group__first {
  position: relative;
  max-width: 380px;
  width: 100%;
  height: 501px;
  padding-top: 48px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__first {
    height: 388px;
  }
}
.p-top-project__inner .content-group__first .main-image {
  position: absolute;
  top: 0;
  left: 0;
  background: #d9d9d9;
  max-width: 314px;
  height: 339px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__first .main-image {
    max-width: 220px;
    height: 240px;
  }
}
.p-top-project__inner .content-group__first .text-group {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 315px;
  max-height: 295px;
  height: 100%;
  width: 100%;
  background: #fff;
  filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.08));
  padding-top: 48px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__first .text-group {
    max-width: 273px;
    max-height: 220px;
    padding-top: 24px;
  }
}
.p-top-project__inner .content-group__first .text-group__inner {
  max-width: 251px;
  padding-right: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__first .text-group__inner {
    max-width: 225px;
    padding-right: initial;
  }
}
.p-top-project__inner .content-group__first .text-group .sub-title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 19px;
  line-height: 30px;
  /* or 158% */
  display: flex;
  align-items: center;
  letter-spacing: 0.07em;
  color: #333333;
  margin-bottom: 8px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__first .text-group .sub-title {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: initial;
    margin-bottom: 5px;
  }
}
.p-top-project__inner .content-group__first .text-group .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  /* or 154% */
  display: flex;
  align-items: center;
  color: #333333;
}
.p-top-project__inner .content-group__first .text-group .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  display: flex;
  align-items: center;
  color: #333333;
  padding-left: 23px;
  padding-bottom: 16px;
  position: relative;
}
.p-top-project__inner .content-group__first .text-group .title::before {
  content: "";
  height: 1px;
  width: 16px;
  position: absolute;
  background-color: #bda38d;
  top: 10.5px;
  left: 0;
}
.p-top-project__inner .content-group__second {
  position: relative;
  max-width: 380px;
  width: 100%;
  height: 501px;
  margin-top: 191px;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__second {
    height: 388px;
    margin-top: 39px;
    margin-left: initial;
    margin-right: initial;
  }
}
.p-top-project__inner .content-group__second .main-image {
  position: absolute;
  top: 0;
  left: 0;
  background: #d9d9d9;
  max-width: 314px;
  height: 339px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__second .main-image {
    max-width: 220px;
    height: 240px;
  }
}
.p-top-project__inner .content-group__second .text-group {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 315px;
  max-height: 295px;
  height: 100%;
  width: 100%;
  background: #fff;
  filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.08));
  padding-top: 48px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__second .text-group {
    max-width: 273px;
    max-height: 220px;
    padding-top: 24px;
  }
}
.p-top-project__inner .content-group__second .text-group__inner {
  max-width: 251px;
  padding-right: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__second .text-group__inner {
    max-width: 225px;
    padding-right: initial;
  }
}
.p-top-project__inner .content-group__second .text-group .sub-title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 19px;
  line-height: 30px;
  /* or 158% */
  display: flex;
  align-items: center;
  letter-spacing: 0.07em;
  color: #333333;
  margin-bottom: 8px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__second .text-group .sub-title {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: initial;
    margin-bottom: 5px;
  }
}
.p-top-project__inner .content-group__second .text-group .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  /* or 154% */
  display: flex;
  align-items: center;
  color: #333333;
}
.p-top-project__inner .content-group__second .text-group .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  display: flex;
  align-items: center;
  color: #333333;
  padding-left: 23px;
  padding-bottom: 16px;
  position: relative;
}
.p-top-project__inner .content-group__second .text-group .title::before {
  content: "";
  height: 1px;
  width: 16px;
  position: absolute;
  background-color: #bda38d;
  top: 10.5px;
  left: 0;
}
.p-top-project__inner .content-group__third {
  position: relative;
  max-width: 380px;
  width: 100%;
  height: 510px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__third {
    height: 388px;
    margin-top: 39px;
  }
}
.p-top-project__inner .content-group__third .main-image {
  position: absolute;
  top: 0;
  right: 0;
  background: #d9d9d9;
  max-width: 314px;
  height: 339px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__third .main-image {
    max-width: 220px;
    height: 240px;
  }
}
.p-top-project__inner .content-group__third .text-group {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 315px;
  max-height: 295px;
  height: 100%;
  width: 100%;
  background: #fff;
  filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.08));
  padding-top: 48px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__third .text-group {
    max-width: 273px;
    max-height: 220px;
    padding-top: 24px;
  }
}
.p-top-project__inner .content-group__third .text-group__inner {
  max-width: 251px;
  padding-right: 10px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__third .text-group__inner {
    max-width: 225px;
    padding-right: initial;
  }
}
.p-top-project__inner .content-group__third .text-group .sub-title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 19px;
  line-height: 30px;
  /* or 158% */
  display: flex;
  align-items: center;
  letter-spacing: 0.07em;
  color: #333333;
  margin-bottom: 8px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .content-group__third .text-group .sub-title {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: initial;
    margin-bottom: 5px;
  }
}
.p-top-project__inner .content-group__third .text-group .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  /* or 154% */
  display: flex;
  align-items: center;
  color: #333333;
}
.p-top-project__inner .content-group__third .text-group .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  display: flex;
  align-items: center;
  color: #333333;
  padding-left: 23px;
  padding-bottom: 16px;
  position: relative;
}
.p-top-project__inner .content-group__third .text-group .title::before {
  content: "";
  height: 1px;
  width: 16px;
  position: absolute;
  background-color: #bda38d;
  top: 10.5px;
  left: 0;
}
.p-top-project__inner .cta-btn {
  background: #333333;
  border: 1px solid #ffffff;
  border-radius: 4px;
  max-width: 326px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-top: 63.5px;
  background: #333333;
  border: 1px solid #ffffff;
  border-radius: 4px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .cta-btn {
    margin-top: 39px;
    max-width: 335px;
  }
}
.p-top-project__inner .cta-btn p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  /* identical to box height */
  text-align: center;
  color: #ffffff;
  padding-top: 26px;
  padding-bottom: 26px;
}
@media screen and (max-width: 992px) {
  .p-top-project__inner .cta-btn p {
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 16px 0;
  }
}

.p-column {
  margin-top: 116px;
}
@media screen and (max-width: 992px) {
  .p-column {
    margin-top: 94px;
  }
}
.p-column__inner {
  max-width: 1071px;
  margin: 0 auto;
}
.p-column__inner .titlegroup {
  padding-left: 25px;
}
@media screen and (max-width: 992px) {
  .p-column__inner .titlegroup {
    padding-left: 22px;
  }
  .p-column__inner .titlegroup .title {
    font-size: 40px;
    line-height: 47px;
  }
}
.p-column__inner .content-group {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group {
    margin-top: 25px;
    flex-direction: column;
  }
}
.p-column__inner .content-group__first {
  max-width: 325px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.08));
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__first {
    margin: 0 auto;
  }
}
.p-column__inner .content-group__first .main-image {
  height: 183px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-column__inner .content-group__first .text-group {
  max-width: 289px;
  width: 100%;
  margin: 0 auto;
  height: 220px;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__first .text-group {
    height: 201px;
  }
}
.p-column__inner .content-group__first .text-group .base-info {
  display: flex;
  justify-content: space-between;
  max-width: 289px;
  margin: 0 auto;
  padding-top: 23px;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__first .text-group .base-info {
    padding-top: 25px;
    padding-right: 4px;
  }
}
.p-column__inner .content-group__first .text-group .base-info .category {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 28px;
  background: #bda38d;
  border-radius: 64px;
  max-width: 119px;
  text-align: center;
  height: 26px;
  color: #ffffff;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__first .text-group .base-info .category {
    font-size: 12px;
    line-height: 175%;
    height: 24px;
    padding-top: 1px;
  }
}
.p-column__inner .content-group__first .text-group .base-info .date {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  /* identical to box height, or 200% */
  display: flex;
  align-items: center;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__first .text-group .base-info .date {
    padding-top: 2px;
    font-size: 12px;
    line-height: 175%;
  }
}
.p-column__inner .content-group__first .text-group .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  /* identical to box height */
  display: flex;
  align-items: center;
  color: #273200;
  padding-top: 24px;
  padding-bottom: 16px;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__first .text-group .title {
    padding-top: 16px;
    font-size: 16px;
    line-height: 150%;
    padding-bottom: 9px;
  }
}
.p-column__inner .content-group__first .text-group .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  /* or 154% */
  display: flex;
  align-items: center;
  color: #333333;
}
.p-column__inner .content-group__second {
  max-width: 325px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.08));
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__second {
    margin: 0 auto;
    margin-top: 40px;
  }
}
.p-column__inner .content-group__second .main-image {
  height: 183px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-column__inner .content-group__second .text-group {
  max-width: 289px;
  width: 100%;
  margin: 0 auto;
  height: 220px;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__second .text-group {
    height: 201px;
  }
}
.p-column__inner .content-group__second .text-group .base-info {
  display: flex;
  justify-content: space-between;
  max-width: 289px;
  margin: 0 auto;
  padding-top: 23px;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__second .text-group .base-info {
    padding-top: 25px;
    padding-right: 4px;
  }
}
.p-column__inner .content-group__second .text-group .base-info .category {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 28px;
  background: #bda38d;
  border-radius: 64px;
  max-width: 119px;
  text-align: center;
  height: 26px;
  color: #ffffff;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__second .text-group .base-info .category {
    font-size: 12px;
    line-height: 175%;
    height: 24px;
    padding-top: 1px;
  }
}
.p-column__inner .content-group__second .text-group .base-info .date {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  /* identical to box height, or 200% */
  display: flex;
  align-items: center;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__second .text-group .base-info .date {
    padding-top: 2px;
    font-size: 12px;
    line-height: 175%;
  }
}
.p-column__inner .content-group__second .text-group .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  /* identical to box height */
  display: flex;
  align-items: center;
  color: #273200;
  padding-top: 24px;
  padding-bottom: 16px;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__second .text-group .title {
    padding-top: 16px;
    font-size: 16px;
    line-height: 150%;
    padding-bottom: 9px;
  }
}
.p-column__inner .content-group__second .text-group .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  /* or 154% */
  display: flex;
  align-items: center;
  color: #333333;
}
.p-column__inner .content-group__third {
  max-width: 325px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.08));
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__third {
    margin: 0 auto;
    margin-top: 40px;
  }
}
.p-column__inner .content-group__third .main-image {
  height: 183px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-column__inner .content-group__third .text-group {
  max-width: 289px;
  width: 100%;
  margin: 0 auto;
  height: 220px;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__third .text-group {
    height: 201px;
  }
}
.p-column__inner .content-group__third .text-group .base-info {
  display: flex;
  justify-content: space-between;
  max-width: 289px;
  margin: 0 auto;
  padding-top: 23px;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__third .text-group .base-info {
    padding-top: 25px;
    padding-right: 4px;
  }
}
.p-column__inner .content-group__third .text-group .base-info .category {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 28px;
  background: #bda38d;
  border-radius: 64px;
  max-width: 119px;
  text-align: center;
  height: 26px;
  color: #ffffff;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__third .text-group .base-info .category {
    font-size: 12px;
    line-height: 175%;
    height: 24px;
    padding-top: 1px;
  }
}
.p-column__inner .content-group__third .text-group .base-info .date {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  /* identical to box height, or 200% */
  display: flex;
  align-items: center;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__third .text-group .base-info .date {
    padding-top: 2px;
    font-size: 12px;
    line-height: 175%;
  }
}
.p-column__inner .content-group__third .text-group .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  /* identical to box height */
  display: flex;
  align-items: center;
  color: #273200;
  padding-top: 24px;
  padding-bottom: 16px;
}
@media screen and (max-width: 992px) {
  .p-column__inner .content-group__third .text-group .title {
    padding-top: 16px;
    font-size: 16px;
    line-height: 150%;
    padding-bottom: 9px;
  }
}
.p-column__inner .content-group__third .text-group .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  /* or 154% */
  display: flex;
  align-items: center;
  color: #333333;
}
.p-column__inner .cta-btn {
  background: #333333;
  border: 1px solid #ffffff;
  border-radius: 4px;
  max-width: 324px;
  margin: 0 auto;
  margin-top: 64px;
}
@media screen and (max-width: 992px) {
  .p-column__inner .cta-btn {
    margin-top: 40px;
    max-width: 335px;
  }
}
.p-column__inner .cta-btn p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  /* identical to box height */
  text-align: center;
  color: #ffffff;
  padding-top: 26.5px;
  padding-bottom: 26.5px;
}
@media screen and (max-width: 992px) {
  .p-column__inner .cta-btn p {
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 16px 0;
  }
}

.titlegroup {
  margin: 0 auto;
}
.titlegroup .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 54px;
  line-height: 63px;
  color: #bda38d;
}

.p-information {
  margin-top: 115px;
}
@media screen and (max-width: 992px) {
  .p-information {
    margin-top: 95px;
  }
}
.p-information .titlegroup {
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 10px;
}
@media screen and (max-width: 992px) {
  .p-information .titlegroup {
    padding-left: 3px;
  }
  .p-information .titlegroup .title {
    font-size: 40px;
    line-height: 47px;
  }
}
@media screen and (max-width: 992px) {
  .p-information__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-information__inner .content-group {
  max-width: 1040px;
  margin: 0 auto;
  border-top: 0.5px solid #333333;
  margin-top: 32px;
}
@media screen and (max-width: 992px) {
  .p-information__inner .content-group {
    margin-top: 25px;
  }
}
.p-information__inner .content-group li {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid #333333;
  position: relative;
}
@media screen and (max-width: 992px) {
  .p-information__inner .content-group li {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.p-information__inner .content-group li .base-info {
  display: flex;
  justify-content: space-between;
  max-width: 240px;
  padding-bottom: 14px;
}
@media screen and (max-width: 992px) {
  .p-information__inner .content-group li .base-info {
    max-width: 246px;
    padding-bottom: 8px;
  }
}
.p-information__inner .content-group li .base-info .date {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  /* identical to box height, or 131% */
  letter-spacing: 0.06em;
  color: #333333;
}
.p-information__inner .content-group li .base-info .category {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 21px;
  /* identical to box height, or 210% */
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #bda38d;
  max-width: 98px;
  width: 100%;
  text-align: center;
  height: 22px;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .p-information__inner .content-group li .base-info .category {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  .p-information__inner .content-group li .content {
    max-width: 291px;
  }
}
.p-information__inner .content-group li .content p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height, or 150% */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-information__inner .content-group li .content p {
    font-size: 15px;
    line-height: 150%;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.p-information__inner .content-group li::after {
  content: "";
  width: 20.92px;
  height: 12px;
  position: absolute;
  background-image: url(../img/home/news-icon.png);
  top: 46%;
  right: 10.24px;
}
@media screen and (max-width: 992px) {
  .p-information__inner .content-group li::after {
    top: 44%;
    right: 8.24px;
  }
}
.p-information__inner .cta-btn {
  background: #333333;
  border: 1px solid #ffffff;
  border-radius: 4px;
  max-width: 326px;
  margin: 0 auto;
  margin-top: 64px;
}
@media screen and (max-width: 992px) {
  .p-information__inner .cta-btn {
    margin-top: 40px;
    max-width: 335px;
  }
}
.p-information__inner .cta-btn p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  /* identical to box height */
  text-align: center;
  color: #ffffff;
  padding-top: 26.5px;
  padding-bottom: 26.5px;
}
@media screen and (max-width: 992px) {
  .p-information__inner .cta-btn p {
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 16px 0;
  }
}

.p-seminar {
  margin-top: 115px;
}
@media screen and (max-width: 992px) {
  .p-seminar {
    margin-top: 95px;
  }
}
.p-seminar .titlegroup {
  max-width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-seminar .titlegroup {
    padding-left: 3px;
  }
  .p-seminar .titlegroup .title {
    font-size: 40px;
    line-height: 47px;
  }
}
@media screen and (max-width: 992px) {
  .p-seminar__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-seminar__inner .content-group {
  max-width: 1040px;
  margin: 0 auto;
  border-top: 0.5px solid #333333;
  margin-top: 32px;
}
@media screen and (max-width: 992px) {
  .p-seminar__inner .content-group {
    margin-top: 25px;
  }
}
.p-seminar__inner .content-group li {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid #333333;
  position: relative;
}
@media screen and (max-width: 992px) {
  .p-seminar__inner .content-group li {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.p-seminar__inner .content-group li .base-info {
  display: flex;
  justify-content: space-between;
  max-width: 240px;
  padding-bottom: 14px;
}
@media screen and (max-width: 992px) {
  .p-seminar__inner .content-group li .base-info {
    max-width: 246px;
    padding-bottom: 8px;
  }
}
.p-seminar__inner .content-group li .base-info .date {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  /* identical to box height, or 131% */
  letter-spacing: 0.06em;
  color: #333333;
}
.p-seminar__inner .content-group li .base-info .category {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 21px;
  /* identical to box height, or 210% */
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #bda38d;
  max-width: 98px;
  width: 100%;
  text-align: center;
  height: 22px;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .p-seminar__inner .content-group li .base-info .category {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  .p-seminar__inner .content-group li .content {
    max-width: 291px;
  }
}
.p-seminar__inner .content-group li .content p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height, or 150% */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-seminar__inner .content-group li .content p {
    font-size: 15px;
    line-height: 150%;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.p-seminar__inner .content-group li::after {
  content: "";
  width: 20.92px;
  height: 12px;
  position: absolute;
  background-image: url(../img/home/news-icon.png);
  top: 46%;
  right: 10.24px;
}
@media screen and (max-width: 992px) {
  .p-seminar__inner .content-group li::after {
    top: 44%;
    right: 8.24px;
  }
}
.p-seminar__inner .cta-btn {
  background: #333333;
  border: 1px solid #ffffff;
  border-radius: 4px;
  max-width: 326px;
  margin: 0 auto;
  margin-top: 64px;
}
@media screen and (max-width: 992px) {
  .p-seminar__inner .cta-btn {
    margin-top: 40px;
    max-width: 335px;
  }
}
.p-seminar__inner .cta-btn p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  /* identical to box height */
  text-align: center;
  color: #ffffff;
  padding-top: 26.5px;
  padding-bottom: 26.5px;
}
@media screen and (max-width: 992px) {
  .p-seminar__inner .cta-btn p {
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 16px 0;
  }
}

.p-cta {
  max-width: 898px;
  margin: 0 auto;
  width: 100%;
  margin-top: 120px;
}
@media screen and (max-width: 992px) {
  .p-cta {
    max-width: 335px;
    margin-top: 48px;
  }
}
.p-cta__inner .content-group {
  display: flex;
  justify-content: space-between;
}
.p-cta__inner .content-group__first {
  background-image: url(../img/home/contact.png);
  max-width: 409px;
  border-radius: 16px;
  width: 100%;
  height: 211px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 992px) {
  .p-cta__inner .content-group__first {
    max-width: 160px;
    height: 83px;
  }
}
.p-cta__inner .content-group__first::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  z-index: -1;
}
.p-cta__inner .content-group__first__inner {
  max-width: 169px;
  margin: 0 auto;
  padding-top: 61px;
}
@media screen and (max-width: 992px) {
  .p-cta__inner .content-group__first__inner {
    padding-top: 20px;
  }
}
.p-cta__inner .content-group__first__inner .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #ffffff;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-cta__inner .content-group__first__inner .title {
    font-size: 20px;
    line-height: 135%;
    letter-spacing: 1px;
  }
}
.p-cta__inner .content-group__first__inner .title-sub {
  padding-top: 10px;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.1em;
  color: #ffffff;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-cta__inner .content-group__first__inner .title-sub {
    padding-top: initial;
    font-size: 12px;
    line-height: 175%;
    letter-spacing: initial;
    margin-top: -3px;
  }
}
.p-cta__inner .content-group__second {
  background-image: url(../img/home/document.png);
  max-width: 409px;
  border-radius: 16px;
  width: 100%;
  height: 211px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 992px) {
  .p-cta__inner .content-group__second {
    max-width: 160px;
    height: 83px;
  }
}
.p-cta__inner .content-group__second::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  z-index: -1;
}
.p-cta__inner .content-group__second__inner {
  max-width: 177px;
  margin: 0 auto;
  padding-top: 77px;
}
@media screen and (max-width: 992px) {
  .p-cta__inner .content-group__second__inner {
    padding-top: 28px;
  }
}
.p-cta__inner .content-group__second__inner .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 58px;
  /* identical to box height */
  letter-spacing: 0.1em;
  color: #ffffff;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-cta__inner .content-group__second__inner .title {
    font-size: 20px;
    line-height: 135%;
    letter-spacing: initial;
  }
}
.p-cta__inner .content-group__second__inner .title-sub {
  padding-top: 9px;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.1em;
  color: #ffffff;
  z-index: 1;
  text-align: center;
}

.p-area {
  max-width: 1110px !important;
}
.p-area .add_area_map {
  max-width: 1110px !important;
}

/*====================================================
*
*	page: interview
*
====================================================*/
/*====================================================
*
*	page: news
*
====================================================*/
/*=======================
  request section
=======================*/
/*=======================
  request section
=======================*/
.p-service-title__inner {
  margin-top: 88px;
}
@media screen and (max-width: 992px) {
  .p-service-title__inner {
    max-width: 611px;
    margin: 0 auto;
    margin-top: 47px;
  }
}
.p-service-title__inner .main-title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  /* identical to box height */
  text-align: center;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-service-title__inner .main-title {
    font-family: "YuGothic";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 135%;
    /* or 27px */
    letter-spacing: 0.05em;
    text-align: start;
    color: #333333;
    padding-left: 20px;
  }
}
@media screen and (max-width: 992px) and (max-width: 500px) {
  .p-service-title__inner .main-title {
    max-width: 275px;
  }
}
.p-service-title__inner .sub-title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1em;
  color: #333333;
  max-width: 968px;
  margin: 0 auto;
  padding-top: 40px;
}
@media screen and (max-width: 992px) {
  .p-service-title__inner .sub-title {
    font-family: "YuGothic";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* or 171% */
    text-align: start;
    color: #333333;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: initial;
    padding-top: 16px;
  }
}

.p-service-main {
  margin-top: 84px;
}
@media screen and (max-width: 992px) {
  .p-service-main {
    margin-top: 19px;
  }
}
.p-service-main__inner .even-area {
  background: #efe8e3;
}
.p-service-main__inner__single__inner {
  max-width: 1278px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  padding-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single__inner {
    padding-right: 19.5px;
    padding-left: 19.5px;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .small-area {
    padding-right: 12px;
  }
  .p-service-main__inner__single .small-area .content {
    padding-right: 7px;
  }
}
.p-service-main__inner__single .title-group {
  display: flex;
  align-items: center;
  padding-top: 24px;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .title-group {
    max-width: 611px;
    padding-top: 20px;
    margin: 0 auto;
  }
}
.p-service-main__inner__single .title-group .number {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 144px;
  line-height: 169px;
  /* identical to box height */
  display: flex;
  align-items: center;
  /* #BDA38D */
  color: #bda38d;
  margin-right: 13px;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .title-group .number {
    font-weight: 600;
    font-size: 40px;
    line-height: 49px;
    margin-right: 17px;
  }
}
.p-service-main__inner__single .title-group .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 34px;
  line-height: 49px;
  letter-spacing: 0.1em;
  /* #333333 */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .title-group .title {
    font-size: 24px;
    line-height: 35px;
    /* identical to box height */
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .title-group .small-title {
    font-size: 17px;
  }
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .white-group {
    padding-top: 55px;
  }
}
.p-service-main__inner__single .content-group {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-top: 24px;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .content-group {
    margin-top: 19px;
    flex-direction: column;
  }
}
.p-service-main__inner__single .content-group__single {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .p-service-main__inner__single
    .content-group__single:not(:nth-child(3n))
    .content-group__single__inner {
    margin-right: 51px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1250px) {
  .p-service-main__inner__single
    .content-group__single:not(:nth-child(3n))
    .content-group__single__inner {
    margin-right: 15px;
  }
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .content-group__single {
    margin-bottom: 4px;
  }
}
.p-service-main__inner__single .content-group__single__inner {
  min-width: 365px;
  max-width: 365px;
  width: 100%;
  background: #f5f7f8;
  border-radius: 0px 0px 11px 11px;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .content-group__single__inner {
    min-width: initial;
    max-width: 611px;
    margin: 0 auto;
    background: initial;
  }
}
@media screen and (min-width: 992px) and (max-width: 1250px) {
  .p-service-main__inner__single .content-group__single__inner {
    min-width: initial;
    max-width: 303px;
  }
}
.p-service-main__inner__single .content-group__single .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  /* identical to box height */
  letter-spacing: 0.1em;
  color: #ffffff;
  background: #bda38d;
  border: 1px solid #bda38d;
  padding-top: 5px;
  padding-bottom: 6px;
  padding-left: 22px;
  max-width: 100%;
  position: relative;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .content-group__single .title {
    font-size: 20px;
    line-height: 135%;
    color: #333333;
    background: initial;
    border: none;
    letter-spacing: 1px;
    padding-bottom: 11px;
  }
  .p-service-main__inner__single .content-group__single .title::after {
    content: "";
    position: absolute;
    background: #bda38d;
    width: 3px;
    height: 100%;
    top: -3px;
    left: 0;
  }
}
@media screen and (min-width: 992px) {
  .p-service-main__inner__single .content-group__single .title::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #f5f7f8;
    position: absolute;
    transition: 12px;
    /* top: -27px; */
    /* right: -41px; */
    top: 16px;
    right: -20.5px;
    transform: rotate(135deg);
  }
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .content-group__single .small-text {
    font-size: 17px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1250px) {
  .p-service-main__inner__single .content-group__single .ajust-long-text {
    font-size: 18px;
    letter-spacing: initial;
    padding-left: 10px;
  }
}
.p-service-main__inner__single .content-group__single .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.1em;
  color: #333333;
  max-width: 364px;
  padding-left: 11px;
  padding-right: 11px;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .content-group__single .content {
    letter-spacing: initial;
    font-family: "YuGothic";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* or 171% */
    padding-top: 14px;
    color: #333333;
    max-width: 611px;
    padding-left: 11px;
    padding-right: 11px;
  }
}
.p-service-main__inner__single .content-group__single .content span {
  font-weight: 700;
  color: #847563;
  letter-spacing: initial;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .content-group__single .top-text {
    padding-top: 6px;
  }
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .content-group__single .bottom-text {
    padding-bottom: 10px;
  }
}
.p-service-main__inner__single .add-info-group {
  max-width: 953px;
  width: 100%;
  margin-top: 4px;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .add-info-group {
    margin-top: -5px;
  }
}
.p-service-main__inner__single .add-info-group__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .add-info-group__inner {
    flex-direction: column;
  }
}
.p-service-main__inner__single .add-info-group__single {
  max-width: 449px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .add-info-group__single {
    max-width: 611px;
    margin: 0 auto;
  }
}
.p-service-main__inner__single .add-info-group__single .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  /* identical to box height */
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  color: #847563;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .add-info-group__single .title {
    font-size: 14px;
    letter-spacing: initial;
  }
}
.p-service-main__inner__single .add-info-group__single .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .add-info-group__single .content {
    letter-spacing: initial;
    line-height: 24px;
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .add-info-group__second {
    margin-top: 21px;
  }
}
.p-service-main__inner__single .add-info-group .add-text {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.094em;
  color: #333333;
  padding-top: 29px;
}
@media screen and (max-width: 992px) {
  .p-service-main__inner__single .add-info-group .add-text {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: initial;
    padding-top: 24px;
    width: 100%;
    max-width: 611px;
    margin: 0 auto;
  }
}
.p-service-main__inner__single .licence-group {
  display: flex;
  display: flex;
  max-width: 1050px;
  width: 100%;
  /* margin: 0 auto; */
  margin-top: 43px;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group {
    justify-content: start;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 283px;
    margin-top: 19px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .p-service-main__inner__single .licence-group {
    margin: 0 auto;
    max-width: 611px;
    margin-top: 19px;
    margin-bottom: 40px;
  }
}
.p-service-main__inner__single .licence-group__single {
  max-width: 139px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single {
    max-width: 87.85px;
  }
  .p-service-main__inner__single .licence-group__single .img-area {
    height: 87.5px;
  }
}
.p-service-main__inner__single .licence-group__single:nth-child(1) {
  margin-right: 43px;
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single:nth-child(1) {
    margin-left: 5px;
    margin-right: 14px;
  }
  .p-service-main__inner__single .licence-group__single:nth-child(1) p {
    margin-top: -3px;
  }
}
.p-service-main__inner__single .licence-group__single:nth-child(2) {
  margin-right: 31px;
}
.p-service-main__inner__single .licence-group__single:nth-child(2) img {
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single:nth-child(2) img {
    margin-top: initial;
  }
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single:nth-child(2) {
    margin-right: 25px;
    max-width: 72px;
  }
  .p-service-main__inner__single .licence-group__single:nth-child(2) .img-area {
    height: 72px;
    margin-top: 8px;
  }
}
.p-service-main__inner__single .licence-group__single:nth-child(3) {
  margin-right: 22px;
}
.p-service-main__inner__single .licence-group__single:nth-child(3) img {
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single:nth-child(3) img {
    margin-top: initial;
  }
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single:nth-child(3) {
    max-width: 72px;
    margin-right: initial;
  }
  .p-service-main__inner__single .licence-group__single:nth-child(3) .img-area {
    height: 72px;
    margin-top: 8px;
  }
}
.p-service-main__inner__single .licence-group__single:nth-child(4) {
  max-width: 154px;
  margin-right: 30px;
}
.p-service-main__inner__single .licence-group__single:nth-child(4) .img-area {
  max-width: 154px;
}
.p-service-main__inner__single
  .licence-group__single:nth-child(4)
  .img-area
  img {
  margin-top: -6px;
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single:nth-child(4) {
    margin-top: 24px;
    max-width: 89.5px;
    margin-right: 9.5px;
  }
  .p-service-main__inner__single .licence-group__single:nth-child(4) .img-area {
    height: 89.5px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single:nth-child(4) .img-area {
    height: 23px;
  }
}
.p-service-main__inner__single .licence-group__single:nth-child(5) {
  max-width: 163px;
  margin-right: 19px;
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single:nth-child(5) {
    margin-top: 24px;
  }
}
.p-service-main__inner__single .licence-group__single:nth-child(5) .img-area {
  max-width: 163px;
}
.p-service-main__inner__single
  .licence-group__single:nth-child(5)
  .img-area
  img {
  margin-top: -6px;
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single:nth-child(5) {
    max-width: 95.5px;
    margin-right: 9.5px;
  }
  .p-service-main__inner__single .licence-group__single:nth-child(5) .img-area {
    height: 95.5px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single:nth-child(5) .img-area {
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single:nth-child(6) {
    max-width: 79px;
    margin-top: 18px;
  }
  .p-service-main__inner__single .licence-group__single:nth-child(6) p {
    margin-top: 3px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single:nth-child(6) .img-area {
    height: 39px;
  }
}
.p-service-main__inner__single
  .licence-group__single:nth-child(6)
  .img-area
  img {
  margin-top: -4px;
}
.p-service-main__inner__single .licence-group__single .img-area {
  max-width: 139px;
  height: 139px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single .img-area {
    height: initial;
  }
}
.p-service-main__inner__single .licence-group__single p {
  text-align: center;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  /* identical to box height */
  color: #273200;
}
@media screen and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single p {
    font-size: 8px;
    line-height: 12px;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 767px) {
  .p-service-main__inner__single .licence-group__single p {
    font-size: 10px;
    transform: scale(0.8);
    margin-top: 5px;
  }
}

/*====================================================
*
*	page: fee
*
====================================================*/
.p-fee-basic {
  margin-top: 88px;
  background: rgba(217, 217, 217, 0.19);
}
@media (max-width: 1250px) {
  .p-fee-basic {
    margin-top: 48px;
  }
}
.p-fee-basic__inner {
  padding-top: 56px;
  max-width: 1200px;
  padding-bottom: 56px;
  margin: 0 auto;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner {
    padding-top: 24px;
    letter-spacing: 0.9px;
    padding-bottom: 23px;
  }
}
.p-fee-basic__inner .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  color: #333333;
  margin-left: 73px;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .title {
    font-size: 20px;
    line-height: 135%;
    margin-left: 20px;
  }
}
.p-fee-basic__inner .graph-group {
  margin-top: 40px;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group {
    margin-top: 23.5px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.p-fee-basic__inner .graph-group li {
  display: flex;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background: #ffffff;
}
.p-fee-basic__inner .graph-group li:first-child {
  border-top: 1px solid #cccccc;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li:first-child {
    border-top: initial;
  }
}
.p-fee-basic__inner .graph-group li .main-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 73px;
  /* identical to box height, or 406% */
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: #bda38d;
  max-width: 180px;
  width: 100%;
  justify-content: center;
  border-right: 1px solid #cccccc;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .main-title {
    font-size: 14px;
    line-height: 120%;
    max-width: 80px;
    text-align: center;
    letter-spacing: initial;
  }
}
.p-fee-basic__inner .graph-group li .sub-title {
  max-width: 129px;
  width: 100%;
  text-align: center;
  border-right: 1px solid #cccccc;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .sub-title {
    font-size: 14px;
    line-height: 150%;
    max-width: 42px;
    border-right: initial;
  }
}
.p-fee-basic__inner .graph-group li .info-group {
  width: 100%;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  /* identical to box height, or 406% */
  letter-spacing: 0.1em;
  line-height: 73px;
  color: #333333;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .info-group {
    font-size: 14px;
    line-height: 150%;
    background: #ffffff;
  }
}
.p-fee-basic__inner .graph-group li .info-group__first {
  display: flex;
  height: 73px;
  border-bottom: 1px solid #cccccc;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .info-group__first {
    font-size: 15px;
    line-height: 150%;
    align-items: center;
    height: initial;
    font-weight: 500;
  }
}
.p-fee-basic__inner .graph-group li .info-group__first p:nth-child(2) {
  padding-left: 47px;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .info-group__first p:nth-child(2) {
    padding-left: 13px;
    letter-spacing: initial;
    height: 100%;
    border-left: 1px solid #cccccc;
    min-height: 40px;
    padding-top: 10px;
    font-weight: 500;
  }
}
.p-fee-basic__inner .graph-group li .info-group__second {
  display: flex;
  height: 73px;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .info-group__second {
    font-size: 15px;
    line-height: 150%;
    height: initial;
    align-items: center;
    font-weight: 500;
  }
}
.p-fee-basic__inner .graph-group li .info-group .content-group {
  display: flex;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .info-group .content-group {
    flex-direction: column;
    padding-top: 9px;
    font-size: 15px;
    line-height: 150%;
    height: 100%;
    border-left: 1px solid #cccccc;
    min-height: 40px;
    font-weight: 500;
  }
}
.p-fee-basic__inner .graph-group li .info-group .content-group P:first-child {
  margin-left: 47px;
  margin-right: 21px;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .info-group .content-group P:first-child {
    margin-left: 13px;
    letter-spacing: initial;
    font-weight: 500;
    font-size: 15px;
    line-height: 150%;
    font-weight: 500;
  }
}
.p-fee-basic__inner .graph-group li .info-group .sub-text {
  font-size: 16px;
  line-height: 23px;
  letter-spacing: initial;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .info-group .sub-text {
    font-size: 8px;
    line-height: 130%;
    padding-bottom: 8px;
    font-weight: 500;
  }
}
@media screen and (max-width: 1250px) and (-webkit-min-device-pixel-ratio: 0) {
  .p-fee-basic__inner .graph-group li .info-group .sub-text {
    font-size: 10px !important;
    transform: scale(0.8);
    margin-left: -15px;
    margin-right: -22px;
    font-weight: 500;
  }
}
.p-fee-basic__inner .graph-group li .info {
  max-width: 129px;
  width: 100%;
  text-align: center;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .info {
    max-width: 42px;
    background: #ffffff;
  }
}
.p-fee-basic__inner .graph-group li .content-group {
  display: flex;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .content-group {
    flex-direction: column;
    padding-top: 9px;
    font-size: 15px;
    line-height: 150%;
    height: 100%;
    border-left: 1px solid #cccccc;
    min-height: 40px;
    background: #ffffff;
  }
}
.p-fee-basic__inner .graph-group li .content-group p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  color: #333333;
  font-size: 18px;
  line-height: 69px;
}
.p-fee-basic__inner .graph-group li .content-group p:first-child {
  margin-left: 47px;
  letter-spacing: 1.6px;
  margin-right: 20px;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .content-group p:first-child {
    margin-left: 13px;
    letter-spacing: initial;
    font-weight: 500;
    font-size: 15px;
    line-height: 150%;
  }
}
.p-fee-basic__inner .graph-group li .content-group p:nth-child(2) {
  font-size: 16px;
  letter-spacing: initial;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .content-group p:nth-child(2) {
    font-size: 8px;
    line-height: 130%;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 1250px) and (-webkit-min-device-pixel-ratio: 0) {
  .p-fee-basic__inner .graph-group li .content-group p:nth-child(2) {
    font-size: 10px !important;
    transform: scale(0.8);
    margin-left: -15px;
    margin-right: -22px;
  }
}
.p-fee-basic__inner .graph-group li .content-group .zenkaku {
  font-size: 10px;
  font-weight: 700;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .a-pb {
    padding-bottom: 16px !important;
  }
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .a-fontsize {
    font-size: 12px !important;
    line-height: 150% !important;
    margin-right: initial !important;
  }
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .graph-group li .a-pb-2 {
    padding-bottom: 10px;
  }
}
.p-fee-basic__inner .sub-text-group {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.1em;
  color: #333333;
  margin-top: 29px;
  max-width: 1096px;
}
@media (max-width: 1250px) {
  .p-fee-basic__inner .sub-text-group {
    font-size: 12px;
    line-height: 175%;
    font-weight: 400;
    padding-left: 19.89px;
    padding-right: 21.88px;
    margin-top: 32px;
    letter-spacing: initial;
  }
}

.p-fee-flow {
  margin-top: 120px;
}
@media screen and (max-width: 992px) {
  .p-fee-flow {
    margin-top: 48px;
  }
}
.p-fee-flow__inner {
  max-width: 1106px;
  margin: 0 auto;
  padding-left: 26px;
}
@media screen and (max-width: 992px) {
  .p-fee-flow__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-fee-flow__inner .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-fee-flow__inner .title {
    font-size: 20px;
    line-height: 135%;
    letter-spacing: 1px;
  }
}
.p-fee-flow__inner .content-group {
  margin-top: 46px;
}
@media screen and (max-width: 992px) {
  .p-fee-flow__inner .content-group {
    margin-top: 25px;
  }
}
.p-fee-flow__inner .content-group__single {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  /* or 32px */
  color: #333333;
  display: flex;
  background: #f5f5f5;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .p-fee-flow__inner .content-group__single {
    flex-direction: column;
    align-items: initial;
  }
}
.p-fee-flow__inner .content-group__single:not(:last-child) {
  margin-bottom: 47px;
}
@media screen and (max-width: 992px) {
  .p-fee-flow__inner .content-group__single:not(:last-child) {
    margin-bottom: 24px;
  }
}
.p-fee-flow__inner .content-group__single .main-title {
  margin-left: 48px;
  width: 132px;
  margin-right: 70px;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (max-width: 992px) {
  .p-fee-flow__inner .content-group__single .main-title {
    margin-left: 20px;
    margin-right: initial;
    padding-top: 24px;
  }
}
.p-fee-flow__inner .content-group__single .content {
  font-weight: 400;
}
@media screen and (max-width: 992px) {
  .p-fee-flow__inner .content-group__single .content {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 24px;
  }
}

/*====================================================
*
*	page: project
*
====================================================*/
.p-project-main__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.p-project-main__inner .content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 88px;
}
@media screen and (max-width: 992px) {
  .p-project-main__inner .content {
    margin: 0 auto;
    margin-top: 47px;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .p-project-main__inner .content {
    max-width: 344px;
  }
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  .p-project-main__inner .content {
    max-width: 714px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .p-project-main__inner .content {
    margin: 0 auto;
    margin-top: 88px;
    max-width: 714px;
  }
}
.p-project-main__inner .content__single {
  max-width: 344px;
  width: 100%;
  margin-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .p-project-main__inner .content__single {
    max-width: 334px;
    margin: 0 auto;
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .p-project-main__inner .content__single:not(:nth-child(2n)) {
    margin-right: 24px;
  }
}
@media (min-width: 1200px) {
  .p-project-main__inner .content__single:not(:nth-child(3n)) {
    margin-right: 24px;
  }
}
@media screen and (max-width: 992px) {
  .p-project-main__inner .content .img-group {
    height: 181px;
  }
  .p-project-main__inner .content .img-group img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
  }
}
.p-project-main__inner .content .text-group {
  margin-top: 12px;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  /* or 32px */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-project-main__inner .content .text-group {
    padding-left: 2px;
    padding-right: 2px;
    margin-top: 17px;
  }
}
.p-project-main__inner .content .text-group .content-text {
  font-size: 18px;
  line-height: 180%;
}
@media screen and (max-width: 992px) {
  .p-project-main__inner .content .text-group .content-text {
    font-size: 16px;
    line-height: 150%;
  }
}
.p-project-main__inner .content .text-group .sub-content-text {
  padding-top: 8px;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
}
.p-project-main__inner .content .text-group .company {
  margin-top: 12px;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 992px) {
  .p-project-main__inner .content .text-group .company {
    margin-top: 3px;
  }
}

.p-project-top-single .p-about-top__inner {
  padding-bottom: 70px;
}
@media screen and (max-width: 992px) {
  .p-project-top-single .p-about-top__inner {
    padding-bottom: 50px;
  }
}
.p-project-top-single .title-area {
  padding-top: 32px;
}
@media screen and (max-width: 992px) {
  .p-project-top-single .title-area {
    padding-top: 46px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .p-project-top-single .title-area .title {
    font-size: 20px;
    line-height: 29px;
    letter-spacing: initial;
  }
}
.p-project-top-single .sub-title {
  padding-top: 26px !important;
}
@media screen and (max-width: 992px) {
  .p-project-top-single .sub-title {
    padding-top: 17px !important;
    letter-spacing: 1px !important;
  }
}
.p-project-top-single .company-logo {
  margin-top: 33px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-project-top-single .company-logo {
    margin: 0 auto;
    margin-top: 16px;
    max-width: 150px;
    width: 100%;
    height: 38px;
  }
  .p-project-top-single .company-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.p-project-single-main__inner {
  margin-top: 64px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner {
    margin-top: 48px;
  }
}
.p-project-single-main__inner .text-group {
  max-width: 1040px;
  margin: 0 auto;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  /* or 32px */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .text-group {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 24px;
  }
}
.p-project-single-main__inner .text-group .info-text {
  letter-spacing: -1.3px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .text-group .info-text {
    letter-spacing: initial;
  }
}
.p-project-single-main__inner .text-group .info-group {
  padding-top: 23px;
  display: flex;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .text-group .info-group {
    font-size: 16px;
    line-height: 150%;
  }
}
.p-project-single-main__inner .feature-group {
  margin-top: 80px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .feature-group {
    margin-top: 49px;
  }
}
.p-project-single-main__inner .content-group {
  padding-top: 64px;
  max-width: 958px;
  margin: 0 auto;
  background: #f6f6f6;
  padding-bottom: 69px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .content-group {
    max-width: initial;
    padding-top: 48px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 44px;
  }
}
.p-project-single-main__inner .content-group .main-group {
  max-width: 786px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-right: initial;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .content-group .main-group {
    flex-direction: column;
    align-items: initial;
    max-width: initial;
  }
}
.p-project-single-main__inner .content-group .main-group:not(:last-child) {
  margin-bottom: 33px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .content-group .main-group:not(:last-child) {
    margin-bottom: 37px;
  }
}
.p-project-single-main__inner .content-group .main-group .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  /* or 32px */
  color: #333333;
  max-width: 240px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .content-group .main-group .title {
    font-size: 20px;
    line-height: 135%;
    letter-spacing: 1px;
  }
}
.p-project-single-main__inner .content-group .main-group .sub-group {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  /* identical to box height, or 29px */
  color: #333333;
  padding-left: 17px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .content-group .main-group .sub-group {
    font-size: 14px;
    line-height: 24px;
    padding-left: 20px;
    margin-top: 16px;
  }
}
.p-project-single-main__inner .content-group .main-group .sub-group li {
  list-style: square;
}
.p-project-single-main__inner .content-group .main-group .sub-group li::marker {
  width: 8.29px;
  height: 7.29px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .content-group .main-group .sub-group li {
    margin-bottom: 5px;
  }
}
.p-project-single-main__inner .main-content-group__single {
  max-width: 1079px;
  margin: 0 auto;
  margin-top: 120px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .main-content-group__single {
    margin-top: 46px;
  }
}
.p-project-single-main__inner .main-content-group__single .title-text {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  /* identical to box height, or 29px */
  color: #333333;
  text-align: center;
  letter-spacing: -1.9px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .main-content-group__single .title-text {
    letter-spacing: initial;
  }
}
.p-project-single-main__inner .main-content-group__single .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .main-content-group__single .title {
    font-size: 20px;
    line-height: 135%;
    text-align: start;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 13px;
    letter-spacing: 1px;
  }
}
.p-project-single-main__inner .main-content-group__single .img-group {
  margin-top: 32px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .main-content-group__single .img-group {
    padding-left: 20.5px;
    padding-right: 20.5px;
    height: 208px;
    margin-top: 16px;
  }
  .p-project-single-main__inner .main-content-group__single .img-group img {
    height: 100%;
    width: 100%;
  }
}
.p-project-single-main__inner .main-content-group__single .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: -1.3px;
  padding-top: 44px;
  /* or 32px */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .main-content-group__single .content {
    font-size: 14px;
    line-height: 24px;
    padding-left: 21px;
    padding-right: 21px;
    padding-top: 24px;
    letter-spacing: initial;
  }
}
.p-project-single-main__inner .sub-content-group {
  margin-top: 120px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .sub-content-group {
    margin-top: 51px;
  }
}
.p-project-single-main__inner .sub-content-group .title-text {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .sub-content-group .title-text {
    font-size: 20px;
    line-height: 135%;
    letter-spacing: 1px;
  }
}
.p-project-single-main__inner .sub-content-group .content-area {
  display: flex;
  max-width: 1083px;
  margin: 0 auto;
  margin-top: 32px;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .sub-content-group .content-area {
    flex-direction: column;
    margin-top: 23px;
  }
}
.p-project-single-main__inner .sub-content-group .content-area__first {
  max-width: 160px;
  width: 100%;
  margin-top: 14px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .sub-content-group .content-area__first {
    margin: 0 auto;
  }
}
.p-project-single-main__inner .sub-content-group .content-area__second {
  max-width: 883px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner .sub-content-group .content-area__second {
    max-width: initial;
  }
}
.p-project-single-main__inner .sub-content-group .content-area__second .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  /* identical to box height */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner
    .sub-content-group
    .content-area__second
    .title {
    font-size: 16px;
    line-height: 150%;
    padding-left: 21px;
    padding-right: 21px;
    margin: 0 auto;
    margin-top: 24px;
  }
}
.p-project-single-main__inner
  .sub-content-group
  .content-area__second
  .info-group {
  display: flex;
  padding-top: 2px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner
    .sub-content-group
    .content-area__second
    .info-group {
    padding-top: 8px;
    padding-left: 21px;
    padding-right: 21px;
  }
}
.p-project-single-main__inner
  .sub-content-group
  .content-area__second
  .info-group
  p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  /* or 32px */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner
    .sub-content-group
    .content-area__second
    .info-group
    p {
    font-size: 16px;
    line-height: 150%;
  }
}
.p-project-single-main__inner
  .sub-content-group
  .content-area__second
  .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  /* or 32px */
  color: #333333;
  padding-top: 25px;
}
@media screen and (max-width: 992px) {
  .p-project-single-main__inner
    .sub-content-group
    .content-area__second
    .content {
    font-size: 14px;
    line-height: 24px;
    padding-left: 21px;
    padding-right: 21px;
    padding-top: 16px;
  }
}

.p-column-main__inner {
  max-width: 1160px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner {
    padding-left: initial;
    padding-right: initial;
  }
}
.p-column-main__inner .category-group {
  margin-top: 88px;
  display: flex;
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  height: 61px;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .category-group {
    margin-top: 40px;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    height: 102px;
  }
}
.p-column-main__inner .category-group .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  /* identical to box height, or 29px */
  color: #333333;
}
.p-column-main__inner .category-group .category-area {
  display: flex;
}
.p-column-main__inner .category-group .category-area li {
  display: flex;
}
.p-column-main__inner .content-group {
  margin-top: 88px;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .content-group {
    margin-top: 40px;
  }
}
.p-column-main__inner .content-group__single {
  display: flex;
  margin-bottom: 48px;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .content-group__single {
    max-width: 325px;
    flex-direction: column;
    margin: 0 auto;
    box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
  }
  .p-column-main__inner .content-group__single:not(:last-child) {
    margin-bottom: 48px;
  }
}
.p-column-main__inner .content-group__single .img-group {
  max-width: 277px;
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 32px;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .content-group__single .img-group {
    max-width: initial;
    margin-right: initial;
    height: 183px;
  }
}
.p-column-main__inner .content-group__single .img-group img {
  height: 100%;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .content-group__single .text-group {
    height: 201px;
  }
  .p-column-main__inner .content-group__single .text-group .info-group {
    padding-top: 23px;
    display: flex;
    justify-content: space-between;
  }
}
.p-column-main__inner .content-group__single .text-group .date {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  /* identical to box height, or 29px */
  color: #333333;
  margin-bottom: 8px;
  padding-top: 1px;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .content-group__single .text-group .date {
    font-size: 12px;
    line-height: 175%;
    margin-right: 23px;
    padding-top: 3px;
  }
}
.p-column-main__inner .content-group__single .text-group .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  /* identical to box height */
  color: #333333;
  margin-bottom: 8px;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .content-group__single .text-group .title {
    font-size: 16px;
    line-height: 150%;
    padding-left: 17px;
    padding-right: 17px;
    margin-top: 9px;
  }
}
.p-column-main__inner .content-group__single .text-group .main-text {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  /* or 23px */
  color: #333333;
  margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .content-group__single .text-group .main-text {
    font-size: 13px;
    line-height: 20px;
    padding-left: 17px;
    padding-right: 17px;
  }
}
.p-column-main__inner .content-group__single .text-group .single-category {
  max-width: 119px;
  width: 100%;
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 28px;
  /* identical to box height, or 215% */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #bda38d;
  border-radius: 64px;
  height: 24px;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .content-group__single .text-group .single-category {
    font-size: 12px;
    line-height: 175%;
    margin-left: 17px;
  }
}
.p-column-main__inner .nav-group {
  margin-top: 120px;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .nav-group {
    margin-top: 48px;
  }
}
.p-column-main__inner .nav-group ul {
  display: flex;
  max-width: 450px;
  margin: 0 auto;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .nav-group ul {
    max-width: 335px;
  }
}
.p-column-main__inner .nav-group ul li {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  /* /Base/White */
  color: #ffffff;
  background: #847563;
  max-width: 50px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .nav-group ul li {
    max-width: 34px;
    height: 34px;
  }
}
.p-column-main__inner .nav-group ul li:not(:last-child) {
  margin-right: 5px;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .nav-group ul li:not(:last-child) {
    margin-right: 8px;
  }
}
.p-column-main__inner .nav-group ul li:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .nav-group ul li:first-child {
    margin-right: 32px;
  }
}
.p-column-main__inner .nav-group ul li:last-child {
  margin-left: 35px;
}
@media screen and (max-width: 992px) {
  .p-column-main__inner .nav-group ul li:last-child {
    margin-left: 25px;
  }
}

.p-culumn-single-top {
  margin-top: 172px;
}
@media screen and (max-width: 992px) {
  .p-culumn-single-top {
    margin-top: 80px;
  }
}
.p-culumn-single-top .breadcrumb-area {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-culumn-single-top .breadcrumb-area {
    padding-left: 16px;
  }
}
.p-culumn-single-top .breadcrumb-area p {
  padding-right: 12px;
}
@media screen and (max-width: 992px) {
  .p-culumn-single-top .breadcrumb-area p {
    padding-right: 6px;
  }
}
.p-culumn-single-top .breadcrumb-area p:nth-child(1) {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: center;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-culumn-single-top .breadcrumb-area p:nth-child(1) {
    font-size: 8px;
  }
}
@media screen and (max-width: 992px) and (-webkit-min-device-pixel-ratio: 0) {
  .p-culumn-single-top .breadcrumb-area p:nth-child(1) {
    font-size: 10px;
    transform: scale(0.8);
  }
}
.p-culumn-single-top .breadcrumb-area p:nth-child(3) {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 180%;
  /* identical to box height, or 22px */
  /* #847563 */
  color: #847563;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .p-culumn-single-top .breadcrumb-area p:nth-child(3) {
    font-size: 8px;
  }
}
@media screen and (max-width: 992px) and (-webkit-min-device-pixel-ratio: 0) {
  .p-culumn-single-top .breadcrumb-area p:nth-child(3) {
    font-size: 10px;
    transform: scale(0.8);
  }
}
.p-culumn-single-top .breadcrumb-area p:nth-child(4) {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 180%;
  /* identical to box height, or 22px */
  /* Font/Primary */
  color: #273200;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .p-culumn-single-top .breadcrumb-area p:nth-child(4) {
    font-size: 8px;
  }
}
@media screen and (max-width: 992px) and (-webkit-min-device-pixel-ratio: 0) {
  .p-culumn-single-top .breadcrumb-area p:nth-child(4) {
    font-size: 10px;
    transform: scale(0.8);
  }
}
.p-culumn-single-top .breadcrumb-area p:nth-child(5) {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 180%;
  /* identical to box height, or 22px */
  /* Font/Primary */
  color: #273200;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .p-culumn-single-top .breadcrumb-area p:nth-child(5) {
    font-size: 8px;
    padding-top: 2px;
  }
}
@media screen and (max-width: 992px) and (-webkit-min-device-pixel-ratio: 0) {
  .p-culumn-single-top .breadcrumb-area p:nth-child(5) {
    font-size: 10px;
    transform: scale(0.8);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-left: -17px;
  }
}
.p-culumn-single-top .breadcrumb-area .img-area {
  padding-right: 8px;
}
@media screen and (max-width: 992px) {
  .p-culumn-single-top .breadcrumb-area .img-area {
    width: 8px;
    padding-right: initial;
  }
}
.p-culumn-single-top .breadcrumb-area .img-area img {
  margin-bottom: 4px;
}

.title-group-column {
  max-width: 1022px;
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 992px) {
  .title-group-column {
    max-width: 687px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 18px;
  }
}
.title-group-column .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  color: #333333;
  max-width: 662px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .title-group-column .title {
    font-size: 20px;
    line-height: 29px;
  }
}
.title-group-column .date {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  /* or 32px */
  color: #333333;
  margin-top: 7px;
}
@media screen and (max-width: 992px) {
  .title-group-column .date {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1.4px;
  }
}
.title-group-column .category {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 28px;
  /* identical to box height, or 215% */
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #bda38d;
  border-radius: 64px;
  justify-content: center;
  max-width: 119px;
  width: 100%;
  margin-top: 7px;
}
@media screen and (max-width: 992px) {
  .title-group-column .category {
    font-size: 12px;
    line-height: 175%;
    margin-top: 9px;
    height: 24px;
  }
}

.main-group {
  max-width: 1042px;
  margin: 0 auto;
  padding-right: 10px;
  display: flex;
}
@media screen and (max-width: 992px) {
  .main-group {
    padding-right: initial;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main-group__left {
  max-width: 687px;
  width: 100%;
  margin-right: 25px;
}
@media screen and (max-width: 992px) {
  .main-group__left {
    margin-right: initial;
    margin: 0 auto;
    margin-top: 24px;
  }
}
.main-group__left .img-group {
  padding-left: 9px;
  width: 100%;
  margin-top: 38px;
}
@media screen and (max-width: 992px) {
  .main-group__left .img-group {
    padding-left: initial;
    margin: 0 auto;
    max-width: 335px;
    height: 182px;
  }
  .main-group__left .img-group img {
    height: 100%;
    width: 100%;
  }
}
.main-group__left .document-group {
  max-width: 678px;
  background: #f5f5f5;
  margin-left: auto;
}
.main-group__left .document-group__inner {
  display: flex;
  background: #f5f5f5;
  margin: 0 auto;
  margin-top: 28px;
  align-items: center;
  padding: 30px 0;
  padding-left: 23px;
}
@media screen and (max-width: 767px) {
  .main-group__left .document-group__inner {
    max-width: 266px;
    margin-top: 24px;
    padding-left: initial;
    flex-direction: column;
    padding: 16px 0;
  }
}
.main-group__left .document-group__inner .circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .main-group__left .document-group__inner .circle {
    margin-right: 15px;
  }
}
.main-group__left .document-group__inner .circle p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  /* or 32px */
  color: #333333;
}
@media screen and (max-width: 767px) {
  .main-group__left .document-group__inner .circle p {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
  }
}
.main-group__left .document-group__inner .text {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  /* or 32px */
  color: #333333;
  margin-right: 26.45px;
  letter-spacing: initial;
}
@media screen and (max-width: 767px) {
  .main-group__left .document-group__inner .text {
    max-width: 190px;
    font-size: 20px;
    line-height: 135%;
    font-weight: 500;
    margin-right: initial;
    letter-spacing: 1px;
    padding-top: 3px;
  }
}
.main-group__left .document-group__inner .btn-group {
  background: #847563;
  border-radius: 4px;
  max-width: 232px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .main-group__left .document-group__inner .btn-group {
    margin-top: 16px;
  }
}
.main-group__left .document-group__inner .btn-group p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .main-group__left .document-group__inner .btn-group p {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
  }
}
@media screen and (max-width: 767px) {
  .main-group__left .document-group__inner .upper-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
.main-group__left .content-group {
  padding-top: 16px;
}
@media screen and (max-width: 992px) {
  .main-group__left .content-group {
    padding-top: initial;
  }
}
.main-group__left .content-group h2 {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  color: #333333;
  padding-left: 15px;
  padding-bottom: 32px;
  margin-top: 72px;
}
@media screen and (max-width: 992px) {
  .main-group__left .content-group h2 {
    font-size: 20px;
    line-height: 135%;
    margin-top: 48px;
    padding-left: initial;
    letter-spacing: 1px;
    padding-bottom: 16px;
  }
}
.main-group__left .content-group p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 177%;
  /* or 32px */
  color: #333333;
  padding-left: 11px;
}
@media screen and (max-width: 992px) {
  .main-group__left .content-group p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    padding-left: initial;
  }
}
.main-group__left .contact-area {
  display: flex;
  background: #f5f5f5;
  margin-top: 83px;
  height: 120px;
  display: flex;
  align-items: center;
  max-width: 678px;
}
@media screen and (max-width: 767px) {
  .main-group__left .contact-area {
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 16px;
    height: initial;
    margin-top: 46px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .main-group__left .contact-area {
    justify-content: center;
  }
}
.main-group__left .contact-area .text {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  /* or 32px */
  /* Font/Primary */
  color: #273200;
  margin-left: 22px;
  margin-right: 85.45px;
}
@media screen and (max-width: 767px) {
  .main-group__left .contact-area .text {
    font-weight: 500;
    font-size: 20px;
    line-height: 135%;
    max-width: 206px;
    margin: 0 auto;
    letter-spacing: 1px;
    padding-right: 16px;
  }
}
.main-group__left .contact-area .btn-area {
  max-width: 232px;
  width: 100%;
  background: #847563;
  border-radius: 4px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}
.main-group__left .contact-area .btn-area p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  /* /Base/White */
  color: #ffffff;
}
.main-group__right {
  max-width: 320px;
  width: 100%;
  margin-top: 36px;
}
@media screen and (max-width: 992px) {
  .main-group__right {
    margin: 0 auto;
    margin-top: 96px;
    max-width: initial;
    max-width: 335px;
  }
}
.main-group__right .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  /* or 32px */
  color: #333333;
}
.main-group__right .content-group {
  margin-top: 18px;
}
@media screen and (max-width: 992px) {
  .main-group__right .content-group {
    margin-top: 9px;
    letter-spacing: 1.3px;
  }
}
.main-group__right .content-group__single {
  margin-bottom: 17px;
}
.main-group__right .content-group__single .date {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 164%;
  /* identical to box height, or 29px */
  color: #333333;
}
.main-group__right .content-group__single .main-group {
  display: flex;
  padding-right: initial;
}
@media screen and (max-width: 992px) {
  .main-group__right .content-group__single .main-group {
    padding-left: initial;
    flex-direction: row;
    justify-content: space-between;
  }
}
.main-group__right .content-group__single .main-group p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  /* or 29px */
  color: #333333;
  max-width: 211px;
}
@media screen and (max-width: 992px) {
  .main-group__right .content-group__single .main-group p {
    margin-top: 5px;
    letter-spacing: initial;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
  }
}
.main-group__right .content-group__single .main-group .img-group {
  max-width: 104px;
  width: 100%;
  height: 58px;
  margin-left: 5px;
  margin-top: 5px;
}
@media screen and (max-width: 992px) {
  .main-group__right .content-group__single .main-group .img-group {
    max-width: 108.8px;
    height: 58px;
    margin-top: 12px;
  }
  .main-group__right .content-group__single .main-group .img-group img {
    width: 100%;
  }
}
.main-group__right .content-group__single .category {
  max-width: 116px;
  background: #f5f5f5;
  width: 100%;
  margin-top: 4px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .main-group__right .content-group__single .category {
    background: #bda38d;
    border-radius: 64px;
    margin-top: 6px;
    height: 24px;
  }
}
.main-group__right .content-group__single .category p {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 180%;
  /* identical to box height, or 22px */
  /* Font/Secondary */
  color: #999999;
}
@media screen and (max-width: 992px) {
  .main-group__right .content-group__single .category p {
    color: #ffffff;
  }
}

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

@media screen and (max-width: 767px) {
  .under-sp-none {
    display: none;
  }
}

.p-infomation-main__inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}
.p-infomation-main__inner .category-group {
  margin-top: 88px;
  display: flex;
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  height: 61px;
}
@media screen and (max-width: 992px) {
  .p-infomation-main__inner .category-group {
    margin-top: 40px;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    height: 90px;
  }
}
.p-infomation-main__inner .category-group .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  /* identical to box height, or 29px */
  color: #333333;
}
.p-infomation-main__inner .category-group .category-area {
  display: flex;
}
.p-infomation-main__inner .category-group .category-area li {
  display: flex;
}
.p-infomation-main__inner .content-group {
  margin-top: 55px;
}
@media screen and (max-width: 992px) {
  .p-infomation-main__inner .content-group {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 38.5px;
  }
}
.p-infomation-main__inner .content-group__single {
  display: flex;
  border-bottom: 1px solid #cccccc;
  padding-top: 17px;
  padding-bottom: 14px;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .p-infomation-main__inner .content-group__single {
    padding-top: 15px;
    padding-bottom: 15px;
    flex-direction: column;
    align-items: initial;
    letter-spacing: -0.3px;
  }
}
.p-infomation-main__inner .content-group__single:first-child {
  border-top: 1px solid #cccccc;
}
.p-infomation-main__inner .content-group__single .upper-group {
  display: flex;
  align-items: center;
}
.p-infomation-main__inner .content-group__single .date {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  /* or 32px */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-infomation-main__inner .content-group__single .date {
    font-size: 18px;
    line-height: 180%;
  }
}
.p-infomation-main__inner .content-group__single .category {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  /* identical to box height, or 29px */
  /* Font/Secondary */
  color: #999999;
  padding-left: 24px;
  padding-right: 24px;
  background: #f5f5f5;
  margin-left: 24px;
  margin-right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 37px;
}
@media screen and (max-width: 992px) {
  .p-infomation-main__inner .content-group__single .category {
    font-size: 16px;
    line-height: 150%;
    height: 32px;
    color: #999999;
    margin-left: 32.5px;
    margin-right: initial;
    letter-spacing: 0px;
  }
}
.p-infomation-main__inner .content-group__single .content {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 183%;
  /* or 32px */
  color: #333333;
}
@media screen and (max-width: 992px) {
  .p-infomation-main__inner .content-group__single .content {
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    margin-top: 17px;
    letter-spacing: initial;
  }
}
.p-infomation-main__inner .nav-group {
  margin-top: 64px;
}
@media screen and (max-width: 992px) {
  .p-infomation-main__inner .nav-group {
    margin-top: 48px;
  }
}
.p-infomation-main__inner .nav-group ul {
  display: flex;
  max-width: 450px;
  margin: 0 auto;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .p-infomation-main__inner .nav-group ul {
    max-width: 335px;
  }
}
.p-infomation-main__inner .nav-group ul li {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  /* /Base/White */
  color: #ffffff;
  background: #847563;
  max-width: 50px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .p-infomation-main__inner .nav-group ul li {
    max-width: 34px;
    height: 34px;
  }
}
.p-infomation-main__inner .nav-group ul li:not(:last-child) {
  margin-right: 5px;
}
@media screen and (max-width: 992px) {
  .p-infomation-main__inner .nav-group ul li:not(:last-child) {
    margin-right: 8px;
  }
}
.p-infomation-main__inner .nav-group ul li:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 992px) {
  .p-infomation-main__inner .nav-group ul li:first-child {
    margin-right: 32px;
  }
}
.p-infomation-main__inner .nav-group ul li:last-child {
  margin-left: 35px;
}
@media screen and (max-width: 992px) {
  .p-infomation-main__inner .nav-group ul li:last-child {
    margin-left: 25px;
  }
}

.p-infomation-single__inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  margin-top: 88px;
}
@media screen and (max-width: 992px) {
  .p-infomation-single__inner {
    margin-top: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-infomation-single__inner .text-group {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  /* Font/Primary */
  color: #273200;
  letter-spacing: -0.8px;
}
@media screen and (max-width: 992px) {
  .p-infomation-single__inner .text-group {
    max-width: 650px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: initial;
  }
}
.p-infomation-single__inner .img-group {
  margin-top: 80px;
}
@media screen and (max-width: 992px) {
  .p-infomation-single__inner .img-group {
    margin: 0 auto;
    margin-top: 39.5px;
    height: 168px;
    max-width: 335px;
  }
  .p-infomation-single__inner .img-group img {
    height: 100%;
  }
}

.p-pp-main {
  padding-top: 14px;
}
@media screen and (max-width: 992px) {
  .p-pp-main {
    padding-top: 29px;
  }
}
.p-pp-main__inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .p-pp-main__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-pp-main__inner__single {
  margin-top: 80px;
}
@media screen and (max-width: 992px) {
  .p-pp-main__inner__single {
    margin-top: 24px;
  }
}
.p-pp-main__inner__single .title {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  /* identical to box height */
  /* Font/Primary */
  color: #273200;
  padding-bottom: 17px;
}
@media screen and (max-width: 992px) {
  .p-pp-main__inner__single .title {
    font-size: 14px;
    line-height: 24px;
    padding-bottom: initial;
  }
}
.p-pp-main__inner__single .text {
  font-family: "YuGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.8px;
  line-height: 175%;
  /* or 32px */
  /* Font/Primary */
  color: #273200;
}
@media screen and (max-width: 992px) {
  .p-pp-main__inner__single .text {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: initial;
  }
}

/*=======================
  exp
=======================*/
.all-group {
  display: flex;
}
.all-group .left-group {
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .all-group .left-group {
    display: none;
  }
}
.all-group .ex-main-group {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .all-group .ex-main-group {
    margin-left: initial;
  }
}
@media screen and (max-width: 992px) {
  .all-group .ex-main-group .p-exp-fv {
    height: initial;
  }
}
.all-group .ex-main-group .p-exp-fv img {
  width: 100%;
  height: 100%;
}
.all-group .ex-main-group .p-exp-main__inner {
  margin: 0 auto;
  margin-top: 65px;
  max-width: 816.5px;
  padding-left: 2.5px;
}
@media screen and (max-width: 992px) {
  .all-group .ex-main-group .p-exp-main__inner {
    margin-top: 32px;
    padding-left: 19px !important;
    padding-right: 19px;
  }
}
.all-group .ex-main-group .p-exp-main__inner .content-group {
  margin-top: 93px;
}
@media screen and (max-width: 992px) {
  .all-group .ex-main-group .p-exp-main__inner .content-group {
    margin-top: 80px;
  }
}
.all-group .ex-main-group .p-exp-main__inner .content-group__inner {
  max-width: 811px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .all-group .ex-main-group .p-exp-main__inner .content-group__inner {
    max-width: 380px;
  }
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .all-group
    .ex-main-group
    .p-exp-main__inner
    .content-group__single:not(:last-child) {
    margin-bottom: 93px;
  }
}
.all-group .ex-main-group .p-exp-main__inner .content-group__single .title {
  color: #273200;
  font-family: "YuGothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0;
  padding-left: 1px;
}
@media screen and (max-width: 992px) {
  .all-group .ex-main-group .p-exp-main__inner .content-group__single .title {
    font-size: 16px;
    font-style: normal;
    text-align: center;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
    letter-spacing: 0px;
  }
}
.all-group .ex-main-group .p-exp-main__inner .content-group__single__inner {
  display: flex;
  justify-content: space-between;
  margin-top: 19px;
}
@media screen and (max-width: 992px) {
  .all-group .ex-main-group .p-exp-main__inner .content-group__single__inner {
    flex-direction: column;
    margin-top: 15px;
  }
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single:nth-child(2)
  .content-group__single__inner {
  margin-top: 16px;
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single:nth-child(2)
  .content-group__single__right {
  margin-top: 0px;
  padding-left: 3px;
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single:nth-child(2)
  .content-group__single__right
  .content {
  letter-spacing: -1px;
  line-height: 155%;
}
@media screen and (max-width: 992px) {
  .all-group
    .ex-main-group
    .p-exp-main__inner
    .content-group__single:nth-child(2)
    .content-group__single__right
    .content {
    padding-top: 20px;
    letter-spacing: 0.8px;
    line-height: 190%;
  }
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single:nth-child(2)
  .content-group__single__right
  .btn-area {
  margin-left: -2px;
}
@media screen and (min-width: 992px) {
  .all-group .ex-main-group .p-exp-main__inner .content-group__single__left {
    margin-right: 10px;
  }
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single__left
  .img-group {
  max-width: 380px;
  width: 100%;
  height: 235px;
}
@media screen and (max-width: 992px) {
  .all-group
    .ex-main-group
    .p-exp-main__inner
    .content-group__single__left
    .img-group {
    height: initial;
    max-height: 221px;
    height: 100%;
  }
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single__left
  .img-group
  img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .all-group
    .ex-main-group
    .p-exp-main__inner
    .content-group__single__left
    .img-group
    img {
    max-height: 221px;
  }
}
.all-group .ex-main-group .p-exp-main__inner .content-group__single__right {
  max-width: 393px;
  width: 100%;
  padding-left: 1px;
}
@media screen and (min-width: 992px) {
  .all-group .ex-main-group .p-exp-main__inner .content-group__single__right {
    margin-right: 10px;
  }
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single__right
  .content {
  color: #273200;
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -1px;
  line-height: 155%;
  padding-left: 0px;
}
@media screen and (max-width: 992px) {
  .all-group
    .ex-main-group
    .p-exp-main__inner
    .content-group__single__right
    .content {
    padding-top: 18px;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 190%; /* 24.7px */
    letter-spacing: 0.78px;
    padding-top: 23px;
    letter-spacing: 0.8px;
    line-height: 190%;
  }
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single__right
  .btn-area {
  margin-top: 31px;
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single__right
  .btn-area
  a {
  max-width: 152px;
  width: 100%;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .all-group
    .ex-main-group
    .p-exp-main__inner
    .content-group__single__right
    .btn-area
    a {
    margin: 0 auto;
  }
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single__right
  .btn-area
  a
  p {
  height: 36px;
  color: #fff;
  font-family: "YuGothic";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 20px;
  background: #929292;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  padding-right: 4px;
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single__right
  .btn-area
  a
  p::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 17.25px;
  background-image: url(../img/home/btn_arrow.png);
  background-size: contain;
  right: 11px;
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single:first-child
  .title {
  letter-spacing: 1.44px;
}
@media screen and (max-width: 992px) {
  .all-group
    .ex-main-group
    .p-exp-main__inner
    .content-group__single:first-child
    .title {
    letter-spacing: 0px;
  }
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single:first-child
  .content-group__single__right {
  margin-top: -2px;
  padding-left: 0px;
}
.all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single:first-child
  .content-group__single__right
  .content {
  line-height: 160%;
  letter-spacing: 0;
  padding-left: 0;
}
@media screen and (max-width: 992px) {
  .all-group
    .ex-main-group
    .p-exp-main__inner
    .content-group__single:first-child
    .content-group__single__right
    .content {
    padding-top: 23px;
    letter-spacing: 0.8px;
    line-height: 190%;
  }
}
.c-title-group {
  text-align: center;
  position: relative;
}
.c-title-group:after {
  content: "";
  background: #273200;
  width: 66px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 992px) {
  .c-title-group:after {
    left: 50%;
    bottom: -18px;
  }
}
.c-title-group .title__sub {
  color: #d8d9d5;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  padding-left: 9px;
}
@media screen and (max-width: 992px) {
  .c-title-group .title__sub {
    color: #d8d9d5;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 12px */
    padding-left: initial;
  }
}
.c-title-group .title__en {
  color: #273200;
  font-family: "Lato";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 1.92px;
  margin-top: 9px;
  margin-bottom: 2px;
}
@media screen and (max-width: 992px) {
  .c-title-group .title__en {
    color: #273200;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 25.2px */
    letter-spacing: 1.68px;
  }
}
.c-title-group .title__jp {
  color: #273200;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.156px;
}
@media screen and (max-width: 992px) {
  .c-title-group .title__jp {
    color: #273200;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 15.6px */
    letter-spacing: 0.156px;
    padding-left: 1px;
  }
}

.c-sub-title {
  margin-top: 54px;
  color: #273200;
  text-align: center;
  /* p */
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%;
  border-bottom: #d9d9d9 1px solid;
  padding-bottom: 52px;
}
.add-css a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-in;
}
.add-css li {
  list-style: none;
}
.add-css img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.add-css video {
  max-width: 100%;
  height: auto;
}
.add-css table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
.add-css .m-table1 th {
  width: 90px;
}
.add-css .btn-area {
  margin-top: 31px;
}
.add-css .btn-area a {
  max-width: 152px;
  width: 100%;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.add-css .btn-area a p {
  height: 36px;
  color: #fff;
  font-family: "YuGothic";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 20px;
  background: #929292;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  padding-right: 4px;
}
.add-css .btn-area a p::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 17.25px;
  background-image: url(../img/home/btn_arrow.png);
  background-size: contain;
  right: 11px;
}

.add_area_map {
  max-width: 882px;
  width: 100%;
}
.add_area_map img {
  margin-top: 50px;
}

.add-collection .Collection-description__first {
  padding-bottom: 4.5em;
  border-bottom: #e3dfd9 1px solid;
}
.add-collection .Collection-description__second {
  margin-top: 4.5em;
}

/*=======================
  architecture
=======================*/
@media screen and (max-width: 992px) {
  .c-arc-main {
    margin-left: initial !important;
  }
}
.c-arc-main .c-arc-group__single {
  margin-top: 64px;
  padding-bottom: 63px;
}
.c-arc-main .c-arc-group__single .titile-group .category {
  color: #273200;
  font-family: "YuGothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .c-arc-main .c-arc-group__single .titile-group .category {
    text-align: center;
    font-family: "YuGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  }
}
.c-arc-main .c-arc-group__single .titile-group .title {
  margin-top: 20px;
  color: #273200;
  /* dd */
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0.9px;
}
.c-arc-main .c-arc-group__single .content-area .big-image {
  width: 100%;
  max-height: 615px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 23px;
}
.c-arc-main .c-arc-group__single .content-area .text {
  color: #273200;
  /* dd */
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 187%;
  letter-spacing: 0.9px;
  margin-top: 55px;
}
.c-arc-main .c-arc-group__single .img-group {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.c-arc-main .c-arc-group__single .img-group__single {
  max-width: 380px;
  width: 100%;
  max-height: 253px;
  height: 100%;
}
.c-arc-main .c-arc-group__single .img-group__single img {
  width: 100%;
  height: 100%;
  max-height: 253px;
  height: 100%;
}
.c-arc-main .c-arc-group__second .content-area .text {
  margin-top: 8px;
  line-height: 183%;
}

.architecture1-group .p-exp-main__inner {
  max-width: 822px !important;
  margin: 0 auto;
  padding-right: 10px;
  margin-top: 63px !important;
  padding-left: initial !important;
}
@media screen and (max-width: 992px) {
  .architecture1-group .p-exp-main__inner {
    margin-top: 32px !important;
  }
}
.architecture1-group .c-title-group {
  padding-left: 10px !important;
}
@media screen and (max-width: 992px) {
  .architecture1-group .c-title-group {
    padding-left: 0px !important;
  }
}
.architecture1-group .c-title-group::after {
  left: 50.9% !important;
  bottom: -29px !important;
}
@media screen and (max-width: 992px) {
  .architecture1-group .c-title-group::after {
    left: 50% !important;
    bottom: -22px !important;
  }
}
.architecture1-group .c-title-group .title__sub {
  padding: initial;
}
.architecture1-group .c-title-group .title__en {
  padding: initial;
}
.architecture1-group .c-title-group .title__jp {
  padding: initial;
}
.architecture1-group .c-sub-title {
  padding-bottom: 54px;
}
@media screen and (max-width: 992px) {
  .architecture1-group .c-sub-title {
    font-family: "YuGothic";
    font-size: 13px;
    font-style: normal;
    text-align: left;
    font-weight: 500;
    line-height: 230%; /* 29.9px */
    padding-bottom: 52px;
    margin-left: -1px;
    letter-spacing: 0px;
    margin-top: 46px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 992px) {
  .architecture1-group .c-arc-group__single {
    margin-top: 37px;
    padding-bottom: 37px;
  }
  .architecture1-group .c-arc-group__single .titile-group .title {
    margin-top: 22px;
    color: #273200;
    font-family: "YuGothic";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 190%; /* 24.7px */
    letter-spacing: 0.78px;
    text-align: center;
  }
  .architecture1-group .c-arc-group__single .content-area .big-image {
    margin-top: 37px;
  }
  .architecture1-group .c-arc-group__single .content-area .text {
    margin-top: 35px;
  }
  .architecture1-group .c-arc-group__single .img-group {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    height: 100%;
  }
}
@media screen and (max-width: 992px) and (max-width: 810px) {
  .architecture1-group .c-arc-group__single .img-group {
    flex-direction: column;
    max-width: 380px;
    margin: 0 auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 992px) {
  .architecture1-group .c-arc-group__single .img-group__single:first-child {
    margin-bottom: 37px;
  }
}
.architecture1-group .c-arc-group__first {
  border-bottom: #d9d9d9 1px solid;
}
@media screen and (max-width: 992px) {
  .architecture1-group .c-arc-group__second .category {
    text-align: start !important;
  }
  .architecture1-group .c-arc-group__second .content-area .text {
    margin-top: 8px;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 190%; /* 24.7px */
    letter-spacing: 0.78px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1050px) {
  .arc-2 .c-sub-title {
    margin-right: 10px;
  }
}
@media screen and (max-width: 992px) {
  .arc-2 .c-title-group .title__sub {
    padding-left: 0px !important;
  }
}
@media screen and (max-width: 992px) {
  .arc-2 .c-sub-title {
    text-align: start;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 230%;
    margin-top: 42px;
    padding-bottom: 27px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1050px) {
  .arc-2 .c-arc-group {
    margin-right: 10px;
  }
}
@media screen and (max-width: 992px) {
  .arc-2 .c-arc-group__single {
    margin-top: 37px;
    padding-bottom: 34px;
  }
  .arc-2 .c-arc-group__single .titile-group .title {
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 190%; /* 24.7px */
    letter-spacing: 0.78px;
    margin-top: 22px;
  }
  .arc-2 .c-arc-group__single .content-area .text {
    margin-top: 22px;
    font-family: "YuGothic";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 190%; /* 24.7px */
    letter-spacing: 0.78px;
    line-height: 193%;
  }
  .arc-2 .c-arc-group__single .content-area .img-group {
    margin-top: 37px;
  }
}
@media screen and (max-width: 992px) and (max-width: 810px) {
  .arc-2 .c-arc-group__single .content-area .img-group {
    flex-direction: column;
    max-width: 380px;
    margin: 0 auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 992px) {
  .arc-2 .c-arc-group__single .content-area .img-group__single:first-child {
    margin-bottom: 37px;
  }
}
.arc-2 .c-arc-group__first {
  border-bottom: #d9d9d9 1px solid;
}
@media screen and (max-width: 992px) {
  .arc-2 .c-arc-group__second .category {
    text-align: start !important;
  }
  .arc-2 .c-arc-group__second .titile-group .title {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 14.4px */
    letter-spacing: 0.72px;
    text-align: left;
    margin-top: 39px;
  }
  .arc-2 .c-arc-group__second .content-area {
    margin-top: 13px;
  }
  .arc-2 .c-arc-group__second .content-area .text {
    margin-top: 8px;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 192%;
    letter-spacing: 0.78px;
  }
}

.category__single {
  position: relative;
}

.active-category::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: -5px;
  background: #d9d9d9;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.modal-content {
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  max-width: 640px;
  margin-bottom: 0px;
  width: 100%; /* Could be more or less, depending on screen size */
}
.modal-content__main {
  position: relative;
  background-color: #fefefe;
  border: 1px solid #fff;
  padding-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .modal-content__main {
    padding-bottom: 40px;
  }
}
.modal-content__inner {
  max-width: 580px;
  margin: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
}
.modal-content__title {
  margin-top: 20px;
  color: #273200;
  /* dd */
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%; /* 28.5px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 992px) {
  .modal-content__title {
    margin-top: 41px;
  }
}
.modal-content__content {
  padding-left: 19px;
  margin-top: 24px;
}
.modal-content__content li {
  list-style-type: disc !important;
  color: #273200;
  /* SP-p */
  font-family: "YuGothic";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 230%; /* 29.9px */
}

.close {
  position: absolute;
  color: #fff;
  float: right;
  font-size: 19px;
  font-weight: bold;
  background-color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 29px;
  padding-left: 1px;
  top: -10px;
  right: -12px;
}

.close:hover,
.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .g-nav-child_options {
    padding-top: 378px !important;
  }
  .g-nav-child_options .g-nav-child_item {
    width: 310px !important;
  }
  .g-nav-child_options .g-nav-child_item::before {
    width: 280px !important;
  }
  .g-nav-child_options .g-nav-child_item:last-child::after {
    width: 280px !important;
  }
}

.g-nav_item._explore:hover .g-nav-child_options {
  width: 310px !important;
}

/*=======================
  zen
=======================*/
@media screen and (max-width: 992px) {
  .c-zen-main {
    margin-left: initial !important;
  }
}
.c-zen-main .p-exp-main__inner {
  margin-top: 62px !important;
  padding-left: initial !important;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-exp-main__inner {
    margin-top: 32px !important;
    padding-left: 19px !important;
    padding-right: 19px !important;
  }
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-exp-main .c-title-group .title__sub {
    padding-left: 0px;
  }
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-exp-main .c-sub-title {
    margin-top: 42px;
    color: #273200;
    /* SP-p */
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 230%; /* 29.9px */
    text-align: left;
    padding-bottom: 27px;
  }
}
.c-zen-main .p-ocha-group {
  margin-top: 62px;
  margin-left: -3px;
  max-width: 810px;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-ocha-group {
    margin-top: 37px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1050px) {
  .c-zen-main .p-ocha-group {
    margin-right: 10px;
  }
}
.c-zen-main .p-ocha-group__single {
  padding-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-ocha-group__single {
    padding-bottom: 47px;
  }
}
.c-zen-main .p-ocha-group__single:first-child {
  padding-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-ocha-group__single:first-child {
    padding-bottom: 62px;
  }
}
.c-zen-main .p-ocha-group__single:not(:last-child) {
  border-bottom: #d9d9d9 1px solid;
}
.c-zen-main .p-ocha-group__single .titile-group .category {
  color: #273200;
  font-family: "YuGothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-ocha-group__single .titile-group .category {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
  }
}
.c-zen-main .p-ocha-group__single .titile-group .title {
  margin-top: 63px;
  color: #273200;
  /* dd */
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 1px;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-ocha-group__single .titile-group .title {
    margin-top: 37px;
    color: #273200;
    text-align: center;
    /* SP -dd */
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 190%; /* 24.7px */
    letter-spacing: 0.78px;
  }
}
.c-zen-main .p-ocha-group__single .content-area .text {
  color: #273200;
  /* dd */
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 187%;
  letter-spacing: 0.86px;
  margin-top: 24px;
  padding-right: 1px;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-ocha-group__single .content-area .text {
    color: #273200;
    /* SP -dd */
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 192%; /* 24.7px */
    letter-spacing: 0.78px;
    margin-top: 23px;
  }
}
.c-zen-main .p-ocha-group__single .content-area .img-group {
  display: flex;
  justify-content: space-between;
  margin-top: 39px;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-ocha-group__single .content-area .img-group {
    flex-direction: column;
    margin-top: 37px;
  }
}
.c-zen-main .p-ocha-group__single .content-area .img-group__single {
  max-width: 380px;
  width: 100%;
  max-height: 253px;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-ocha-group__single .content-area .img-group__single {
    max-width: 337px;
    margin: 0 auto;
    max-height: 225px;
    height: 100%;
  }
  .c-zen-main
    .p-ocha-group__single
    .content-area
    .img-group__single:first-child {
    margin-bottom: 40px;
  }
}
.c-zen-main .p-ocha-group__single .content-area .img-group__single img {
  width: 100%;
  height: 100%;
}
.c-zen-main .p-ocha-group__single .content-area .img-group__single .add-text {
  color: #273200;
  margin-top: 7px;
  font-family: "YuGothic";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-ocha-group__single .content-area .img-group__single .add-text {
    color: #273200;
    margin-top: 3px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 220%; /* 26.4px */
  }
}
.c-zen-main .p-ocha-group__single:last-child {
  margin-top: 67px;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-ocha-group__single:last-child {
    margin-top: 36px;
  }
}
.c-zen-main .p-ocha-group__single:last-child .titile-group .title {
  margin-top: 19px;
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-ocha-group__single:last-child .titile-group .title {
    text-align: start;
    margin-top: 24px;
  }
}
.c-zen-main .p-ocha-group__single:last-child .content-area .text {
  margin-top: 7px;
}
@media screen and (max-width: 992px) {
  .c-zen-main .p-ocha-group__single:last-child .content-area .text {
    margin-top: 10px;
  }
}
.c-zen-main .p-ocha-group__second .content-area .text {
  margin-top: 8px;
  line-height: 183%;
}

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

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

.c-arc-group__second .title {
  font-weight: 700 !important;
}

/*=======================
  zen2
=======================*/
.zen-2 .c-sub-title {
  border: none !important;
}
@media screen and (max-width: 992px) {
  .zen-2 .c-sub-title {
    margin-top: 43px;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 230%; /* 29.9px */
    text-align: left;
    padding-bottom: 26px;
    letter-spacing: -0.7px;
  }
}
@media screen and (max-width: 992px) and (min-width: 376px) {
  .zen-2 .c-sub-title {
    letter-spacing: -0.5px;
  }
}
.zen-2 .upper-group {
  border-bottom: #d9d9d9 1px solid;
}
@media screen and (min-width: 992px) and (max-width: 1050px) {
  .zen-2 .upper-group {
    margin-right: 10px;
  }
}
.zen-2 .p-exp-main__inner {
  margin-top: 62px !important;
}
@media screen and (max-width: 992px) {
  .zen-2 .p-exp-main__inner {
    margin-top: 32px !important;
  }
}
@media screen and (max-width: 992px) {
  .zen-2 .p-exp-main__inner {
    max-width: 380px !important;
    margin: 0 auto;
  }
}
.zen-2 .category {
  display: flex;
  max-width: 426px;
  margin: 0 auto;
  padding-bottom: 70px;
  margin-top: 5px;
  padding-left: 15px;
}
.zen-2 .category__single {
  color: #273200;
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
}
.zen-2 .category__single:not(:last-child) {
  margin-right: 35px;
}
.zen-2 .category__single:hover {
  cursor: pointer;
}
.zen-2 .category__single:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: -5px;
  background: #d9d9d9;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.zen-2 .hide-underline:after {
  display: none;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group {
    max-width: 380px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 992px) and (max-width: 1050px) {
  .zen-2 .zen2-group {
    margin-right: 10px;
  }
}
.zen-2 .zen2-group__single {
  padding-bottom: 63px;
  margin-top: 1px;
  padding-top: 60px;
}
.zen-2 .zen2-group__single:not(:last-child) {
  border-bottom: #d9d9d9 1px solid;
}
.zen-2 .zen2-group__single .title-ajust .title {
  text-align: center;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single {
    padding-top: initial;
    margin-top: 37px;
    padding-bottom: 35px;
  }
}
.zen-2 .zen2-group__single .title-group {
  max-width: 810px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .title-group {
    flex-direction: column;
  }
}
.zen-2 .zen2-group__single .title-group .title {
  color: #273200;
  /* h２ */
  font-family: "YuGothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  padding-left: 10px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .title-group .title {
    margin: 0 auto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
    padding-left: initial;
  }
}
.zen-2 .zen2-group__single .title-group .title-content {
  max-width: 677px;
  width: 100%;
  color: #273200;
  /* dd */
  color: #273200;
  font-family: "YuGothic";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%; /* 30.8px */
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%; /* 28.5px */
  letter-spacing: 0.9px;
  padding-right: 4px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .title-group .title-content {
    color: #273200;
    /* SP -dd */
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 190%; /* 24.7px */
    letter-spacing: 0.78px;
    margin-top: 24px;
    padding-right: initial;
  }
}
.zen-2 .zen2-group__single .title-ajust {
  align-items: center;
}
.zen-2 .zen2-group__single .title-ajust .title {
  padding-left: 0px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .title-ajust .title {
    text-align: center;
  }
}
.zen-2 .zen2-group__single .title-ajust .title-content {
  letter-spacing: 0px;
}
.zen-2 .zen2-group__single .title-ajust2 .title-content {
  max-width: 687px;
}
.zen-2 .zen2-group__single .content-group {
  margin-top: 36px !important;
  max-width: 693px;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .content-group {
    margin-top: 29px !important;
  }
}
.zen-2 .zen2-group__single .content-group__inner {
  display: flex;
  justify-content: space-between;
  padding-left: 8px;
  padding-right: 2px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .content-group__inner {
    flex-direction: column;
    padding: initial;
  }
}
.zen-2 .zen2-group__single .content-group__left {
  width: 240px;
  height: 160px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .content-group__left {
    margin: 0 auto;
  }
}
.zen-2 .zen2-group__single .content-group__right {
  max-width: 380px;
  height: 160px;
  width: 100%;
  border: #d9d9d9 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .content-group__right {
    margin-top: 35px;
  }
}
.zen-2 .zen2-group__single .content-group__right p {
  color: #273200;
  text-align: center;
  font-family: "YuGothic";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%; /* 30.8px */
}
.zen-2 .zen2-group__single .content-group__right p:last-child {
  /* padding-left: 21px; */
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .content-group__right p:last-child {
    padding-left: initial;
  }
}
.zen-2 .zen2-group__single .content-group__right p span {
  color: #273200;
  text-align: center;
  font-family: "YuGothic";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%; /* 26.4px */
  padding-left: 6px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .content-group__right p span {
    padding-left: 28px;
  }
}
.zen-2 .zen2-group__single .content-group__ajust {
  margin-top: 44px !important;
}
.zen-2 .zen2-group__single .sub-text {
  color: #273200;
  font-family: "YuGothic";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%; /* 26.4px */
  padding-top: 12px;
  padding-left: 0px;
  letter-spacing: 0.2px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .sub-text {
    padding-top: 6px;
    padding-left: 0px;
    text-align: center;
  }
}
.zen-2 .zen2-group__single .sub-text_ajust {
  padding-top: 0px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .sub-text_ajust {
    margin-top: 37px;
    text-align: left;
  }
}
.zen-2 .zen2-group__single .btn-group {
  width: 192.2px;
  height: 34px;
  margin-top: 57px;
  margin-left: 8px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .btn-group {
    margin: 0 auto;
    margin-top: 57px;
  }
}
.zen-2 .zen2-group__single .btn-group a {
  width: 192.2px;
  height: 34px;
  border-radius: 20px;
  background: #929292;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zen-2 .zen2-group__single .btn-group a p {
  color: #fff;
  font-family: "YuGothic";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 16.9px */
  position: relative;
  padding-right: 23px;
  padding-left: 10px;
}
.zen-2 .zen2-group__single .btn-group a p::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 17.25px;
  background-image: url(../img/home/btn_arrow.png);
  background-size: contain;
  right: 0;
}
.zen-2 .zen2-group__single .btn-group__second {
  max-width: 208px;
  width: 100%;
}
.zen-2 .zen2-group__single .btn-group__second a {
  max-width: 208px;
  width: 100%;
}
.zen-2 .zen2-group__single .add-text-group {
  margin-top: 24px;
  color: #273200;
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%; /* 28.5px */
  letter-spacing: 1px;
  padding-left: 6px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .add-text-group {
    font-size: 13px;
  }
}
.zen-2 .zen2-group__single .add-text-group span {
  font-weight: 700;
}
.zen-2 .zen2-group__single .add-content-group {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  max-width: 601px;
  width: 100%;
  margin-bottom: 0px;
  padding-left: 7px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .add-content-group {
    max-width: 275px;
    margin: 0 auto;
    flex-direction: column;
    margin-top: 36px;
  }
}
.zen-2 .zen2-group__single .add-content-group__left {
  max-width: 300px;
  width: 100%;
  height: 100%;
}
.zen-2 .zen2-group__single .add-content-group__right {
  max-width: 247px;
  width: 100%;
  color: #273200;
  /* dd */
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%; /* 28.5px */
  letter-spacing: 0.9px;
  margin-top: 35px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .add-content-group__right {
    margin: 0 auto;
    margin-top: 24px;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 190%; /* 28.5px */
    letter-spacing: 0.9px;
  }
}
.zen-2 .zen2-group__single .add-content-group__right p:last-child {
  margin-top: 28px;
}
.zen-2 .zen2-group__single .add-content-group__right__sub {
  color: #273200;
  font-family: "YuGothic";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%; /* 26.4px */
  letter-spacing: 0px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .add-content-group__right__sub {
    margin-top: 20px !important;
  }
}
.zen-2
  .zen2-group__single
  .add-content-group__right
  .add-content-group__right__sub__first {
  padding-top: 18px;
}
@media screen and (max-width: 992px) {
  .zen-2
    .zen2-group__single
    .add-content-group__right
    .add-content-group__right__sub__first {
    /* padding-top: 63px; */
  }
}
.zen-2
  .zen2-group__single
  .add-content-group__right
  .add-content-group__right__sub__last {
  margin-top: initial !important;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .add-content-group__right__sp {
    max-width: initial;
  }
}
.zen-2 .zen2-group__single .add-content-group2 {
  margin-bottom: 8px;
}
/* .zen-2 .zen2-group__single .add-content-group2 .add-content-group__left {
  max-height: 535px;
} */
.zen-2 .zen2-group__single .add-content-group2 .add-content-group__left img {
  max-height: 485px;
}
.zen-2 .zen2-group__single .add-content-group2 .add-content-group__right {
  padding-top: 10px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .add-content-group2 .add-content-group__right {
    padding-top: 0px;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 190%; /* 24.7px */
    letter-spacing: 0.78px;
  }
}
.zen-2
  .zen2-group__single
  .add-content-group2
  .add-content-group__right
  p:nth-child(2) {
  padding-top: 28px;
}
.zen-2 .zen2-group__single .btn-area {
  margin-top: 3px;
  display: flex;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .btn-area {
    flex-direction: column-reverse;
  }
}
.zen-2 .zen2-group__single .btn-area .btn-group:first-child {
  margin-right: 20px;
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .btn-area .btn-group:first-child {
    margin-right: initial;
    margin: 0 auto;
    margin-top: 36px;
  }
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__single .btn-area .btn-group {
    margin-top: 24px;
  }
}
@media screen and (max-width: 992px) {
  .zen-2 .zen2-group__second .sub-text {
    text-align: left !important;
  }
}

.g-footer-nav_item:first-child:after {
  content: none !important;
}

/*=======================
  zen3
=======================*/
.zen-3 .c-title-group {
  margin-left: -23px !important;
}
@media screen and (max-width: 992px) {
  .zen-3 .c-title-group {
    margin-left: initial !important;
  }
}
.zen-3 .c-sub-title {
  padding-bottom: 59px !important;
}
@media screen and (max-width: 992px) {
  .zen-3 .c-sub-title {
    padding-bottom: 27px !important;
  }
}
@media screen and (min-width: 992px) and (max-width: 1050px) {
  .zen-3 .c-sub-title {
    margin-right: 10px;
  }
}
.zen-3 .p-exp-main__inner {
  margin-top: 66px !important;
}
@media screen and (max-width: 992px) {
  .zen-3 .p-exp-main__inner {
    margin-top: 33px !important;
  }
}
@media screen and (min-width: 992px) and (max-width: 1050px) {
  .zen-3 .zen3-content {
    margin-right: 10px;
  }
}
.zen-3 .zen3-content__single {
  margin-top: 63px;
  padding-bottom: 58px;
}
.zen-3 .zen3-content__single:not(:last-child) {
  border-bottom: #d9d9d9 1px solid;
}
@media screen and (max-width: 992px) {
  .zen-3 .zen3-content__single {
    margin-top: 36px !important;
    padding-bottom: 36px;
  }
}
.zen-3 .zen3-content__single .text-group {
  color: #273200;
  /* h２ */
  font-family: "YuGothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}
@media screen and (max-width: 992px) {
  .zen-3 .zen3-content__single .text-group {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
  }
}
.zen-3 .zen3-content__single .content-area {
  margin-top: 25px;
  color: #273200;
  /* dd */
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%; /* 28.5px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 992px) {
  .zen-3 .zen3-content__single .content-area {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 190%; /* 24.7px */
    letter-spacing: 0.78px;
  }
}
.zen-3 .zen3-content__second .content-area {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .zen-3 .zen3-content__second .content-area {
    flex-direction: column;
  }
}
.zen-3 .zen3-content__second .content-area .content-text {
  max-width: 380px;
}
@media screen and (max-width: 992px) {
  .zen-3 .zen3-content__second .content-area .content-text {
    max-width: initial;
  }
}
.zen-3 .zen3-content__second .content-area .img-group {
  max-width: 389px;
  padding-right: 9px;
}
@media screen and (max-width: 992px) {
  .zen-3 .zen3-content__second .content-area .img-group {
    margin: 0 auto;
    padding-right: initial;
    margin-top: 36px;
  }
}
.zen-3 .zen3-content__second .content-area .img-group p {
  color: #273200;
  font-family: "YuGothic";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%; /* 30.8px */
  letter-spacing: 0;
  padding-top: 6px;
}
@media screen and (max-width: 992px) {
  .zen-3 .zen3-content__second .content-area .img-group p {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 220%; /* 26.4px */
    padding-top: 3px;
  }
}
.zen-3 .zen3-content__third {
  margin-top: 64px;
}
.zen-3 .zen3-content__third .content-text2 {
  margin-top: 40px;
  letter-spacing: initial;
  line-height: 220%; /* 33px */
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .zen-3 .zen3-content__third .content-text2 {
    margin-top: 30px;
    line-height: 230%;
    margin-bottom: 35px;
  }
}
.zen-3 .zen3-content__third .img-area {
  max-width: 808px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 39px;
}
@media screen and (max-width: 992px) {
  .zen-3 .zen3-content__third .img-area {
    flex-direction: column;
    margin-top: 36px;
  }
}
.zen-3 .zen3-content__third .img-area img {
  max-width: 380px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .zen-3 .zen3-content__third .img-area img {
    margin: 0 auto;
    margin-bottom: 40px;
  }
}

.add_menu_item {
  display: block !important;
}

/*=======================
  zen4
=======================*/
.zen-4 .p-exp-main__inner {
  max-width: 810px !important;
}
.zen-4 .c-sub-title {
  padding-bottom: 57px;
}
@media screen and (min-width: 992px) and (max-width: 1050px) {
  .zen-4 .c-sub-title {
    margin-right: 10px;
  }
}
.zen-4 .c-title-group::after {
  left: 50% !important;
}
.zen-4 .c-title-group .title__sub {
  padding-left: 0px !important;
}
.zen-4 .c-title-group .title__jp {
  padding-left: 0px !important;
}
.zen-4 .zen4-content {
  margin-top: 63px;
}
@media screen and (max-width: 992px) {
  .zen-4 .zen4-content {
    margin-top: 36px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1050px) {
  .zen-4 .zen4-content {
    margin-right: 10px;
  }
}
.zen-4 .zen4-content .text-group {
  color: #273200;
  /* dd */
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%; /* 28.5px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 992px) {
  .zen-4 .zen4-content .text-group {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 193%;
    letter-spacing: 0.78px;
  }
}
.zen-4 .zen4-content .content-area__single {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 810px) {
  .zen-4 .zen4-content .content-area__single {
    flex-direction: column;
    max-width: 380px;
    margin: 0 auto;
  }
}
.zen-4 .zen4-content .content-area__single div {
  margin-top: 61px;
  max-width: 380px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .zen-4 .zen4-content .content-area__single div {
    margin-top: 40px;
  }
}
.zen-4 .zen4-content .content-area__single .text-group {
  border: 1px solid #d9d9d9;
}
.zen-4 .zen4-content .content-area__single .text-group__inner {
  margin-top: 20px;
}
.zen-4 .zen4-content .content-area__single .text-group__inner p {
  color: #273200;
  text-align: center;
  font-family: "YuGothic";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%; /* 30.8px */
  letter-spacing: 0px;
}
.zen-4 .zen4-content .content-area__single .text-group__inner p .main-text {
  margin-top: 15px;
}
.zen-4 .zen4-content .content-area__single .text-group__inner p:last-child {
  font-size: 12px;
  margin-top: 20px;
}
@media screen and (max-width: 992px) and (max-width: 810px) {
  .zen-4 .zen4-content .content-area__single .text-group__inner p:last-child {
    padding-bottom: 26px;
  }
}

/*=======================
  zen5
=======================*/
.zen-5 .sub-add-text {
  font-size: 12px !important;
}
.zen-5 .zen4-content .content-area__single .text-group__inner p:last-child {
  margin-top: 10px;
}

.pp-area {
  color: #273200;
  font-family: "YuGothic";
  font-size: 15px;
  text-align: left !important;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 24px */
  letter-spacing: 1.2px;
}

/*=======================
  cemetry
=======================*/
.cemetry-section .p-exp-main__inner {
  max-width: 810px !important;
}
.cemetry-section .c-sub-title {
  border-bottom: none;
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  .cemetry-section .p-exp-main .c-sub-title {
    text-align: center !important;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .cemetry-section .p-exp-main .c-sub-title {
    max-width: 510px;
    margin: 0 auto;
    margin-top: 42px;
    border-bottom: 1px solid #d9d9d9;
  }
}
.cemetry-section .title-img-group {
  display: flex;
  max-width: 810px;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 63px;
  border-bottom: #d9d9d9 1px solid;
}
@media screen and (max-width: 992px) {
  .cemetry-section .title-img-group {
    justify-content: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) and (max-width: 550px) {
  .cemetry-section .title-img-group {
    max-width: 337px;
  }
}
.cemetry-section .title-img-group__single {
  max-width: 240px;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  .cemetry-section .title-img-group__single:not(:nth-child(3n)) {
    margin-right: 3px;
  }
}
@media screen and (max-width: 992px) and (min-width: 550px) and (max-width: 767px) {
  .cemetry-section .title-img-group__single:not(:nth-child(2n)) {
    margin-right: 3px;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) and (max-width: 550px) {
  .cemetry-section .title-img-group__single {
    max-width: 337px;
  }
}
.cemetry-section .title-img-group__single img {
  width: 100%;
  height: 100%;
}
.cemetry-section .cemetry-content {
  margin-top: 63px;
  padding-bottom: 63px;
  border-bottom: #d9d9d9 1px solid;
}
@media screen and (max-width: 992px) {
  .cemetry-section .cemetry-content {
    margin-top: 36px;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 992px) {
  .cemetry-section .cemetry-content__single {
    max-width: 337px;
    margin: 0 auto;
  }
}
.cemetry-section .cemetry-content__single:first-child {
  margin-bottom: 80px;
}
.cemetry-section .cemetry-content__single:first-child img {
  max-width: 810px;
  width: 100%;
  height: 70px;
}
@media screen and (max-width: 992px) {
  .cemetry-section .cemetry-content__single:first-child img {
    height: 100%;
  }
}
.cemetry-section .cemetry-content__single*:last-child img {
  max-width: 810px;
  width: 100%;
  height: 77px;
}
@media screen and (max-width: 992px) {
  .cemetry-section .cemetry-content__single*:last-child img {
    height: 100%;
  }
}
.cemetry-section .cemetry-content__single .title {
  color: #273200;
  font-family: "YuGothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%; /* 39.6px */
  margin-bottom: 24px;
}
@media screen and (max-width: 992px) {
  .cemetry-section .cemetry-content__single .title {
    margin-bottom: 32px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
  }
}
.cemetry-section .bottom-group {
  margin-top: 63px;
}
.cemetry-section .bottom-group p {
  color: #273200;
  text-align: center;
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%; /* 33px */
}
@media screen and (max-width: 992px) {
  .cemetry-section .bottom-group p {
    text-align: left;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 190%; /* 24.7px */
    letter-spacing: 0.78px;
  }
}
.cemetry-section .bottom-group .tel-text {
  margin-top: 20px;
  color: #273200;
  text-align: center;
  font-family: "YuGothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%; /* 39.6px */
}

.en-group {
  letter-spacing: 0;
}
.en-group .zen-2 {
  letter-spacing: 0 !important;
}
.en-group .zen-2 .c-sub-title {
  margin-top: 71px;
  padding-bottom: 38px;
}
.en-group .zen-2 .c-sub-title p {
  letter-spacing: 0;
}
.en-group .zen-2 .category {
  padding-bottom: 46px;
}
.en-group .zen-2 .zen2-group__single {
  padding-bottom: 34px;
}
.en-group .zen-2 .zen2-group__single .title-group {
  padding-left: initial;
}
.en-group .zen-2 .zen2-group__single .title-group .title {
  text-align: start;
  padding-left: 10px;
}
.en-group .zen-2 .zen2-group__single .title-group .title-content {
  max-width: 591px;
  padding-right: initial;
}
.en-group .zen-2 .zen2-group__single .content-group {
  margin-top: 60px !important;
}
.en-group .zen-2 .zen2-group__single .content-group__right {
  margin-right: 24px;
}
.en-group .zen-2 .zen2-group__single .content-group__inner {
  padding-left: 11px;
}
.en-group .zen-2 .zen2-group__single .sub-text {
  padding-top: 40px;
}
.en-group .zen-2 .zen2-group__single .btn-group {
  width: 152.2px;
  margin-top: 24px;
}
.en-group .zen-2 .zen2-group__single .btn-group a {
  width: 152.2px;
}
.en-group .zen-2 .zen2-group__single:nth-child(1) .content-group__right p {
  padding-left: initial;
}
.en-group
  .zen-2
  .zen2-group__single:nth-child(1)
  .content-group__right
  p:last-child {
  font-size: 11px;
  padding-left: initial;
}
.en-group
  .zen-2
  .zen2-group__single:nth-child(1)
  .content-group__right
  p:last-child
  span {
  padding-left: initial;
}
.en-group .zen-2 .zen2-group__single:nth-child(2) {
  padding-bottom: 64px;
}
.en-group .zen-2 .zen2-group__single:nth-child(2) .title-group .title-content {
  max-width: 544px;
}
.en-group .zen-2 .zen2-group__single:nth-child(2) .content-group {
  margin-top: 43px !important;
}
.en-group
  .zen-2
  .zen2-group__single:nth-child(2)
  .content-group
  .add-content-group__right {
  padding-top: 8px;
}
.en-group .zen-2 .zen2-group__single:nth-child(2) .content-group__right p {
  line-height: initial;
  padding-left: initial;
}
.en-group .zen-2 .zen2-group__single:nth-child(3) .content-group__right p {
  line-height: initial;
  padding-left: initial;
}
.en-group .zen-2 .zen2-group__single:nth-child(2) .content-group__right p span {
  padding-left: initial;
  line-height: initial;
}
.en-group .zen-2 .zen2-group__single:nth-child(3) .content-group__right p span {
  padding-left: initial;
  line-height: initial;
}
.en-group .zen-2 .zen2-group__single:nth-child(2) .sub-text {
  padding-top: 23px;
}
.en-group .zen-2 .zen2-group__single:nth-child(3) .title-group {
  max-width: 767px;
}
.en-group .zen-2 .zen2-group__single:nth-child(3) .content-group {
  margin-top: 41px !important;
}
.en-group .zen-2 .zen2-group__single:nth-child(3) .content-group__right__inner {
  padding-bottom: 17px;
}
@media screen and (max-width: 992px) {
  .en-group
    .zen-2
    .zen2-group__single:nth-child(3)
    .content-group__right__inner {
    padding-bottom: initial;
  }
}
.en-group
  .zen-2
  .zen2-group__single:nth-child(3)
  .content-group__right
  p:last-child {
  margin-top: -2px;
}
.en-group
  .zen-2
  .zen2-group__single:nth-child(3)
  .content-group__right
  p:last-child
  span {
  line-height: 16px;
}
.en-group .zen-2 .zen2-group__single:nth-child(3) .sub-text {
  max-width: 500px;
  padding-top: initial;
}
.en-group .zen-2 .zen2-group__single:nth-child(3) .add-content-group {
  margin-top: 95px;
}
.en-group .zen-2 .zen2-group__single:nth-child(3) .btn-group {
  margin-top: 35px;
}
.en-group .zen-2 .zen2-group__single:nth-child(4) .title-group {
  max-width: 775px;
}
.en-group .zen-2 .zen2-group__single:nth-child(4) .title-group .title-content {
  letter-spacing: 0.9px;
}
.en-group .zen-2 .zen2-group__single:nth-child(4) .content-group {
  margin-top: 44px !important;
}
.en-group .zen-2 .zen2-group__single:nth-child(4) .content-group__right {
  padding-top: 29px;
}
.en-group .zen-2 .zen2-group__single:nth-child(4) .content-group__right__inner {
  padding-bottom: 17px;
}
.en-group
  .zen-2
  .zen2-group__single:nth-child(4)
  .content-group__right
  p:last-child {
  margin-top: -2px;
}
.en-group
  .zen-2
  .zen2-group__single:nth-child(4)
  .content-group__right
  p:last-child
  span {
  line-height: 16px;
}
.en-group .zen-2 .zen2-group__single:nth-child(4) .sub-text {
  max-width: 500px;
  padding-top: initial;
}
.en-group .zen-2 .zen2-group__single:nth-child(4) .add-content-group {
  margin-top: 43px;
}
.en-group
  .zen-2
  .zen2-group__single:nth-child(4)
  .add-content-group
  .add-content-group__right
  span {
  padding-top: 40px;
  color: #273200;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%; /* 26.4px */
  letter-spacing: 0px;
}
.en-group .zen-2 .zen2-group__single:nth-child(4) .btn-group {
  margin-top: 35px;
}
/* .en-group
  .zen-2
  .zen2-group__single
  .add-content-group2
  .add-content-group__left {
  max-height: 792px;
}
.en-group
  .zen-2
  .zen2-group__single
  .add-content-group2
  .add-content-group__left
  img {
  max-height: 792px;
} */
.en-group .title__sub {
  padding-left: initial;
}
.en-group .m-table1 {
  width: initial;
}
.en-group .en-btn {
  font-weight: 500;
  letter-spacing: 0;
  width: 190px;
  padding: 0 26px !important;
  text-align: left !important;
}
.en-group .en-btn:after {
  right: 18px !important;
  top: 51% !important;
}
.en-group .en-btn-area a {
  max-width: 190px !important;
}
.en-group .en-btn-area a p {
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  /* width: 190px; */
  padding: 0 26px !important;
  /* text-align: left !important; */
  justify-content: left !important;
}
.en-group .workation-description {
  max-width: 810px;
  margin: 0 auto;
  margin-top: 50px;
  letter-spacing: 0;
}
.en-group .a.workation-article-booking-button1_link {
  letter-spacing: 0;
  padding-left: 0px;
  padding-right: 30px;
}
.en-group .workation-article-booking-button1_link {
  text-align: left !important;
  padding-left: 30px !important;
}
@media screen and (min-width: 992px) {
  .en-group .p-exp-main__inner .content-group__single__right .content {
    font-size: 15px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 190% !important; /* 28.5px */
    letter-spacing: 0 !important;
  }
}
@media screen and (min-width: 992px) {
  .en-group .workation-plan-item-information_body {
    width: initial !important;
  }
  .en-group .workation-plan-item-information_head {
    max-width: 292px;
    width: 100%;
  }
  .en-group .workation-plan-item-content1 {
    justify-content: end;
  }
}
@media screen and (min-width: 992px) {
  .en-group .workation-article-information-item_body {
    width: initial !important;
  }
  .en-group .workation-article-information-item_head {
    max-width: 292px;
    width: 100%;
  }
  .en-group .workation-article-information {
    justify-content: end;
  }
}
.en-group .workation-article-fee_heading {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
.en-group .workation-article-fee_text {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
.en-group .workation-plan-item-included-list_item::before {
  display: none !important;
}
.en-group .shoshintei-group {
  letter-spacing: 0;
}
.en-group .chashitsu-title .title__sub {
  padding-left: initial;
}
.en-group .zen4-content .content-area__single .text-group__inner {
  margin-top: 30px !important;
}
@media screen and (max-width: 992px) {
  .en-group .p-exp-main__inner .content-group__single__right .content {
    letter-spacing: 0;
  }
}

.shodo-area {
  max-width: 715px;
  margin: 0 auto;
}

.zazen-en-only {
  justify-content: center;
  display: flex;
  max-width: 700px !important;
}

.en-modal {
  padding-left: initial;
}
.en-modal li {
  list-style-type: none !important;
}

.en-btn-area a {
  max-width: 190px;
}
.en-btn-area a p {
  letter-spacing: 0px;
  font-weight: 500;
}

.en-group_zenex
  .all-group
  .ex-main-group
  .p-exp-main__inner
  .content-group__single__right
  .content {
  letter-spacing: initial;
}

_::-webkit-full-page-media .m-table1 th,
_:future .m-table1 th,
:root .en-group .m-table1 th {
  width: 100px;
}

_::-webkit-full-page-media a,
_:future a,
:root .en-btn-area a {
  max-width: 190px;
}
_::-webkit-full-page-media a p,
_:future a p,
:root .en-btn-area a p {
  letter-spacing: 0px;
  font-weight: 500;
}

.en-group-kohtei .slick-dots {
  display: none !important;
}

.Contact-input-area .horizontal-item {
  margin-right: 3px !important;
  letter-spacing: 0 !important;
} /*# sourceMappingURL=style.css.map */
.text-title-add {
  font-size: 14px;
}
.main-text-title-add {
  font-size: 18px;
}
.main-text-add {
  font-size: 12px;
}
.g-footer-nav_item-inst {
  width: 100px;
  margin-left: auto;
  margin-right: initial !important;
  padding-right: initial !important;
}
.g-siteinfo-nav-add {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .g-footer-nav_item-inst {
    width: 78px;
    margin: 0 auto !important;
  }
}

.ks-1025 .schedule div {
  color: #273200;
  font-family: "YuGothic";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.4px;
}
.ks-1025 .schedule p {
  color: #273200;
  font-family: "YuGothic";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.4px;
}

.ks-1025 h1 {
  color: #273200;
  font-family: "YuGothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 190%; /* 28.5px */
  letter-spacing: 0.9px;
}
.ks-1025 .sub-title {
  font-weight: 700 !important;
}
.ks-1025 .event {
  margin-bottom: 12px;
}
.ks-1025 .event-20 {
  margin-bottom: 20px;
}
.ks-1025 .padding-left {
  padding-left: 16px;
  border-left: #929292 solid 1px;
}
.ks-add-1025 .margin-27 {
  margin-top: 27px;
}
.add-text-1030 {
  line-height: 170%;
}
.margin-18 {
  margin-top: 18px !important;
}
