@charset "utf-8";

body {
  /* 共通カラー設定 */
  --primary-color: #776f5e;

  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 2;
  color: var(--primary-color);
  position: relative;
  width: 100%;
  font-feature-settings: "palt";
  box-sizing: border-box;
}
a {
  transition: opacity 0.3s ease;
  text-decoration: none;
}
@media screen and (min-width: 861px) {
  a:hover {
    opacity: 0.8;
  }
}
canvas {
  max-width: 100%;
  max-height: 500px;
  height: 480px;
}
.js-fade-in {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.opacity-100 {
  opacity: 1;
}

/* header */
.Header {
  position: fixed;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 26px 30px;
  z-index: 98;
  transition: 0.2s ease;
}
.Header.is-scrolling {
  opacity: 0;
  top: 0;
}
.Header.is-scrolling * {
  pointer-events: none;
}
.HeaderNavi {
  display: flex;
  gap: 20px;
}
.HeaderNaviItem {
  color: var(--primary-color);
  font-size: 12px;
}
.HeaderSpButton {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
.HeaderSpNaviLine {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--primary-color);
  transition: 0.3s ease;
}
.HeaderSpNaviLine:last-child {
  margin: 5px 0 0 0;
}
@media (860px <= width < 1160px) {
  .HeaderNavi {
    gap: 14px;
  }
  .HeaderNaviItem {
    font-size: 10px;
  }
}
@media screen and (max-width: 860px) {
  .Header {
    padding: 16px;
    display: block;
  }
  .HeaderWrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .HeaderNavi {
    margin: 24px 0 0 0;
    flex-direction: column;
    gap: 14px;
  }
  .HeaderNaviItem {
    font-size: 14px;
    text-align: center;
  }
  .is-clicked .HeaderSpNaviLine:first-child {
    transform: rotate(45deg);
  }
  .is-clicked .HeaderSpNaviLine:last-child {
    margin: -1px 0 0 0;
    transform: rotate(-45deg);
  }
}

/* パンくずリスト */
.Breadcrumb {
  margin: 130px 30px 30px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 14px;
}
.BreadcrumbItem + .BreadcrumbItem::before {
  content: "›";
  margin: 0 0.5rem;
  color: #776f5e;
}
.BreadcrumbItem a {
  text-decoration: none;
}
.BreadcrumbItem.active {
  pointer-events: none;
}
@media screen and (max-width: 860px) {
  .Breadcrumb {
    margin: 80px 15px 30px;
    font-size: 12px;
  }
}

/* footer */
.Footer {
  background: #333333;
  color: #ffffff;
  padding: 94px 50px 20px 50px;
}
.TopFooter {
  margin-top: 150px;
}
.FooterMain {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.FooterNaviMain {
  margin-top: 10px;
  display: flex;
  gap: 0.5em 0;
  flex-wrap: wrap;
  max-width: 560px;
}
.FooterNaviMainItem {
  width: 140px;
  font-size: 15px;
  color: #fff;
}
.FooterNaviSub {
  display: flex;
  gap: 0.5em 3em;
  flex-wrap: wrap;
  max-width: 650px;
}
.FooterNaviSubItem {
  font-size: 13px;
  color: #fff;
}
.FooterCorporate {
  margin: 80px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.FooterCorporateMain {
  width: 50%;
}
.FooterCorporateLogo {
  font-size: 18px;
  font-weight: 700;
}
.FooterCorporateMain .FooterNaviSub {
  margin: 15px 0;
}
.FooterCorporateLink {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 38px;
}
.FooterCorporateSns {
  display: flex;
  gap: 38px;
}
.FooterCopyright {
  display: block;
  margin: 42px 0 0 0;
  font-size: 11px;
  text-align: right;
}

@media screen and (max-width: 860px) {
  .Footer {
    padding: 60px 5% 20px 5%;
  }
  .TopFooter {
    margin-top: 100px;
  }
  .FooterMain {
    gap: 20px;
  }
  .FooterNaviMain {
    gap: 0;
    margin-top: 0;
  }
  .FooterNaviMainItem {
    font-size: 14px;
  }
  .FooterNaviMain a {
    width: 50%;
    max-width: 170px;
  }
  .FooterCorporate {
    margin: 50px 0 0 0;
    flex-wrap: wrap;
  }
  .FooterCorporateLogo {
    margin: 0 0 10px;
  }
  .FooterCorporateMain {
    width: 100%;
  }
  .FooterCorporateMain .FooterNaviSub {
    gap: 0;
    margin: 10px 0;
  }
  .FooterCorporateMain .FooterNaviSub a {
    width: 50%;
    max-width: 170px;
  }
  .FooterCorporateLink {
    flex-wrap: wrap;
    justify-content: center;
  }
  .FooterCorporateSub {
    margin: 50px 0 0 0;
  }
  .FooterCopyright {
    text-align: center;
  }
}

/* content */
section.BasicContent {
  max-width: 980px;
  margin: 0 auto 130px;
  position: relative;
}
@media screen and (min-width: 1160px) {
  section.BasicContent.TwoColumn-L.ContainFullImage {
    max-width: none;
    margin: 0 0 130px calc(50vw - 490px);
  }
  section.BasicContent.TwoColumn-R.ContainFullImage {
    max-width: none;
    margin: 0 calc(50vw - 490px) 130px 0;
  }
}

@media (860px <= width < 1160px) {
  section.BasicContent.TwoColumn-L.ContainFullImage {
    width: 100%;
    margin: 0 0 130px calc(50vw - 430px);
    padding: 0 0 0 40px;
  }
  section.BasicContent.TwoColumn-R.ContainFullImage {
    width: 100%;
    margin: 0 calc(50vw - 430px) 130px 0;
    padding: 0 20px 0 0;
  }
}

section.BasicContent figure {
  width: 420px;
}

section.BasicContent .Txt {
  width: 420px;
  position: relative;
}
.TitleWrap {
  position: relative;
}
section.BasicContent .Txt .en,
.TitleWrap .en {
  font-size: 10px;
  position: absolute;
  transform: rotate(90deg);
  top: 144px;
  left: -200px;
  width: 300px;
  text-align: left;
  text-transform: uppercase;
  font-weight: normal;
  font-family: "indivisible" sans-serif;
}

section.BasicContent .Txt:before,
.TitleWrap .Title:before {
  content: "";
  width: 200px;
  display: block;
  height: 1px;
  background-color: #000000;
  margin: 0 0 50px;
}

section.BasicContent .TxtContent {
  margin: 0 0 50px;
}

section.BasicContent .Txt .Title,
.TitleWrap .Title {
  font-size: 32px;
  line-height: 1.5;
  margin: 0 0 50px;
  font-weight: 500;
}

section.BasicContent .Txt .TxtContent .Lead {
  line-height: 2;
  font-size: 15px;
  margin: 0 0 50px;
}

section.OneColumn .Txt {
  width: 100%;
}

section.OneColumn .Txt {
  right: 0px;
}

section.TwoColumn-R {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

section.TwoColumn-L {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 1160px) {
  section.BasicContent {
    width: 840px;
    margin: 0 auto 100px;
    position: relative;
  }
  section.BasicContent figure {
    width: 360px;
  }
  section.BasicContent .Txt {
    width: 360px;
  }
  section.OneColumn .Txt {
    width: 100%;
  }
}

@media screen and (max-width: 1020px) {
  section.BasicContent {
    width: 760px;
    margin: 0 auto 100px;
    position: relative;
  }
  section.BasicContent figure {
    width: 340px;
  }
  section.BasicContent .Txt {
    width: 340px;
  }
  section.OneColumn .Txt {
    width: 100%;
  }
  section.BasicContent .Txt .Title,
  .TitleWrap .Title {
    font-size: 32px;
    margin: 0 0 50px;
  }
  section.BasicContent .Txt .en,
  .TitleWrap .en {
    font-size: 9px;
    left: -175px;
    margin: 0 0 50px;
  }
}

@media screen and (max-width: 860px) {
  body {
    font-size: 12px;
  }
  section.BasicContent {
    width: 90%;
    margin: 0 auto 100px;
    position: relative;
  }
  section.BasicContent figure {
    width: 100%;
  }
  section.BasicContent .Txt {
    width: 100%;
  }
  section.BasicContent .Txt .Title,
  .TitleWrap .Title {
    font-size: 24px;
    margin: 0 0 10px;
  }
  section.BasicContent .Txt .en,
  .TitleWrap .en {
    font-size: 10px;
    position: relative;
    transform: rotate(0deg);
    top: 0;
    left: 0;
    width: 300px;
    text-align: left;
    text-transform: uppercase;
  }
  section.TwoColumn-R,
  section.TwoColumn-L {
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  section.BasicContent .Txt .TxtContent .Lead {
    line-height: 2;
    font-size: 13px;
    margin: 0 0 50px;
  }
}

.TextCenter {
  text-align: center;
}
.ImageBorder {
  display: block;
  position: relative;
  width: 100%;
  height: fit-content;
}
.FadeItem {
  width: 45%;
  padding-top: 70%;
  position: relative;
}
@media screen and (max-width: 860px) {
  .FadeItem {
    width: 90%;
    padding-top: 133%;
  }
}

.FadeItem > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 2;
}
.FadeItem img.current {
  opacity: 1;
}
.js-fade-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.js-fade-item.current {
  opacity: 1;
}
.ImageBorder::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color);
  top: 20px;
  left: 20px;
  z-index: 0;
}
.ImageBorder:not(.FadeItem) img {
  z-index: 1;
  position: relative;
}

.MainWrapper {
  padding: 154px 0 0 0;
}

@media (860px <= width < 1160px) {
  .ImageSideFull {
    width: calc(50vw - 70px) !important;
  }
}
@media screen and (min-width: 1160px) {
  .ImageSideFull {
    width: calc(50vw - 70px) !important;
  }
}
.visible-sp {
  display: none;
}
@media screen and (max-width: 860px) {
  .visible-pc {
    display: none;
  }
  .visible-sp {
    display: block;
  }
}
.is-hide {
  display: none;
}
.LinkButton {
  margin: 0 auto 130px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 15px;
  border-radius: 99px;
  width: 100%;
  max-width: 450px;
  display: block;
  text-align: center;
  padding: 26px 0;
  transition: 0.3s ease;
}
@media screen and (min-width: 861px) {
  .LinkButton:hover {
    background: var(--primary-color);
    color: #fff;
  }
}
/* 注釈 */
.NoteText {
  font-size: 12px;
  margin-top: 20px;
}
span.NoteText {
  margin-top: 0;
}
@media screen and (max-width: 860px) {
  .NoteText {
    margin-top: 10px;
  }
}
/* 右寄せテキスト */
.TextRight {
  text-align: right;
}

/*３カラム*/
.Parent3column {
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
}
.Parent3column li {
  list-style: none;
  width: calc(98% / 3);
  margin-right: 1%;
}
.Parent3column li:nth-of-type(3n) {
  margin-right: 0;
}

/* interviewList */
.InterviewList {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0 0 144px 0;
}
.InterviewItem {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.InterviewItemThumbnail {
  width: 30%;
  aspect-ratio: 290/387;
  height: auto;
  object-fit: cover;
}
.InterviewItemText {
  width: calc(70% - 55px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.InterviewItemName {
  font-size: 18px;
  font-weight: 400;
  width: 100%;
}
.InterviewItemAttribute {
  font-size: 11px;
  display: block;
}
.InterviewItemComment {
  font-size: 15px;
  width: 100%;
}
.InterviewItemName::after {
  margin: 16px 0;
  display: block;
  content: "";
  width: 180px;
  height: 1px;
  background: var(--primary-color);
}
.InterviewItemLink {
  display: block;
  width: 200px;
  padding: 5px 0;
  line-height: 1em;
  margin: 37px 55px 0 0;
  text-align: center;
  border-radius: 70px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 13px;
  transition: 0.3s ease;
}
@media screen and (min-width: 861px) {
  .InterviewItemLink:hover {
    background: var(--primary-color);
    color: #fff;
  }
}
@media screen and (max-width: 860px) {
  .InterviewItem {
    flex-direction: column;
    gap: 24px;
  }
  .InterviewItemThumbnail {
    width: 100%;
  }
  .InterviewItemText {
    width: 100%;
  }
  .InterviewItemLink {
    margin: 30px auto 0 auto;
  }
}

/* faq */
.FaqList {
  list-style-type: none;
  padding: 0;
  margin: 0 0 100px 0;
}
.FaqItem {
  padding: 50px 32px;
  border-bottom: 1px solid rgba(119, 111, 94, 0.2);
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.FaqItem:first-child {
  padding-top: 0;
}
.FaqItem:last-child {
  border-bottom: none;
}
.Faq {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.FaqTitle {
  font-family: "indivisible" sans-serif;
  font-size: 31px;
  flex-shrink: 0;
  line-height: 1em;
  width: 1em;
  text-align: center;
}
.FaqContent {
  padding: 0.5em 0 0 0;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: 13px;
}
.FaqSectionTitle {
  font-size: 18px;
  border-bottom: 1px solid var(--primary-color);
  padding: 0 0 50px 0;
  margin: 100px 0 50px 0;
  font-weight: normal;
}
@media screen and (max-width: 860px) {
  .FaqItem {
    padding: 50px 0;
  }
  .Faq {
    gap: 8px;
  }
}

/* conversion Area */
.ConversionCaption {
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 28px 0;
}
.ConversionLink {
  width: 100%;
  max-width: 360px;
  text-align: center;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 18px;
  border-radius: 99px;
  display: block;
  text-align: center;
  padding: 20px 0;
  transition: 0.3s ease;
}

.ConversionButton {
  width: 100%;
  max-width: 530px;
  margin: 0 auto;
  border-radius: 99px;
  display: block;
  text-align: center;
  padding: 26px 0;
  transition: 0.3s ease;
  background: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.ConversionButtonLabel {
  display: inline-block;
  background: #fff;
  color: var(--primary-color);
  border-radius: 99px;
  padding: 10px 3px;
  line-height: 1em;
  font-size: 13px;
}
@media screen and (min-width: 861px) {
  .ConversionLink:hover {
    background: var(--primary-color);
    color: #fff;
  }
}

@media screen and (max-width: 860px) {
  .ConversionLink {
    margin: 0 auto;
  }
  .ConversionButton {
    width: 90%;
    font-size: 18px;
    line-height: 1.5em;
  }
}

/* page specific -- TOP */
.TopMainVisual {
  position: relative;
  width: 100%;
  margin: 0 0 273px 0;
}
.TopMainVisual:after {
  content: "";
  background: url("../../top/img/mainvisual_grad.png") left / cover no-repeat;
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.TopMainVisualImage {
  width: 100%;
  height: auto;
  min-height: 546px;
  object-fit: cover;
}
.TopMainVisualText {
  position: absolute;
  left: 5%;
  bottom: 13%;
  z-index: 10;
  width: 25%;
  min-width: 300px;
}
.TopBeforeAfterWrapper {
  width: 42%;
  position: relative;
  padding-top: 80%;
}
.TopBeforeAfterCopy {
  margin: 0 0 16px 0;
  font-size: 18px;
  text-align: right;
  right: 0;
  line-height: 1.6;
  position: absolute;
  bottom: 105px;
}

@media screen and (max-width: 1160px) {
  .TopBeforeAfterCopy {
    bottom: 85px;
  }
}

@media screen and (max-width: 1120px) {
  .TopBeforeAfterCopy {
    bottom: 55px;
  }
}

@media screen and (max-width: 860px) {
  .TopMainVisual {
    margin: 0 0 140px 0;
  }
  .TopMainVisual:after {
    background: #776f5e;
    width: 100%;
    opacity: 0.3;
  }
  .TopMainVisualImage {
    min-height: 300px;
    max-height: 600px;
    height: 140vw;
  }
  .TopMainVisualText {
    left: 3%;
    bottom: 6%;
    width: 65%;
    max-width: 300px;
    min-width: 200px;
  }
  .TopBeforeAfterWrapper {
    margin: 0 auto;
    width: 90%;
    padding-top: 170%;
  }
}

.TopShootingMenu {
  margin: 102px auto 130px auto;
  max-width: 700px;
}
.TopShootingMenuList {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  list-style-type: none;
  padding: 0;
}
.TopShootingMenuItem {
  width: 172px;
  margin: 0 92px 50px 0;
  text-align: center;
}
.TopShootingMenuItem:nth-of-type(3n) {
  margin-right: 0;
}
.TopShootingMenuItem p {
  line-height: 1.2;
  margin-top: 10px;
}

@media screen and (max-width: 860px) {
  .TopShootingMenu {
    padding: 0 30px;
    margin: 50px auto 130px auto;
  }
  .TopShootingMenuItem {
    width: 49%;
  }
  .TopShootingMenuItem {
    margin: 0 2% 30px 0;
  }
  .TopShootingMenuItem:nth-of-type(3n) {
    margin-right: 2%;
  }
  .TopShootingMenuItem:nth-of-type(2n) {
    margin-right: 0;
  }

  .TopShootingMenuItem img {
    width: 80%;
    height: auto;
    margin: auto;
  }
  .TopFlow .LinkButton,
  .TopGallery .LinkButton {
    width: 90%;
  }
}
.TopPhotoGallery {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  justify-content: space-between;
}
.TopPhotoGalleryItem {
  display: block;
  width: 28%;
  color: var(--primary-color);
}
.TopPhotoGalleryItem img {
  width: 100%;
  aspect-ratio: 290/387;
  height: auto;
  object-fit: cover;
}
.TopPhotoGalleryItemName {
  font-size: 13px;
  margin: 0;
}
.TopPhotoGalleryItemTitle {
  font-size: 11px;
  line-height: 1.25em;
}
@media screen and (max-width: 860px) {
  .TopPhotoGalleryItem {
    width: 100%;
  }
  .TopPhotoGalleryItemName {
    font-size: 15px;
  }
  .TopPhotoGalleryItemTitle {
    font-size: 13px;
  }
}

.TopVoiceList {
  display: flex;
  flex-wrap: wrap;
  gap: 55px 0;
  justify-content: space-between;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.TopVoiceListItem {
  border: 1px solid var(--primary-color);
  border-radius: 22px;
  padding: 21px;
  width: 29%;
}
@media (860px <= width < 1160px) {
  .TopVoiceListItem {
    width: 47%;
  }
}
.TopVoiceItemTitle {
  display: flex;
  gap: 11px;
  align-items: center;
}
.TopVoiceItemName {
  font-weight: 500;
  font-size: 15px;
}
.TopVoiceItemAge {
  font-size: 12px;
}
.TopVoiceItemContent {
  margin: 15px 0 0 0;
  font-size: 12px;
}
@media screen and (max-width: 860px) {
  .TopVoiceList {
    gap: 30px;
  }
  .TopVoiceListItem {
    width: 100%;
  }
}

.TopAccess {
  margin: 50px 0 0 0;
}
.TopAccessMap {
  width: calc(50% - 22px);
}
.TopAccessMap iframe {
  height: 100%;
}
.TopAccessList {
  margin: 37px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 46px 22px;
}
.TopAccessItem {
  width: calc(50% - 22px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 0 0 70px;
}
.TopAccessItemAddress {
  margin: -12px 0 0 0;
  font-size: 15px;
  font-weight: 500;
}
.TopAccessItemGuide {
  font-size: 12px;
  font-weight: 500;
}
.TopAccessItemInfo {
  width: 100%;
  display: flex;
  font-size: 13px;
}
.TopAccessItemInfoTitle {
  width: 20%;
  font-weight: 500;
  line-height: 1.75em;
}
.TopAccessItemInfoContent {
  width: 80%;
  line-height: 1.75em;
}

.TopAccessItemInfoContent ul {
  padding: 0 0 0 15px;
}

.TopAccessItemLink {
  font-family: "indivisible" sans-serif;
  display: block;
  padding: 8px 18px;
  width: fit-content;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 99px;
  transition: 0.3s ease;
  line-height: 1em;
}
@media screen and (min-width: 861px) {
  .TopAccessItemLink:hover {
    background: var(--primary-color);
    color: #fff;
  }
}
@media screen and (max-width: 860px) {
  .TopAccessImage {
    height: auto;
  }
  .TopAccessList {
    flex-direction: column;
  }
  .TopAccessItem {
    width: 100%;
    padding: 0;
  }
  .TopAccessMap {
    width: 100%;
  }
  .TopAccessMap iframe {
    height: 300px;
  }
  .TopAccessItemAddress {
    margin: 10px 0 0 0;
  }
  .TopAccessItemInfoTitle {
    width: 5em;
  }
  .TopAccessItemInfoContent {
    width: calc(100% - 6em);
  }
}

/* Concept */
.ConceptDataUser {
  text-align: center;
}
.ConceptDataUserTitle {
  font-size: 26px;
  margin: 0 0 26px 0;
  font-weight: 500;
  line-height: 1.75em;
}
.ConceptDataUserText {
  font-size: 15px;
}
.ConceptDataUserGraphWrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.ConceptDataUserGraphItemAge {
  width: 40%;
}
.ConceptDataUserGraphItemGender {
  width: 55%;
}
.CanvasWrapper {
  position: relative;
  width: 100%;
}
.CanvasPie {
  padding: 0 5% 0 0;
}
.ConceptAge {
  font-size: 14px;
  text-align: center;
  position: absolute;
  line-height: 1.25em;
}
.Legend20 {
  height: 2.5em;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -2.5em;
}
.Legend30 {
  left: 3%;
  bottom: 10%;
}
.Legend35 {
  top: 6%;
  left: 13%;
}
.Legend40 {
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
}
.CanvasLegend {
  position: absolute;
  right: 0;
  top: 10%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.CanvasLegendWomen,
.CanvasLegendMen {
  line-height: 1em;
  display: flex;
  gap: 8px;
  align-items: center;
}
.CanvasLegendWomen::before {
  display: block;
  content: "";
  width: 66px;
  height: 14px;
  background: #f0978a;
}
.CanvasLegendMen::before {
  display: block;
  content: "";
  width: 66px;
  height: 14px;
  background: #84b8d7;
}
.ConceptDataGraphTextWrapper {
  margin: 0 15% 0 0;
}
.ConceptDataUserGraphText {
  font-size: 18px;
  text-align: center;
  line-height: 1.75em;
  margin: 34px 0 0 0;
}
.ConceptDataUserGraphCaption {
  font-size: 12px;
}
.ConceptDataArea {
  margin: 200px 0 0 0;
  display: flex;
  justify-content: space-between;
}
.ConceptDataAreaLead {
  font-size: 18px;
  margin: 0 0 18px 0;
}
.ConceptDataAreaText {
  width: 45%;
}
.ConceptDataAreaMap {
  width: 48%;
}

@media screen and (max-width: 860px) {
  .ConceptDataUserText {
    text-align: left;
  }
  .ConceptDataUserGraphWrapper {
    flex-direction: column;
    gap: 50px;
  }
  .ConceptDataUserGraphItemAge {
    width: 100%;
  }
  .ConceptDataGraphTextWrapper {
    margin: 0;
  }
  .ConceptDataUserGraphItemGender {
    width: 100%;
  }
  .ConceptDataArea {
    margin: 90px 0 0 0;
    flex-direction: column;
    gap: 50px;
  }
  .ConceptDataAreaText {
    width: 100%;
  }
  .ConceptDataAreaMap {
    width: 100%;
  }
}

/* 撮影の流れ・撮影ブラン・ファッションコンサルのコンバージョンエリア */
.ConversionArea {
  display: flex;
  max-width: 960px;
  margin: 0px auto 150px;
  justify-content: space-between;
}

.ConversionArea a {
  display: block;
  padding: 2px 10px;
  border: 1px solid;
  width: 30%;
  text-align: center;
  border-radius: 100px;
}

.ConversionArea p {
  display: block;
  padding: 2px 10px;
  border: 1px solid;
  width: 30%;
  text-align: center;
  border-radius: 100px;
  opacity: 0.5;
}

@media screen and (max-width: 860px) {
  .ConversionArea {
    width: 90%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .ConversionArea a,
  .ConversionArea p {
    width: 80%;
  }
}

/* 撮影の流れ */
.CommonTitle {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.75em;
}
@media screen and (max-width: 860px) {
  .CommonTitle {
    font-size: 18px;
  }
  .Flow section.TwoColumn-R,
  .Menu section.TwoColumn-R {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 50px;
  }
}
.Flow section.BasicContent .Txt:before {
  display: none;
}
.Flow .BasicContent {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(119, 111, 94, 0.2);
}
.Flow .BasicContent:last-child {
  border-bottom: none;
}
.FlowLine {
  margin: 0 0 50px;
}
.FlowPlanList {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
}
.FlowPlanItem {
  display: flex;
  gap: 22px;
  align-items: center;
}
.FlowPlanImageItem {
  width: 75px;
}
.FlowPlanImage {
  display: flex;
}
.FlowPlanTextTitle {
  font-size: 15px;
  font-weight: 500;
}
.MenuNote {
  color: #ff5050;
  font-weight: bold;
}
.MenuImageList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
  width: 50%;
}
.MenuImageItem {
  width: 55%;
  border: 5px solid #fff;
  height: auto;
  object-fit: cover;
}
.MenuImageItem:nth-child(2n + 1) {
  transform: translate(0, 0);
  z-index: 1;
}
.MenuImageItem:nth-child(2n + 2) {
  transform: translate(0, 15%);
  margin: 0 0 0 -10%;
  z-index: 0;
}
.MenuPlanList {
  margin: 0 0 25px 0;
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 14px;
}
.MenuPlanItem {
  display: flex;
  align-items: center;
}
.MenuPlanImage {
  width: 75px;
  margin: 0px 5px 0 0px;
}
.MenuPlanTextTitle {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.5em;
}
.MenuPlanTextPrice {
  font-size: 18px;
  line-height: 1.5em;
}
.MenuPlanTextPriceUnit {
  font-size: 13px;
}
.MenuPlanTextCaption {
  line-height: 1.5em;
}
.MenuPlanTextCaptionTime {
  font-weight: bold;
  line-height: 1.5em;
}
.Menu .TxtContent {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 860px) {
  .MenuPlanImage {
    width: 50px;
  }
  .MenuImageList {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

/* menu/fashion consul */
.ConsulButtonArea {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ConsulButton {
  display: block;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100px;
  line-height: 1.5em;
  width: 100%;
  text-align: center;
  padding: 8px 0;
  transition: 0.3s ease;
}
@media screen and (min-width: 861px) {
  .ConsulButton:hover {
    background: var(--primary-color);
    color: #fff;
  }
}
.ConsulContent {
  display: flex;
  align-items: flex-start;
  flex-direction: row !important;
}
.ConsulOutLineImage {
  width: 50%;
}
.ConsulOutLineImage.FadeItem {
  padding-top: 32%;
}
.ConsulOutLine {
  width: 50%;
  padding: 0 0 0 90px;
}
.ConsulFlow {
  margin: 0 0 100px 0;
}
.ConsulFlowTitle {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 50px 0;
}
.ConsulFlowList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  list-style-type: none;
}
.ConsulFlowItem {
  background: rgba(119, 111, 94, 0.05);
  border-radius: 30px;
  padding: 38px 20px;
  text-align: center;
  position: relative;
}
.ConsulFlowItem:not(:last-child)::after {
  content: "";
  display: block;
  width: 22px;
  height: 10px;
  background: url("../../fc/img/icon_triangle.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.ConsulFlowItemTitle {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 30px 0;
}
.ConsulFlowStep {
  font-size: 15px;
  display: block;
  text-align: center;
  font-weight: normal;
}
.ConsulFlowItemTitleCaption {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}
.ConsulDisscussList {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
}
.ConsulDisscussItem {
  background: var(--primary-color);
  color: #fff;
  font-size: 18px;
  padding: 4px 12px 6px;
  line-height: 1.2em;
  border-radius: 8px;
  font-weight: 400;
}

@media screen and (max-width: 860px) {
  .ConsulContent {
    flex-direction: column !important;
    gap: 32px;
  }
  .ConsulOutLineImage {
    width: 100%;
  }
  .ConsulOutLineImage.FadeItem {
    padding-top: 62%;
  }
  .ConsulOutLine {
    width: 100%;
    padding: 0;
  }
}

/* interview detail */
.InterviewDetailOutline {
  display: flex;
  align-items: flex-start;
}
.InterviewDetailMainImage {
  width: 43%;
}
.InterviewDetailAfter,
.TopAfter {
  position: relative;
  z-index: 0;
}
.InterviewDetail img,
.TopAfter img {
  width: 100%;
  height: auto;
}
.InterviewDetailAfter::after,
.TopAfter::after {
  content: "AFTER";
  display: inline-block;
  font-size: 26px;
  padding: 2px 8px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: #fff;
  position: absolute;
  transform: rotate(90deg);
  right: -48px;
  top: 0;
  line-height: 1.5em;
}
.InterviewDetailBefore,
.TopBefore {
  position: relative;
  width: 45%;
  margin: -40% 0 0 0;
  z-index: 1;
  border: 5px solid #fff;
  transform: translateX(-30px);
}
.InterviewDetailBefore img,
.TopBefore img {
  width: 100%;
  height: auto;
}
.InterviewDetailBefore::after,
.TopBefore::after {
  content: "BEFORE";
  display: inline-block;
  font-size: 14px;
  padding: 2px 8px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: #fff;
  position: absolute;
  transform: rotate(90deg);
  left: -32px;
  bottom: -5px;
  line-height: 1.5em;
}

.InterviewDetailInfo {
  width: 57%;
  padding: 0 0 0 118px;
}
.InterviewDetailData {
  padding: 0 0 46px 0;
  border-bottom: 1px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.InterviewDetailCustomerTitle {
  font-weight: normal;
  font-size: 11px;
}
.InterviewDetailCustomerName {
  font-size: 15px;
  font-weight: bold;
}
.InterviewDetailCustomerCareer,
.InterviewDetailCustomerPlan {
  display: flex;
  font-size: 13px;
  gap: 4px;
  line-height: 1.5em;
}
.InterviewDetailMenuTitle {
  font-weight: normal;
  font-size: 11px;
}
.InterviewDetailStaff {
  padding: 46px 0;
  border-bottom: 1px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.InterviewDetailStaffTitle {
  font-size: 18px;
  font-weight: 500;
}
.InterviewDetailStaffTitleEnglish {
  display: block;
  font-size: 11px;
  font-weight: normal;
  margin: 0 0 4px 0;
}
.InterviewDetailStaffData {
  display: flex;
  align-items: center;
  gap: 20px;
}
.InterviewDetailStaffData img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
}
.InterviewDetailStaffName {
  font-size: 15px;
  font-weight: 500;
}
.InterviewDetailContent {
  margin: 100px 0;
  display: flex;
  align-items: center;
}
.InterviewDetailContentText {
  width: 57%;
  padding: 0 113px 0 0;
}
.InterviewDetailContent.NoImage .InterviewDetailContentText {
  width: 100%;
  padding: 0;
}
.InterviewDetailContentImage {
  width: 43%;
}
.InterviewDetailContentTitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75em;
  margin: 0 0 24px 0;
  text-wrap: auto;
}
.InterviewDetailContentMainText {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

@media screen and (max-width: 860px) {
  .InterviewDetailOutline {
    flex-direction: column;
    gap: 50px;
  }
  .InterviewDetailMainImage {
    width: 90%;
    margin: 0 auto;
  }
  .InterviewDetailInfo {
    width: 100%;
    padding: 0;
  }
  .InterviewDetailContent {
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
  }
  .InterviewDetailContentText {
    width: 100%;
    padding: 0;
  }
  .InterviewDetailContentImage {
    width: 100%;
  }
}

/* staff */
.StaffList {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 0;
  list-style-type: none;
}
.StaffItem {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.StaffImage {
  position: relative;
  width: 26%;
}
.StaffPost {
  line-height: 1.5em;
  font-size: 16px;
  padding: 4px 8px;
  border: 1px solid var(--primary-color);
  position: absolute;
  top: -14px;
  left: -14px;
  z-index: 1;
  background: #fff;
}
.StaffImage img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.StaffText {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: calc(74% - 24px);
}
.StaffName {
  font-weight: 500;
  font-size: 32px;
}
.StaffData {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.StaffDataItem {
  display: flex;
}
.StaffDataTitle {
  width: 190px;
  flex-shrink: 0;
  font-weight: 500;
  vertical-align: middle;
}
.StaffDataTitle a {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 0;
}
.StaffComment {
  padding: 28px 32px;
  background: rgba(119, 111, 94, 0.05);
  border-radius: 30px;
}
@media screen and (max-width: 860px) {
  .StaffItem {
    flex-direction: column;
  }
  .StaffImage {
    width: 100%;
    max-width: 255px;
    margin: 0 auto;
  }
  .StaffText {
    width: 100%;
  }
  .StaffDataItem {
    flex-direction: column;
    gap: 0;
  }
  .StaffDataTitle {
    width: 100%;
  }
}
.GalleryFilter {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.GalleryFilterTitle {
  font-size: 24px;
  font-weight: 500;
  display: flex;
  gap: 22px;
  align-items: center;
}
.GalleryFilterGender,
.GalleryFilterTag {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.GalleryFilterItem {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 32px;
  font-size: 18px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.GalleryFilterItem input[type="radio"] {
  display: none;
}
.GalleryFilterItem input[type="radio"] + span::before {
  line-height: 20px;
  vertical-align: middle;
  content: url(../../gallery/img/icon_unchecked.svg);
  margin: 0 5px 0 0;
}
.GalleryFilterItem input[type="radio"]:checked + span::before {
  line-height: 20px;
  vertical-align: middle;
  content: url(../../gallery/img/icon_checked.svg);
  margin: 0 5px 0 0;
}
.GalleryList {
  margin: 97px 0 0 0;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.GalleryItem {
  width: calc(33% - 13px);
}
.GalleryItem img {
  width: 100%;
  aspect-ratio: 286/425;
  object-fit: cover;
}
.GalleryDetailList {
  margin: 97px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.GalleryDetailItem {
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
}
.GalleryDetailItem img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 860px) {
  .GalleryList {
    margin: 50px 0 0 0;
  }
  .GalleryItem {
    width: calc(50% - 10px);
  }
  .GalleryFilterItem {
    font-size: 15px;
    line-height: 1em;
    vertical-align: middle;
  }
  .GalleryDetailItem {
    width: 100%;
  }
}
.GalleryListNoResult {
  padding: 60px 0;
  text-align: center;
  font-size: 15px;
  display: none;
}
.GalleryDetail .LinkButton {
  margin: 140px auto 0 auto;
}
/* popup */
.PopupBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 99;
}
.PopupFrame {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 100;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
  max-width: 520px;
  width: 80%;
  height: 90svh;
  max-height: 697px;
  padding: 32px 48px;
}
.PopupClose {
  position: absolute;
  right: 5px;
  top: 10px;
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
}
.PopupContent {
  height: 100%;
  width: 100%;
}
.PopupContent img {
  max-width: 100%;
  max-height: calc(100% - 60px);
  aspect-ratio: 438/584;
  object-fit: cover;
  margin: 0 auto 16px auto;
}
.PopupContentDetail {
  font-size: 15px;
}

/* terms-of-service */
.TermsOfService .Txt p {
  margin-bottom: 30px;
}
@media screen and (max-width: 860px) {
  .TermsOfService .Txt p {
    margin-bottom: 15px;
  }
}
