@charset "UTF-8";

:root {
  --base-color-light: #F4F4F4;
  --primary-color-light: #FFF;
  --secondary-color-light: #555;
  --font-color-light: #460d43;
  --base-color-dark: #460d43;
  --primary-color-dark: #6d2168;
  --secondary-color-dark: #60295c;
  --font-color-dark: #fff;
}

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

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* input textarea reset
==============================　*/
input,
textarea,
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  outline: none;
  outline: 0;
}

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

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* ===================================
Foundation
=================================== */
* {
  box-sizing: border-box;
  line-break: strict;
}

body {
  font-family: "Libre Caslon Text", serif;
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
}

/* テキスト
==============================　*/
a {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

b {
  font-weight: bold;
}

sup {
  vertical-align: top;
}

/* メディア
==============================　*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}

video {
  display: block;
  width: 100%;
  height: auto;
  outline: none;
}

iframe {
  max-width: 100%;
}

/* ===================================
layout
=================================== */
body {
  color: var(--font-color);
  background: var(--base-color);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

/* color mode */
.is-theme-dark {
  color: var(--font-color-dark);
  background: var(--base-color-dark);
}

.is-theme-dark .only-light {
  display: none;
}

.is-theme-light {
  color: var(--font-color-light);
  background: var(--base-color-light);
}

.is-theme-light .only-dark {
  display: none;
}

.is-theme-light .only-light {
  display: block;
}

.inner {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}

.js-aco_cont {
  display: none;
}

.contentwrap>.swiper {
  overflow: clip !important;
}

/* ===================================
header
=================================== */
/* switch */
.c-switch_btn {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .c-switch_btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
  }
}

.c-switch_btn .only-dark circle {
  width: 12px;
  height: 12px;
}

.c-switch_btn svg.only-light {
  margin-right: 0;
  margin-left: auto;
}

.c-switch_btn .only-light circle {
  width: 12px;
  height: 12px;
}

.c-switch_btn .c-btn_inner {
  display: flex;
  width: 32px;
  padding: 4px;
  align-items: center;
  border-radius: 20px;
  background: var(--primary-color-light);
  gap: 10px;
  height: 20px;
  border: none;
  position: relative;
  cursor: alias;
}

.c-switch_btn .c-btn_inner:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--base-color-dark);
  transition: 0.3s;
  position: absolute;
  top: 4px;
  left: 4px;
}

.l-head {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* mix-blend-mode: exclusion; */
}

.l-head .l-head_inner {
  display: flex;
  padding: 40px;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .l-head .l-head_inner {
    padding: 24px;
  }
}

@media screen and (max-width: 365px) {
  .l-head .l-head_inner {
    padding: 24px 10px;
  }
}

.l-head .c-logo {
  width: 200px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}

@media screen and (max-width: 767px) {
  .l-head .c-logo {
    width: 140px;
    left: 49%;
    bottom: 19px;
  }
}

@media screen and (max-width: 365px) {
  .l-head .c-logo {
    width: 120px;
  }
}

.l-head .c-menu {
  border-radius: 27px;
  border: 1px solid var(--font-color-dark);
  display: flex;
  padding: 4px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--font-color-dark);
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 90px;
  cursor: pointer;
}

.l-head .c-menu:before {
  content: "MENU";
}

@media screen and (max-width: 767px) {
  .l-head .c-menu {
    gap: 0;
    padding: 0 16px;
  }
}

body.js-menu_open {
  overflow: hidden;
}

body.js-menu_open .l-head .c-menu:before {
  content: "CLOSE";
}

.l-head__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 767px) {
  .l-head__left {
    gap: 4px;
  }
}

.l-head_menu {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  background: var(--base-color-dark);
  z-index: 999;
  overflow: auto;
}

.l-head_menu .contact-area {
  padding: 40px 20px 60px;
  background: var(--primary-color-light);
}

@media screen and (max-width: 767px) {
  .l-head_menu .contact-area {
    padding: 50px 20px;
  }
}

.l-head_menu .contact-area .contact-area__txt {
  font-size: 14px;
	margin-bottom: 10px;
}

.l-head_menu .contact-area .contact-area__txt:before {
  top: 4px;
}

.l-head_menu .contact-area .contact-area__mail {
  margin-top: 16px;
}

.head-menu_list {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding: 145px 40px 40px;
  min-height: calc(100vh - 243px);
}

@media screen and (max-width: 1024px) {
  .head-menu_list {
    display: block;
    min-height: auto;
  }
}

.head-menu_list .head-menu__movie {
  width: 480px;
}

@media screen and (max-width: 1024px) {
  .head-menu_list .head-menu__movie {
    width: 100%;
  }
}

.head-menu_list .head-pagelink__area {
  width: calc(100% - 500px);
}

@media screen and (max-width: 1024px) {
  .head-menu_list .head-pagelink__area {
    width: 100%;
    margin-top: 56px;
  }
}

.head-menu_list .pagelink-list {
  flex-wrap: wrap;
  gap: 24px;
  font-size: 48px;
}

@media screen and (max-width: 767px) {
  .head-menu_list .pagelink-list {
    font-size: 32px;
  }
}

.head-menu_list .pagelink-list>li {
  width: 100%;
}

.head-menu_list .pagelink-list .p-after {
  font-size: 44px;
}

.head-menu_list .pagelink-list .pagelink-list__under .p-after {
  font-size: 18px;
}

.head-menu_list .pagelink-list .has-inlist {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1260px) {
  .head-menu_list .pagelink-list .has-inlist {
    display: block;
  }
}

.head-menu_list .pagelink-list .pagelink-list__under {
  margin-top: 0;
  display: flex;
  font-size: 20px;
  flex-direction: unset;
  align-items: center;
  margin-left: 40px;
}

@media screen and (max-width: 1260px) {
  .head-menu_list .pagelink-list .pagelink-list__under {
    margin: 0 0 0;
    flex-wrap: wrap;
  }
}

.head-menu_list .pagelink-list .pagelink-list__under li+li {
  margin-left: 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .head-menu_list .pagelink-list .pagelink-list__under li+li {
    margin-top: 0;
  }
}

.head-menu_list .pagelink-list .pagelink-list__under li+li:before {
  content: "";
  width: 1px;
  height: 16px;
  background: #AD7EAB;
  position: absolute;
  top: 6px;
  left: -18px;
  transform: rotate(45deg);
}

/* mode set */
body.is-theme-light .l-head__left {
  color: var(--font-color-dark);
}

body.is-theme-light .c-switch_btn .c-btn_inner:before {
  left: 16px;
}

body.is-theme-light .l-head_menu {
  background: var(--base-color-light);
}

body.is-theme-light .l-head_menu .contact-area {
  background: var(--font-color-light);
}

body.is-theme-light .contact-area .contact-area__txt:before {
  background: var(--primary-color-light);
}

/* ===================================
footer
=================================== */
.contact-area {
  background: var(--base-color-light);
  display: flex;
  padding: 120px 20px 110px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .contact-area {
    padding: 96px 20px 78px;
  }
}

.contact-area .contact-area__inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.contact-area .contact-area__txt {
  color: var(--font-color-light);
  font-family: "Libre Caslon Text", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 12px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact-area .contact-area__inner {
    max-width: 74vw;
  }

  .contact-area .contact-area__txt {
    font-size: 14px;
  }
}

.contact-area .contact-area__txt:before {
  content: "";
  background: var(--font-color-light);
  width: 7px;
  height: 8px;
  border-radius: 8px;
  position: absolute;
  top: 6px;
  left: 0;
}

.contact-area .contact-area__mail {
  color: var(--base-color-dark);
  position: relative;
  width: 100%;
  height: 110px;
  display: block;
  margin-top: 40px;
}

@media screen and (max-width: 1280px) {
  .contact-area .contact-area__mail {
    height: 10vw;
    margin-top: 32px;
  }
}

.contact-area .contact-area__mail>span {
  position: absolute;
  top: 0;
  left: 0;
  word-wrap: normal;
  white-space: nowrap;
  line-height: 1;
}

.contact-area .contact-area__mail .p-add_before {
  font-family: "Libre Caslon Text", serif;
  font-size: 87px;
  font-weight: 400;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .contact-area .contact-area__mail .p-add_before {
    font-size: 6.3vw;
  }
}

.contact-area .contact-area__mail:hover .p-add_before {
  border-bottom: 1px solid #6d2168;
}

/* @media (hover: hover) {
  .contact-area .contact-area__mail .p-add_before {
    transition: 0.5s;
  }
  .contact-area .contact-area__mail:hover .p-add_before {
    border-bottom: 1px solid;
  }
} */


body.is-theme-light .footer-topArea {
  background: var(--base-color-dark);
}

body.is-theme-light .foot-pagelink-area {
  background: var(--primary-color-light);
}

body.is-theme-light .contact-area {
  background: var(--base-color-dark);
}

body.is-theme-light .contact-area__txt {
  color: var(--font-color-dark);
}

body.is-theme-light .contact-area__mail {
  color: var(--base-color-light);
}

.foot-pagelink-area {
  background: var(--base-color-dark);
  display: flex;
  padding: 80px 20px 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 110px;
}

@media screen and (max-width: 767px) {
  .foot-pagelink-area {
    padding: 24px 20px 24px;
  }
}

.foot-pagelink-area .pagelink-area {
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
}

.foot-pagelink-area .pagelink-area__logo {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  gap: 24px;
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .foot-pagelink-area .pagelink-area__logo {
    display: block;
    margin-top: 120px;
  }

  .foot-pagelink-area .pagelink-area__logo .c-logo {
    width: 220px;
  }
}

.foot-pagelink-area .pagelink-area__logo .c-text_area {
  font-family: "Libre Caslon Text", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .foot-pagelink-area .pagelink-area__logo .c-text_area {
    margin-top: 12px;
  }
}

.foot-pagelink-area .pagelink-area__logo .c-text_area a {
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 10px;
}

.pagelink-list {
  display: flex;
  gap: 60px;
  color: var(--font-color-dark);
  font-family: "Libre Caslon Text", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .pagelink-list {
    display: block;
    font-size: 28px;
  }

  .pagelink-list li+li {
    margin-top: 24px;
  }
}

.pagelink-list .pagelink-list__under {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 767px) {
  .pagelink-list .pagelink-list__under {
    margin-top: 10px;
    font-size: 16px;
    gap: 0;
  }

  .pagelink-list .pagelink-list__under li+li {
    margin-top: 12px;
  }
}

.pagelink-list .pagelink-list__under .p-after {
  font-size: 22px;
  font-weight: 400;
  white-space: nowrap;
}

.pagelink-list a {
  position: relative;
  cursor: pointer;
}

.pagelink-list a img {
  display: inline;
}

.pagelink-list a:hover .p-before {
  border-bottom: 1px solid #6D2168;
}

/* @media (hover: hover) {
  .pagelink-list a .p-before, .pagelink-list a .p-after {
    transition: 0.5s;
    border-bottom: 0px solid #6D2168;
  }
  .pagelink-list a:hover .p-after {
    opacity: 1;
  } 
} */
.pagelink-list .p-after {
  opacity: 0;
  font-family: "Libre Caslon Text", serif;
  font-size: 32px;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.4;
  border-bottom: 1px solid;
}

#home a[data-index="0"] {
  pointer-events: none;
  opacity: 0.5;
}

#about a[data-index="1"] {
  pointer-events: none;
  opacity: 0.5;
}

#services a[data-index="2"] {
  pointer-events: none;
  opacity: 0.5;
}

#artemislift a[data-index="3"] {
  pointer-events: none;
  opacity: 0.5;
}

#journal a[data-index="4"] {
  pointer-events: none;
  opacity: 0.5;
}
#algeness a[data-index="5"] {
  pointer-events: none;
  opacity: 0.5;
}

body.is-theme-light .pagelink-list {
  color: var(--font-color-light);
}

body.is-theme-light .pagelink-list a img.only-light {
  display: inline;
}

/* ===================================
hover link
=================================== */
.css-hover_link {
  position: relative;
  text-decoration: none !important;
  display: block;
  padding: 0 1px;
  cursor: pointer;
}

.css-hover_link::before,
.css-hover_link::after {
  content: "";
  position: absolute;
  background-color: #fff;
  height: 2px;
}

.css-hover_link::before {
  width: 0%;
  left: 0;
  bottom: 0;
  transition: width ease 0.4s;
}

.css-hover_link::after {
  width: 100%;
  left: 0;
  bottom: 0;
  transition: all ease 0.6s;
}

.css-hover_link:hover::before {
  width: 100%;
}

.css-hover_link:hover::after {
  left: 100%;
  width: 0%;
  transition: all ease 0.2s;
}

body.is-theme-light .css-hover_link::before,
body.is-theme-light .css-hover_link::after {
  background: #000;
}

/* ===================================
FV
=================================== */
.l-fv {
  position: relative;
}

.l-fv .l-fv__stickyWrap {
  width: 100%;

}

@media screen and (max-width: 1024px) {
  .l-fv .l-fv__stickyWrap {

  }
}

.l-fv .c-ttl {
  color: var(--font-color-dark);
  font-family: "Libre Caslon Text", serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 100;
  line-height: 1.5;
  /* 96px */
  letter-spacing: -0.039em;
  margin-top: 0px;
  position: sticky;
  top: 130px;
  z-index: 1;
}

@media screen and (max-width: 1100px) {
  .l-fv .c-ttl {
    text-align: left;
    font-size: 5.7vw;
  }
}

@media screen and (max-width: 767px) {
  .l-fv .c-ttl {
    text-align: left;
    font-size: 36px;
    margin-top: 0vw;
    line-height: 1.4;
  }
}

.l-fv .c-ttl .span01 {
  font-weight: 500;
	font-size: clamp(1.5rem, 3vw, 36px);

	display: block;
	line-height: 1.5;
}
.l-fv .c-ttl .span02 {
  letter-spacing: -0.028em;
	font-size: clamp(1.5rem, 3vw, 36px);
	display: block;
	line-height: 1.5;

}

.l-fv .c-ttl .main01 {
    font-weight: 600;
	color:#b78b34;
	font-size: clamp(2.4rem, 6vw, 72px);
	display: block;
	line-height: 1.5;

	
}

@media screen and (max-width: 767px) {
	
}

.is-theme-light .c-ttl {
  color: var(--font-color-light);
  background: var(--base-color-light);
}

.scrolling-movie {
  z-index: 2;
  position: relative;
  width: 90%;
	margin: auto;
  top: 0;
	margin-top: 200px;
}

@media screen and (max-width: 1024px) {
  .scrolling-movie {
   margin-top:80px;
	  width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .scrolling-movie__content {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
  }

  .scrolling-movie__content video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 80vw;
    transform: translate(-50%, -50%);
  }
	
	
	
}

.scrolling-movie__bg-cover-left,
.scrolling-movie__bg-cover-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0px;
  background: var(--base-color-dark);
  will-change: transform;
}

body.is-theme-light .scrolling-movie__bg-cover-left,
body.is-theme-light .scrolling-movie__bg-cover-right {
  background: var(--base-color-light);
}

.scrolling-movie__bg-cover-left {
  transform-origin: 0 0;
  right: auto;
  transition: left 0.5s ease;
}

.scrolling-movie__bg-cover-right {
  transform-origin: 100% 0;
  left: auto;
  transition: right 0.5s ease;
}

/* スクロール時の動作 */
.scrolling .scrolling-movie__bg-cover-left {
  left: -100px;
}

.scrolling .scrolling-movie__bg-cover-right {
  right: -100px;
}

/* ===================================
copy area
=================================== */
.l-copy_area {
  margin-top: 60vh;
  height: 500vh;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .l-copy_area {
    margin-top: 0;
  }
}

.l-copy_area .c-sticky-box {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.l-copy_area .l-flow_circle {
  position: absolute;
  top: calc(50% - 294px);
  left: calc(50% - 271px);
}

@media screen and (max-width: 767px) {
  .l-copy_area .l-flow_circle {
    width: 88vw;
    top: calc(50% - 47vw);
    left: calc(50% - 44vw);
  }
}

.l-copy_area .l-flow_area {
  position: absolute;
  display: flex;
  width: 430px;
  height: 430px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  top: calc(50% - 215px);
  left: calc(50% - 215px);
  border-radius: 50%;
  background: var(--primary-color-dark);
}

@media screen and (max-width: 767px) {
  .l-copy_area .l-flow_area {
    width: 74vw;
    height: 74vw;
    top: calc(50% - 37vw);
    left: calc(50% - 37vw);
  }
}

.l-copy_area .l-flow_area .c-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

.l-copy_area .l-flow_area .c-text.js-current {
  opacity: 1;
  pointer-events: all;
}

.l-copy_area .l-flow_area .c-text.p-04 {
  font-family: "Bellefair", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .l-copy_area .l-flow_area .c-text.p-04 {
    font-size: 24px;
  }
}

.l-copy_area .l-flow_area .c-text__text01 {
  --font-color-dark: #fff;
  font-family: "Libre Caslon Text", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  /* 56px */
  display: flex;
  align-items: center;
  gap: 4px;
}

@media screen and (max-width: 767px) {
  .l-copy_area .l-flow_area .c-text__text01 {
    font-size: 32px;
  }
}

.l-copy_area .l-flow_area .c-text__text01 span {
  color: #B18E27;
  font-family: "Libre Caslon Text", serif;
  font-size: 74px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  /* 74px */
  letter-spacing: -0.1em;
}

@media screen and (max-width: 767px) {
  .l-copy_area .l-flow_area .c-text__text01 span {
    font-size: 64px;
  }
}

.l-copy_area .c-text__text02 {
  color: var(--font-color-dark);
  text-align: center;
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  /* 25.2px */
  margin-top: 18px;
}

@media screen and (max-width: 767px) {
  .l-copy_area .c-text__text02 {
    width: 90%;
    margin-inline: auto;
  }

  .l-copy_area .c-text__text02 br {
    display: none;
  }
}

body.is-theme-light .l-flow_area {
  background: var(--primary-color-light);
}

body.is-theme-light .c-text__text01 {
  color: var(--font-color-light);
}

body.is-theme-light .c-text__text02 {
  color: var(--font-color-light);
}

/* ===================================
service top
=================================== */
.services_area_slide {
  padding-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .services_area_slide {
    padding-bottom: 200px;
  }
}

@media screen and (max-width: 767px) {
  .services_area_slide {
    padding-bottom: 60px;
  }
}

.services_area {
  height: 100vh;
}

@media screen and (max-width: 767px) {
  .services_area {
    height: 50vh;
  }
}

.services_area .services_area__ttl {
  position: sticky;
  top: 50%;
  transform: translate(0, -50%);
}

.services_area .services_area__ttl-txt {
  color: var(--secondary-color-dark);
  font-family: "Libre Caslon Text", serif;
  font-size: 169px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .services_area .services_area__ttl-txt {
    font-size: 18vw;
    text-align: left;
    width: 76vw;
    margin: 0 auto;
    display: block;
    line-height: 1;
  }
}

body.is-theme-light .services_area__ttl-txt {
  color: var(--primary-color-light);
}

/* ===================================
journal
=================================== */
.l-journal_area {
  padding-top: 160px;
  padding-bottom: 160px;
  background: var(--primary-color-dark);
  position: relative;
}

@media screen and (max-width: 767px) {
  .l-journal_area {
    padding: 80px 0;
  }
}

.l-journal_area_wrap {
  max-width: 1164px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .l-journal_area_wrap {
    display: block;
  }
}

.l-journal_area_wrap .is-theme-light .c-ttl {
  background: none;
}

.l-journal_area_wrap .l-ttl_wrap {
  width: 145px;
}

.l-journal_area_wrap .l-ttl_wrap .c-ttl {
  font-family: "Libre Caslon Text", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  background: none;
}

@media screen and (max-width: 767px) {
  .l-journal_area_wrap .l-ttl_wrap {
    width: 100%;
  }

  .l-journal_area_wrap .l-ttl_wrap .services_contents__btn {
    display: none;
  }
}

.l-journal_area_wrap .l-post_wrap {
  max-width: 800px;
  margin-left: 20px;
  width: calc(100% - 165px);
}

@media screen and (max-width: 767px) {
  .l-journal_area_wrap .l-post_wrap {
    max-width: none;
    width: 100%;
    margin: 60px 0 0;
  }
}

.l-journal_area_wrap .l-post_wrap .services_contents__btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-journal_area_wrap .l-post_wrap .services_contents__btn {
    display: block;
  }
}

body.is-theme-light .l-journal_area {
  background: var(--primary-color-light);
}

/* ===================================
common
=================================== */
.l-ttl_area {
  padding: 25vh 20px 0;
  height: 50vh;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: -1;
  max-width: 1240px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .l-ttl_area {
    padding: 18vh 20px 0;
	   height: 40vh;
  }
}

.l-ttl_area .c-page_ttl {
  font-family: "Libre Caslon Text", serif;
  font-size: 80px;
  font-weight: 600;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l-ttl_area .c-page_ttl {
    font-size: 42px;
  }
}

.l-ttl_area .c-page_ttl:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #6D2168;
  position: absolute;
  top: 50%;
  left: 0;
}

.l-ttl_area .c-page_ttl span {
  background: var(--base-color-dark);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  position: relative;
  padding-right: 40px;
}

.l-page_area {
  background: var(--primary-color-dark);
  box-shadow: 2px -2px 20px 0px #460d43;
  padding: 120px 0 160px;
}

@media screen and (max-width: 767px) {
  .l-page_area {
    padding: 80px 0 120px;
  }
}

.c-text a {
  text-decoration: underline;
}

.c-text .p-bold {
  font-weight: bold;
}

body.is-theme-light #about,
body.is-theme-light #services,
body.is-theme-light #artemislift,
body.is-theme-light #journal,
body.is-theme-light #algeness	{
  background: var(--primary-color-light);
}

body.is-theme-light .l-page_area {
  background: var(--base-color-light);
  box-shadow: 2px -2px 20px 0px rgba(70, 13, 67, 0.05);
}

body.is-theme-light .l-ttl_area .c-page_ttl:before {
  background: #DDD;
}

body.is-theme-light .l-ttl_area .c-page_ttl span {
  background: var(--primary-color-light);
}

/* ===================================
about
=================================== */
.c-about_sec>.c-inner {
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .c-about_sec>.c-inner {
    display: block;
  }
}

.c-about_sec .c-sec_ttl {
  font-family: "Libre Caslon Text", serif;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding-left: 10px;
}

.c-about_sec .c-sec_ttl::before {
  content: "";
  width: 7px;
  height: 8px;
  background: #B18E27;
  border-radius: 10px;
  position: absolute;
  top: 12px;
  left: -2px;
}

.c-about_sec .c-cont_wrap {
  max-width: 870px;
  width: calc(100% - 200px);
}

@media screen and (max-width: 767px) {
  .c-about_sec .c-cont_wrap {
    width: 100%;
  }
}

.c-about_sec .c-comment {
  font-family: "Libre Caslon Text", serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.28;
  margin-top: 6px;
}

@media screen and (max-width: 767px) {
  .c-about_sec .c-comment {
    font-size: 48px;
    margin-top: 60px;
  }
}

.c-about_sec .c-comment .c-thin {
  font-weight: 100;
  letter-spacing: 0;
  display: block;
}

.c-about_sec .c-comment+.c-text {
  text-align: justify;
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 22px;
  max-width: 590px;
}

@media screen and (max-width: 1024px) {
  .c-about_sec .c-comment+.c-text {
    text-align: left;
  }
}

.c-about_sec .c-circle_list {
  display: flex;
  margin-top: 80px;
  gap: 14px;
}

@media screen and (max-width: 1200px) {
  .c-about_sec .c-circle_list {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 574px;
  }
}

@media screen and (max-width: 767px) {
  .c-about_sec .c-circle_list {
    max-width: none;
    margin-top: 56px;
    gap: 16px;
  }
}

.c-about_sec .c-circle_list li {
  width: calc((100% - 28px) / 3);
  background: #460d43;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
}

@media screen and (max-width: 1200px) {
  .c-about_sec .c-circle_list li {
    width: calc((100% - 14px) / 2);
    max-width: 280px;
  }
}

@media screen and (max-width: 767px) {
  .c-about_sec .c-circle_list li {
    width: 100%;
    min-height: 160px;
    height: auto;
    border-radius: 460px;
    max-width: none;
    padding: 10px 32px;
  }
}

.c-about_sec .c-circle_list .c-text__text01 {
  --font-color-dark: #fff;
  font-family: "Libre Caslon Text", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  /* 56px */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

@media screen and (max-width: 767px) {
  .c-about_sec .c-circle_list .c-text__text01 {
    font-size: 20px;
  }
}

.c-about_sec .c-circle_list .c-text__text01 span {
  color: #B18E27;
  font-family: "Libre Caslon Text", serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  /* 74px */
  letter-spacing: -0.1em;
}

@media screen and (max-width: 767px) {
  .c-about_sec .c-circle_list .c-text__text01 span {
    font-size: 48px;
  }
}

.c-about_sec .c-circle_list .c-text__text02 {
  color: var(--font-color-dark);
  text-align: center;
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  /* 25.2px */
  margin-top: 18px;
  min-height: 75px;
}

@media screen and (max-width: 767px) {
  .c-about_sec .c-circle_list .c-text__text02 {
    min-height: unset;
    margin-top: 10px;
  }

  .c-about_sec .c-circle_list .c-text__text02 br {
    display: none;
  }
}

.c-about_sec.p-message {
  margin-top: 160px;
  padding: 120px 0 160px;
  background: var(--font-color-light);
}

@media screen and (max-width: 767px) {
  .c-about_sec.p-message {
    margin-top: 120px;
    padding: 80px 0 120px;
  }
}

.l-message_wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media screen and (max-width: 767px) {
  .l-message_wrap {
    margin-top: 60px;
  }
}

.l-message_wrap .c-img {
  max-width: 300px;
}

.l-message_wrap .c-img figcaption {
  text-align: center;
  margin-top: 12px;
  font-family: "Libre Caslon Text", serif;
}

.l-message_wrap .c-img figcaption span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.l-message_wrap .c-img figcaption .p-name {
  font-size: 18px;
}

.l-message_wrap .c-text_wrap {
  font-family: "Libre Caslon Text", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .l-message_wrap .c-text_wrap {
    width: 100%;
    max-width: none;
    margin-top: 50px;
  }
}

.l-message_wrap .c-text_wrap:first-letter {
  font-size: 40px;
  line-height: 1;
}

.c-youtube_wrap {
  margin-top: 120px;
}

@media screen and (max-width: 767px) {
  .c-youtube_wrap {
    margin-top: 54px;
  }
}

.c-youtube_wrap .c-ttl {
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.28px;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
  background: none;
}

.c-youtube_wrap .c-youtube_area {
  margin-top: 24px;
}

.c-youtube_wrap .c-youtube_area .yrc-pagination {
  margin-top: 24px;
}

.c-youtube_wrap .yrc-shell ul.yrc-core {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.c-youtube_wrap .yrc-shell ul.yrc-core .yrc-item {
  margin: 0 !important;
  width: calc((100% - 40px) / 3) !important;
}

@media screen and (max-width: 767px) {
  .c-youtube_wrap .yrc-shell ul.yrc-core .yrc-item {
    width: 100% !important;
  }
}

.c-youtube_wrap .yrc-shell ul.yrc-core .yrc-item .yrc-item-title {
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.28px;
  margin-top: 8px;
}

.c-youtube_wrap #yrc-shell-0 .yrc-load-more-button {
  border-radius: 4px;
  background: #333;
}

@media (hover: hover) {
  .c-youtube_wrap #yrc-shell-0 .yrc-load-more-button {
    transition: 0.5s;
  }

  .c-youtube_wrap #yrc-shell-0 .yrc-load-more-button:hover {
    opacity: 0.5;
  }
}

.c-about_sec.p-overview {
  padding: 120px 0 0;
}

@media screen and (max-width: 767px) {
  .c-about_sec.p-overview {
    padding: 80px 0 0;
  }
}

.c-overview_list {
  margin-top: -30px;
}

@media screen and (max-width: 767px) {
  .c-overview_list {
    margin-top: 24px;
  }
}

.c-overview_list .c-item {
  border-bottom: 1px solid #7C3679;
  padding: 32px 0;
}

.c-overview_list dt {
  color: #AD7EAB;
  font-family: "Libre Caslon Text", serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0;
  position: relative;
  padding-bottom: 24px;
}

.c-overview_list dt::before {
  content: "";
  width: 12px;
  height: 1px;
  background: #AD7EAB;
  position: absolute;
  bottom: 12px;
  left: 0;
}

.c-overview_list dd {
  font-family: "Libre Caslon Text", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.016em;
}

@media screen and (max-width: 767px) {
  .c-overview_list dd {
    font-size: 16px;
  }
}

.c-overview_list ul li {
  padding-left: 16px;
  text-indent: -16px;
}

.c-overview_list ul li:before {
  content: "・";
  margin: 0 4px;
}

.c-overview_list iframe {
  width: 100%;
  height: 440px;
  margin-top: 34px;
}

@media screen and (max-width: 767px) {
  .c-overview_list iframe {
    height: 40vw;
  }
}

body.is-theme-light .c-about_sec .c-circle_list li {
  background: #FFF;
}

body.is-theme-light .c-about_sec .c-circle_list .c-text__text02 {
  color: #000;
}

body.is-theme-light .c-about_sec.p-message {
  background: #FFF;
}

/* ===================================
service
=================================== */
.l-page_area .services_contents {
  padding-top: 10px;
}

.services_contents {
  display: flex;
  flex-direction: column;
  gap: 170px;
}

@media screen and (max-width: 767px) {
  .services_contents {
    gap: 50px;
  }
}

.services_contents__wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1340px;
  margin: auto;
  color: var(--font-color-dark);
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .services_contents__wrap {
    display: block;
  }
}

.services_contents__wrap.wrap02 {
  flex-direction: row-reverse;
}

.services_contents__wrap .services_contents__L {
  width: 62%;
}

@media screen and (max-width: 1024px) {
  .services_contents__wrap .services_contents__L {
    width: 54%;
  }
}

@media screen and (max-width: 767px) {
  .services_contents__wrap .services_contents__L {
    width: 100%;
  }
}

.services_contents__wrap .services_contents__L video {
  border: 1px solid #333;
  padding: 1px;
}

.services_contents__wrap .services_contents__R {
  width: 38%;
  margin: -12px auto 0;
  max-width: 320px;
}

@media screen and (max-width: 1024px) {
  .services_contents__wrap .services_contents__R {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .services_contents__wrap .services_contents__R {
    width: 100%;
    max-width: none;
    margin: 24px auto 0;
  }
}

.services_contents__wrap .services_contents__ttl {
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  padding-left: 25px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .services_contents__wrap .services_contents__ttl {
    font-size: 40px;
  }

  .services_contents__wrap .services_contents__ttl br {
    display: none;
  }
}

.services_contents__wrap .services_contents__ttl::before {
  content: "";
  width: 9px;
  height: 10px;
  background: #B18E27;
  border-radius: 10px;
  position: absolute;
  top: 24px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .services_contents__wrap .services_contents__ttl::before {
    top: 14px;
  }
}

.services_contents__wrap .services_contents__txtWrap {
  padding-left: 25px;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .services_contents__wrap .services_contents__txtWrap {
    margin-top: 24px;
    padding: 0 24px;
  }
}

.services_contents__wrap .services_contents__txt01 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

@media screen and (max-width: 767px) {
  .services_contents__wrap .services_contents__txt01 {
    font-size: 18px;
  }
}

.services_contents__wrap .services_contents__txt02 {

  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  /* 25.2px */
  margin-top: 12px;
}

@media screen and (max-width: 1024px) {
  .services_contents__wrap .services_contents__txt02 {
    text-align: left;
  }
}

.services_contents__btn a {
  display: flex;
  padding: 6px 24px;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  background: var(--primary-color-light);
  color: var(--font-color-light);
  margin-top: 24px;
  width: 149px;
  font-family: "Bellefair", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  /* 22.4px */
}

@media screen and (max-width: 767px) {
  .services_contents__btn a {
    margin-top: 60px;
  }
}

@media (hover: hover) {
  .services_contents__btn a {
    transition: 0.5s;
  }

  .services_contents__btn a:hover {
    opacity: 0.5;
  }
}

body.is-theme-light .services_contents__wrap {
  color: var(--font-color-light);
}

body.is-theme-light .services_contents__btn a {
  background: var(--secondary-color-light);
  color: var(--primary-color-light);
}

body.is-theme-light path {
  fill: var(--primary-color-light);
}

body.is-theme-light .services_contents__wrap .services_contents__L video {
  border: none;
}

/* ===================================
ARTEMIS LIFT
=================================== */
#artemislift {
  background: var(--primary-color-dark);
}

.l-under_ttl {
  display: flex;
  max-width: 1240px;
  padding: 140px 20px 0;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .l-under_ttl {
    display: block;
  }
}

.l-under_ttl .c-text_wrap {
  max-width: 422px;
  width: calc(100% - 720px);
}

@media screen and (max-width: 1200px) {
  .l-under_ttl .c-text_wrap {
    width: 45%;
  }
}

@media screen and (max-width: 767px) {
  .l-under_ttl .c-text_wrap {
    width: 100%;
  }
}

.l-under_ttl .c-text_wrap .c-page_ttl {
  font-family: "Libre Caslon Text", serif;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -1.28px;
}

@media screen and (max-width: 1200px) {
  .l-under_ttl .c-text_wrap .c-page_ttl {
    line-height: 1;
  }
}

@media screen and (max-width: 767px) {
  .l-under_ttl .c-text_wrap .c-page_ttl {
    font-size: 40px;
    margin-bottom: 24px;
  }
}

.l-under_ttl .c-text_wrap .c-text {
  text-align: justify;
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width: 1024px) {
  .l-under_ttl .c-text_wrap .c-text {
    text-align: left;
  }
}

.l-under_ttl .c-movie_wrap {
  max-width: 700px;
  margin-left: 20px;
}

@media screen and (max-width: 1200px) {
  .l-under_ttl .c-movie_wrap {
    width: 60%;
  }
}

@media screen and (max-width: 767px) {
  .l-under_ttl .c-movie_wrap {
    width: 100%;
    margin: 24px 0 0;
  }
}

.c-under_cont {
  max-width: 1240px;
  padding: 0 20px;
  margin: 180px auto 160px;
}

@media screen and (max-width: 767px) {
  .c-under_cont {
    margin: 100px auto 120px;
  }
}

.c-under_cont .c-ttl_wrap {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .c-under_cont .c-ttl_wrap {
    display: block;
  }
}

.c-under_cont .c-ttl_wrap .c-ttl {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-family: "Libre Caslon Text", serif;
  font-size: 16px;
  background: none;
}

@media screen and (max-width: 767px) {
  .c-under_cont .c-ttl_wrap .c-ttl {
    display: block;
  }
}

.c-under_cont .c-ttl_wrap .c-ttl:after {
  content: "";
  width: 40px;
  height: 1px;
  background: #7C3679;
  margin: 0 20px;
  display: block;
}

@media screen and (max-width: 767px) {
  .c-under_cont .c-ttl_wrap .c-ttl:after {
    margin: 16px 0;
  }
}

.c-under_cont .c-ttl_wrap .c-ttl_text {
  font-family: "Libre Caslon Text", serif;
  font-size: 48px;
  font-weight: 500;
  margin-top: -10px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .c-under_cont .c-ttl_wrap .c-ttl_text {
    font-size: 34px;
  }
}

.c-under_cont .c-ttl_wrap .c-ttl_text .p-thin {
  font-weight: 100;
}

.c-under_cont .c-ttl_wrap.p-strengths {
  margin-top: 180px;
}

@media screen and (max-width: 767px) {
  .c-under_cont .c-ttl_wrap.p-strengths {
    margin-top: 100px;
  }
}

.c-under_cont .c-ttl_wrap.p-strengths .c-text {
  font-family: "Libre Caslon Text", serif;
}

.c-bg_list {
  display: flex;
  gap: 24px;
  margin-top: 34px;
}

@media screen and (max-width: 1024px) {
  .c-bg_list {
    flex-wrap: wrap;
  }
}

.c-bg_list li {
  width: calc((100% - 24px) / 2);
  display: flex;
  background: var(--font-color-light);
  padding: 16px 40px 16px 16px;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .c-bg_list li {
    width: 100%;
    padding: 20px;
    display: block;
  }
}

.c-bg_list .c-img {
  max-width: 200px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .c-bg_list .c-img {
    margin: 0 auto;
  }
}

.c-bg_list .c-img:before {
  content: "";
  border-radius: 50%;
  border: 8px solid #60295c;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  position: absolute;
  top: -1px;
  left: -1px;
}

.c-bg_list .c-text_wrap {
  max-width: calc(100% - 224px);
  margin-left: 24px;
}

@media screen and (max-width: 1024px) {
  .c-bg_list .c-text_wrap {
    width: 100%;
    max-width: none;
    margin: 24px 0 0;
  }
}

.c-bg_list .c-text_wrap .c-ttl {
  font-family: "Libre Caslon Text", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.56px;
}

.c-bg_list .c-text_wrap .c-text {
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .c-bg_list .c-text_wrap .c-text br {
    display: none;
  }
}

.c-ttl_wrap.p-concept {
  margin-top: 190px;
  margin-bottom: 44px;
}

@media screen and (max-width: 767px) {
  .c-ttl_wrap.p-concept {
    margin-top: 120px;
  }
}

.c-bg_box {
  background: var(--base-color-dark);
  display: flex;
  padding: 64px;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .c-bg_box {
    padding: 30px 20px;
    display: block;
  }
}

.c-bg_box+.c-bg_box {
  margin-top: 24px;
}

.c-bg_box>.c-ttl {
  font-family: "Libre Caslon Text", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.64px;
  text-decoration-line: underline;
  width: 290px;
}

@media screen and (max-width: 767px) {
  .c-bg_box>.c-ttl {
    width: 100%;
    font-size: 28px;
  }

  .c-bg_box>.c-ttl br {
    display: none;
  }
}

.c-bg_box>.c-cont {
  max-width: 620px;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .c-bg_box>.c-cont {
    max-width: none;
    padding: 50px 0 0;
  }
}

.c-bg_box .c-cont_list dt {
  font-family: "Libre Caslon Text", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.c-bg_box .c-cont_list dd {
  text-align: justify;
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 24px;
}

@media screen and (max-width: 1024px) {
  .c-bg_box .c-cont_list dd {
    text-align: left;
  }
}

.c-bg_box .c-cont_list dd+dt {
  margin-top: 50px;
}

body.is-theme-light .c-bg_list li {
  background: #F4F4F4;
}

body.is-theme-light .c-bg_list .c-img:before {
  border: 8px solid #fff;
}

body.is-theme-light .c-bg_box {
  background: #F4F4F4;
}

/* ===================================
journal
=================================== */
.l-post_wrap.p-journal {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.c-post_list .c-item+.c-item {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .c-post_list .c-item+.c-item {
    margin-top: 16px;
  }
}

.c-post_list .c-ttl_wrap {
  display: flex;
  align-items: center;
  background: var(--base-color-dark);
  box-shadow: 0px 0px 20px 0px rgba(70, 13, 67, 0.05);
  padding: 20px 60px 20px 20px;
  position: relative;
  border: 1px solid var(--base-color-dark);
  transition: 0.5s;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .c-post_list .c-ttl_wrap {
    display: block;
    padding: 12px;
  }
}

@media (hover: hover) {
  .c-post_list .c-ttl_wrap:hover {
    border: 1px solid var(--font-color-dark);
  }
}

.c-post_list .c-ttl_wrap.js-aco_open {
  border: 1px solid var(--font-color-dark);
}

.c-post_list .c-ttl_wrap.js-aco_open:after {
  transform: rotate(0deg);
}

@media screen and (max-width: 767px) {
  .c-post_list .c-ttl_wrap.js-aco_open .c-ttl:after {
    transform: rotate(0deg);
  }
}

.c-post_list .c-ttl_wrap:before,
.c-post_list .c-ttl_wrap:after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: var(--font-color-dark);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: 0.5s;
}

@media screen and (max-width: 767px) {

  .c-post_list .c-ttl_wrap:before,
  .c-post_list .c-ttl_wrap:after {
    display: none;
  }
}

.c-post_list .c-ttl_wrap:after {
  transform: rotate(90deg);
}

.c-post_list .c-ttl_wrap .c-time {
  font-family: "Libre Caslon Text", serif;
  border-right: 1px solid #6D2168;
  width: 90px;
}

@media screen and (max-width: 767px) {
  .c-post_list .c-ttl_wrap .c-time {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #6D2168;
    padding-bottom: 8px;
  }
}

.c-post_list .c-ttl_wrap .c-time .p-year {
  font-size: 14px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  display: block;
}

@media screen and (max-width: 767px) {
  .c-post_list .c-ttl_wrap .c-time .p-year {
    font-size: 12px;
  }
}

.c-post_list .c-ttl_wrap .c-time .p-month_day {
  font-size: 24px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
  display: block;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  .c-post_list .c-ttl_wrap .c-time .p-month_day {
    font-size: 18px;
  }
}

.c-post_list .c-ttl_wrap .c-time .p-month_day span {
  font-weight: 100;
  display: inline-block;
  padding: 0 4px;
  transform: rotate(10deg);
}

.c-post_list .c-ttl_wrap .c-ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  width: calc(100% - 90px);
  padding-left: 20px;
  background: none;
}

@media screen and (max-width: 767px) {
  .c-post_list .c-ttl_wrap .c-ttl {
    padding: 8px 40px 0 0;
    width: 100%;
    position: relative;
  }

  .c-post_list .c-ttl_wrap .c-ttl:before,
  .c-post_list .c-ttl_wrap .c-ttl:after {
    content: "";
    width: 14px;
    height: 1px;
    background-color: var(--font-color-dark);
    position: absolute;
    top: 50%;
    right: 6px;
    transition: 0.5s;
  }

  .c-post_list .c-ttl_wrap .c-ttl:after {
    transform: rotate(90deg);
  }
}

.c-post_list .c-text_area {
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  padding-top: 16px;
}

.c-post_list .c-text_area *+* {
  margin-top: 20px;
}

.c-post_list .c-text_area a {
  text-decoration: underline;
}

body.is-theme-light .c-post_list .c-ttl_wrap {
  background: var(--primary-color-light);
  box-shadow: 0px 0px 20px 0px rgba(70, 13, 67, 0.05);
  border: 1px solid var(--primary-color-light);
}

body.is-theme-light .c-post_list .c-ttl_wrap .c-time {
  border-right: 1px solid #DDD;
}

@media screen and (max-width: 767px) {
  body.is-theme-light .c-post_list .c-ttl_wrap .c-time {
    border-right: none;
    border-bottom: 1px solid #DDD;
  }
}

@media (hover: hover) {
  body.is-theme-light .c-post_list .c-ttl_wrap:hover {
    border: 1px solid var(--font-color-light);
  }
}

body.is-theme-light .c-post_list .c-ttl_wrap:before,
body.is-theme-light .c-post_list .c-ttl_wrap:after {
  background-color: #000000;
}





/* ===================================
追記：info@phoenix-designs.jp（東海林）
=================================== */

.headCONTACT {
	position: absolute;
	right: 200px;
}
@media screen and (max-width: 1080px) {
	.headCONTACT {
	position: absolute;
	right: 150px;
}
}
@media screen and (max-width: 834px) {
	.headCONTACT {
	display: none;
}
}
.br-sp {
  display: none;
}

@media screen and (max-width: 1080px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline-block;
  }
}


.topABOUT {
	padding: 150px 0 200px 0;
	width: 80%;
	margin: auto;
}
.topABOUT h2 {
	font-size: clamp(2.4rem, 4.1vw, 50px);
	font-weight: 600;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
}

.topABOUT .c-circle_list {
  display: flex;
  
}

.topABOUT .c-circle_list li {
  width: calc((100% - 28px) / 3); /* 横幅の計算はそのままでOK */
  aspect-ratio: 1 / 1;           /* ← 正方形を強制 */
  background: #632865;
  border-radius: 50%;
  display: flex;
  justify-content: center;
	margin: 0 2.5%;
}
.topABOUT .c-circle_list li .c-in_wrap {
	margin-top: 25%;
}
.topABOUT .c-circle_list li .c-text__text01 {
	font-size: clamp(1.6rem, 1.8vw, 20px);
	font-weight: bold;
	text-align: center;
}
.topABOUT .c-circle_list li .c-text__text01 span {
	font-size: clamp(2.4rem, 4.1vw, 50px);
	font-weight: bold;
	position: relative;
	top:5px;
	margin-left: 10px;
	color:#ab8f3c;
}
.topABOUT .c-circle_list li .c-text__text02 {
	text-align: center;
}
.topABOUT .c-circle_list li .c-text__text01 span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
	
.topABOUT {
	padding:100px 0 120px 0;
	width: 100%;
	margin: auto;
}
.topABOUT h2 {
	font-size: clamp(2.6rem, 4.1vw, 50px);
	font-weight: 600;
	display: flex;
	justify-content: flex-end;
	margin-bottom:30px;
}

.topABOUT .c-circle_list {
  display: flex;
	flex-direction: column;
  
}

.topABOUT .c-circle_list li {
  width: calc((100% - 28px) / 1); /* 横幅の計算はそのままでOK */
  aspect-ratio:0;         /* ← 正方形を強制 */
  background: #632865;
  border-radius: 80px;
  display: flex;
	align-items: center;
  justify-content: center;
	margin: 0 auto;
	margin-bottom: 20px;
	height: 150px;
}
.topABOUT .c-circle_list li .c-in_wrap {
	margin-top: 0;
	
}
.topABOUT .c-circle_list li .c-text__text01 {
	font-size: clamp(1.6rem, 1.8vw, 20px);
	font-weight: bold;
	text-align: center;
}
.topABOUT .c-circle_list li .c-text__text01 span {
	font-size: clamp(2.4rem, 4.1vw, 50px);
	font-weight: bold;
	position: relative;
	top:5px;
	margin-left: 10px;
	color:#ab8f3c;
}
.topABOUT .c-circle_list li .c-text__text02 {
	text-align: center;
}
.topABOUT .c-circle_list li .c-text__text01 span {
  display: inline-block;
}
	
}

/* ===================================
algeness
=================================== */
#algeness {
  background: var(--primary-color-dark);
}

.algeness01 {
	display: flex;
	justify-content: space-between;
	max-width: 1240px;
  padding: 140px 20px 0;
  margin: 0 auto;
}
.algeness01 li {
	width: 49%;
}

.algeness02 {
	max-width: 800px;
  padding: 100px 20px 100px;
  margin: 0 auto;
}
.algeness03 {
	max-width: 1200px;
   padding: 140px 0px 0;
  margin: 0 auto;
	background: #3f1341;
	padding: 50px;
	box-sizing: border-box;
	display: flex;
	justify-content:space-between;
}
.algeness03 .left {
	width: 40%;
}
.algeness03 .right {
	width: 50%;
	display: flex;
  justify-content: center;
  align-items: center;
}
.algeness03 .left h3 {
	font-size: clamp(2rem, 1.9vw, 24px);
	line-height: 1.3;
}
.algeness04 {
	max-width: 1200px;
	margin: 0 auto;
    padding: 80px 0px 0;
	box-sizing: border-box;
	margin-bottom: 150px;
}

.algeness04 p {
	margin-bottom: 80px;
}
.itemBOX  {
	display: flex;
	justify-content: space-between;
}
.itemBOX li  {
	width: 49%;
}

@media screen and (max-width: 767px) {
	
.algeness01 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 1240px;
  padding: 80px 20px 0;
  margin: 0 auto;
}
.algeness01 li {
	width: auto;
	margin-bottom: 20px;
}

.algeness02 {
	max-width: 800px;
  padding: 30px 20px 50px;
  margin: 0 auto;
}
.algeness03 {
	max-width: 1200px;
   padding: 140px 0px 0;
  margin: 0 5%;
	background: #3f1341;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content:space-between;
}
.algeness03 .left {
	width: auto;
}
.algeness03 .right {
	width: auto;
	display: flex;
  justify-content: center;
  align-items: center;
}
.algeness03 .left h3 {
	font-size: clamp(1.8rem, 1.9vw, 24px);
	line-height: 1.3;
	margin-bottom: 20px;
}
.algeness04 {
	max-width: 1200px;
	margin: 0 5%;
    padding: 40px 0px 0;
	box-sizing: border-box;
	margin-bottom: 150px;
}

.algeness04 p {
	margin-bottom: 40px;
}
.itemBOX  {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.itemBOX li  {
	width: auto;
	margin-bottom: 20px;
}

	
}



/* ===================================
medicaldocument
=================================== */


#medicaldocument01 h2.c-page_ttl,
#medicaldocument02 h2.c-page_ttl {
	line-height: 1.3 !important;
}
#medicaldocument01 h2.c-page_ttl span,
#medicaldocument02 h2.c-page_ttl span {
	top:-60px;
}

.medicalconfirmation {
	background: #460d43;
	padding: 50px;
	box-sizing: border-box;
	max-width: 1200px;
	margin: auto;
	margin-top: 80px;
}
.medicalconfirmation h2 {
	text-align: center;
	font-size: clamp(2rem, 3vw, 36px);
	margin-bottom: 40px;
}

.buttonBOX {
	display: flex;
	justify-content: space-between;
	max-width: 600px;
	margin: auto;
}

.button008 {
	width: 48%;
}

.button008 a {
    background: #eee;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    z-index:0;
	font-size: 24px
}
.button008 a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #6d2168;
    transition: .3s;
    left:0;
}
.button008 a:hover {
    color: #FFF;
}
.button008 a:hover:before {
    width: 100%;
    z-index: -1;
}


@media screen and (max-width: 767px) {

#medicaldocument01 h2.c-page_ttl,
#medicaldocument02 h2.c-page_ttl {
	line-height: 1.3 !important;
}
#medicaldocument01 h2.c-page_ttl span,
#medicaldocument02 h2.c-page_ttl span {
	top:-60px;
}

.medicalconfirmation {
	background: #460d43;
	padding: 25px;
	box-sizing: border-box;
	max-width: 1200px;
	margin: auto 5%;
	margin-top: 40px;
}
.medicalconfirmation h2 {
	text-align: center;
	font-size: clamp(1.4rem, 3vw, 36px);
	margin-bottom: 20px;
	line-height: 1.5;
}

.buttonBOX {
	display: flex;
	justify-content: space-between;
	max-width: 600px;
	margin: auto;
}

.button008 {
	width: 48%;
}

.button008 a {
    background: #eee;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    z-index:0;
	font-size: 18px
}
.button008 a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #6d2168;
    transition: .3s;
    left:0;
}
.button008 a:hover {
    color: #FFF;
}
.button008 a:hover:before {
    width: 100%;
    z-index: -1;
}	
}

/* ===================================
contact
=================================== */

#contact h2.c-page_ttl,
#contact h2.c-page_ttl {
	line-height: 1.3 !important;
}
#contact h2.c-page_ttl span,
#contact h2.c-page_ttl span {
	top:0px;
}

.formBLOCK {
	box-sizing: border-box;
	max-width: 1000px;
	margin: auto;
}
.formBLOCK h2 {
	text-align: center;
	font-size: clamp(2rem, 3vw, 36px);
	margin-bottom: 40px;
}
table.formTB {
    border: 0px #E3E3E3 solid;
    border-collapse: collapse;
    border-spacing: 0;
}

table.formTB  th {
    padding: 20px;
    border: 0px;
    font-weight: normal;
	font-size: 24px;
	width: 35%;
}
table.formTB  th span {
    margin-left: 5px;
	font-size: 16px;
	position: relative;
	top:-5px;
	vertical-align: middle;

}
table.formTB  td {
    padding: 20px;
    border: 0px;
    font-weight: normal;
	 border: 0px #E3E3E3 solid;
	vertical-align: middle;
}

.input_type01 {
	background: #f3f3f3;
	padding:15px;
	width: 100%;
	font-size: 16px;
	box-sizing: border-box;
	border: 1px solid #e0dfdf;
}
.textarea01 {
	background: #f3f3f3;
	border: 1px solid #e0dfdf;
	padding:15px;
	width: 100%;
	height: 200px;
	font-size: 16px;
}

.submitbutton {
	background: #fff;
	border-radius: 10px;
    position: relative;
    padding: 15px 50px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    z-index:0;
	font-size: 20px;
	font-family: "Libre Caslon Text", serif;
	max-width: 500px;
	margin: auto;
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	
#contact h2.c-page_ttl,
#contact h2.c-page_ttl {
	line-height: 1.3 !important;
}
#contact h2.c-page_ttl span,
#contact h2.c-page_ttl span {
	top:0px;
}

.formBLOCK {
	box-sizing: border-box;
	max-width: 100%;
	margin: auto 5%;
}
.formBLOCK h2 {
	text-align: center;
	font-size: 18px;
	margin-bottom: 20px;
}
table.formTB {
    border: 0px #E3E3E3 solid;
    border-collapse: collapse;
    border-spacing: 0;
width: 100%;
}

table.formTB  th {
    padding: 10px;
    border: 0px;
    font-weight: normal;
	font-size: 16px;
	width: 100%;
	display: block;
	text-align: left;
}
table.formTB  th span {
    margin-left: 5px;
	font-size: 16px;
	position: relative;
	top:-5px;
	vertical-align: middle;

}
table.formTB  td {
	width: 100%;
	display: block;
    padding: 0 10px 10px 10px;
    border: 0px;
    font-weight: normal;
	 border: 0px #E3E3E3 solid;
	vertical-align: middle;
}

.input_type01 {
	background: #f3f3f3;
	padding:15px;
	width: 100%;
	font-size: 16px;
	box-sizing: border-box;
	border: 1px solid #e0dfdf;
}
.textarea01 {
	background: #f3f3f3;
	border: 1px solid #e0dfdf;
	padding:15px;
	width: 100%;
	height: 200px;
	font-size: 16px;
}

.submitbutton {
	background: #fff;
	border-radius: 10px;
    position: relative;
    padding: 15px 50px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    z-index:0;
	font-size: 16px;
	font-family: "Libre Caslon Text", serif;
	max-width: 500px;
width:80%;
	margin: auto;
	margin-top: 20px;
box-sizing: border-box;
}
	
}




.l-fv__stickyWrap h2 {
	font-size: clamp(2.4rem, 4.1vw, 50px);
	font-weight: 600;
	display: flex;
	margin-top: 100px;
	margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
	.l-fv__stickyWrap h2 {
	font-size: clamp(2.4rem, 4.1vw, 50px);
	font-weight: 600;
	display: flex;
	margin-top: 50px;
	margin-bottom: 20px;
}

}

.intext {
	text-align: right;
	font-size: clamp(1.5rem, 3vw, 36px);
	line-height: 1.5;
	margin-bottom: 100px;
}

.siteBOX01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* ★下辺を揃える */
	margin-bottom: 30px;
}

.siteBOX01 li {
  background: #240a25;
  box-sizing: border-box;
  width: 32%;
  height: 360px;
  position: relative; /* 基準 */
}

.siteBOX01 li a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  box-sizing: border-box;

  text-decoration: none;
  color: #fff;
}



/* 2番目だけ高さを変える */
.siteBOX01 li:nth-child(2) {
  min-height: 420px; /* 例：好みの高さに */
  /* height: 420px; でもOK（固定したい場合） */
}
.siteBOX01 li figure {
		width: 90%;
	padding: 0 20px;
	margin: auto;
	text-align: center;
	box-sizing: border-box;
}
.taxlogo {
	margin-top: 30px;
}
.siteBOX01 li .cnt {
	padding: 0;
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 36px);
	text-align: center;
line-height:1.2;
}
.siteBOX01 li .cnt span {
	padding: 0;
	margin: 0;
	font-size: clamp(2.4rem, 4.1vw, 50px);
	font-weight: bold;
	color:#b78b34;
}
.siteBOX01 li p {
	line-height: 1.5;
	text-align: center;
}


.siteBOX02 {
  display: flex;
  justify-content: space-between;
}
.siteBOX02 li {
	position: relative; /* 基準 */
  background: #240a25;
  box-sizing: border-box;
  width: 49%;
	text-align: center;
}

.siteBOX02 li a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
	text-align: center;
  text-decoration: none;
  color: #fff;
}

.siteBOX02 li figure {
		width:60%;
	padding: 20px;
	margin: auto;
	text-align: center;
	box-sizing: border-box;
}
.anglogo {
	width: 60%;
	margin: auto;
}


.svsTITLE {
	font-size: clamp(2.4rem, 4.1vw, 50px);
  width: 100%;
  max-width: 1340px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
	position: relative;
	z-index: 1;
	font-weight: bold;
}

.small {
	font-size: clamp(16px, 2vw, 20px) !important;
color:#fff !important;
display:block !important;
}

@media screen and (max-width: 767px) {
	
.intext {
	text-align: right;
	font-size: clamp(1rem, 3vw, 36px);
	line-height: 1.5;
	margin-bottom: 50px;
}

.siteBOX01 {
  display: flex;
	flex-direction: column;
  justify-content: space-between;
  align-items:flex-start; /* ★下辺を揃える */
	margin-bottom: 0px;
}

.siteBOX01 li {
  background: #240a25;
  box-sizing: border-box;
  width: auto;
  height: auto;
  position: relative; /* 基準 */
	margin-bottom: 20px;
}

.siteBOX01 li a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  box-sizing: border-box;

  text-decoration: none;
  color: #fff;
}



/* 2番目だけ高さを変える */
.siteBOX01 li:nth-child(2) {
  min-height: auto; /* 例：好みの高さに */
  /* height: 420px; でもOK（固定したい場合） */
}
.siteBOX01 li figure {
		width: 90%;
	padding: 0 20px;
	margin: auto;
	text-align: center;
	box-sizing: border-box;
}
.taxlogo {
	margin-top: 0px;
	margin-bottom: 15px;
}
.siteBOX01 li .cnt {
	padding: 0;
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 36px);
	text-align: center;
}
.siteBOX01 li .cnt span {
	padding: 0;
	margin: 0;
	font-size: clamp(2.4rem, 4.1vw, 50px);
	font-weight: bold;
	color:#b78b34;
}
.siteBOX01 li p {
	line-height: 1.5;
	text-align: center;
}


.siteBOX02 {
  display: flex;
	flex-direction: column;
  justify-content: space-between;
}
.siteBOX02 li {
	position: relative; /* 基準 */
  background: #240a25;
  box-sizing: border-box;
  width: auto;
	margin-bottom: 15px;
}

.siteBOX02 li a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;

  text-decoration: none;
  color: #fff;
}

.siteBOX02 li figure {
		width:80%;
	padding: 20px;
	margin: auto;
	text-align: center;
	box-sizing: border-box;
}
.anglogo {
	width: 60%;
	margin: auto;
}


.svsTITLE {
	font-size: clamp(1.8rem, 4.1vw, 50px);
  width: 100%;
  max-width: 1340px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
	position: relative;
	z-index: 1;
	font-weight: bold;
}
	
	
}

.contactTITLE  {
	color: #3f1341;
	text-align: center;
	font-size: clamp(2.4rem, 4.1vw, 50px);
	font-weight: bold;
	margin-bottom: 20px;
}

.contactTXT {
	text-align: center;
	font-size: clamp(1.5rem, 2vw, 20px);
	color: #3f1341;
	line-height: 1.5;
	margin-bottom: 40px;
}

.topCbutton {
	color:#b78b34;
	text-align: center;
	font-size: clamp(1.6rem, 2vw, 24px);
	border: 1px solid #b78b34;
	cursor:pointer;
		max-width: 450px;
	margin: auto;
	transition: 0.5s; /* マウスカーソルを外すとき */
}
.topCbutton a {
	display: block;
	padding: 20px;
	cursor:pointer
}
.topCbutton a:hover {
	background: #b78b34;
	color:#fff !important;
	 transition: 0.5s; /* マウスカーソルを載せるとき */
}


.add {
	margin-bottom: 100px;
}
.add li {
	margin-bottom: 20px;
	
}
.add h4 {
	color:#9f89a0;
	margin-bottom: 10px;
	
}
.add p {
	font-size: clamp(14px, 1.2vw, 12px);
	color:#fff;
	margin-bottom: 16px;
	line-height: 1.7;
	
}

@media screen and (max-width: 767px) {
.contactTITLE  {
	color: #3f1341;
	text-align: center;
	font-size: clamp(2rem, 4.1vw, 50px);
	font-weight: bold;
	margin-bottom: 20px;
	margin-top: -20px;
}

.contactTXT {
	text-align: center;
	font-size: clamp(1.2rem, 2vw, 20px);
	color: #3f1341;
	line-height: 1.5;
	margin-bottom: 40px;
}

.topCbutton {
	color:#b78b34;
	text-align: center;
	font-size: clamp(1.5rem, 2vw, 24px);
	border: 1px solid #b78b34;
	cursor:pointer;
		max-width: 450px;
	margin: auto;
	transition: 0.5s; /* マウスカーソルを外すとき */
}
.topCbutton a {
	display: block;
	padding: 15px 20px;
	cursor:pointer
}
.topCbutton a:hover {
	background: #b78b34;
	color:#fff !important;
	 transition: 0.5s; /* マウスカーソルを載せるとき */
}	
}

.select {
   width: 300px;
   height: 50px;
	font-size: clamp(1.4rem, 1.8vw, 18px);
   .wpcf7-form-control {
      width: 100%;
      height: 100%;
      padding: 10px 20px;
      box-sizing: border-box;
	font-size: 16px;
   }
}

.select-02 {
   position: relative;
   &::after {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 10px 6px 0 6px;
      border-color: #000 transparent transparent transparent;
      position: absolute;
      top: 18px;
      right: 20px;
      pointer-events: none;
   }
   .wpcf7-form-control {
      appearance: none;
      -webkit-appearance: none; /*Google Chrome/Safari対応*/
      -moz-appearance: none; /*Firefox対応*/
      -o-appearance: none; /*Opera対応*/
   }
}




/*  TOP追加 */


.topCATCH {
	margin-top:120px;
}

.topCATCH p {
	font-size: clamp(16px, 2.4vw,30px) !important;
	text-align: center;
	color:#fff;
}

.ceo-img {
	width: 300px;
}
.ceo-img img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 767px) {
.topCATCH {
	margin-top:50px;
}

.topCATCH p {
	font-size: clamp(18px, 2.4vw,30px) !important;
	text-align: center;
	color:#fff;
}	
.ceo-img {
	width: 60%;
	margin: auto;
}
.ceo-img img {
	width: 100%;
	height: auto;
}
}



/*------------------  

実績 

------------------ */


.recordCATEGORY {
	display: flex;
	margin-bottom: 20px;
}
.recordCATEGORY li {
	width: 19%;
	text-align: center;
	border-bottom: 1px solid #fff;
	font-size: clamp(14px, 1.6vw,16px) ;
margin-right:15px;
}
.recordCATEGORY li a {
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
	display: block;

	
}


.recordLIST {
	display: flex;
	flex-wrap: wrap;
	margin-top: 100px;
}
.recordLIST .listitem {
	width: 30%;
	margin: 0 1.6%;
	margin-bottom: 40px;
}
.recordLIST .listitem figure {
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
}
.recordLIST .listitem .cate {

}

.recordLIST .listitem .cate ul {
	display: flex;
}
.recordLIST .listitem .cate ul li {
		padding: 5px 15px;
	line-height: 1;
	border: 1px solid #fff;
	font-size: clamp(10px, 1.2vw,12px) ;
	display:inline-block;
	margin-bottom: 10px;
margin-right:3px
}


.recordLIST .listitem p {
	font-size: clamp(12px, 1.4vw,14px) ;
	line-height: 1.4;
}


/*------------------  

実績詳細

------------------ */
.recordDETAIL {
	margin-top: -22px;
}

.backBUTTON a {
    border: 1px solid #fff;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
 font-size: clamp(14px, 1.6vw,16px) ;
    max-width: 150px;
    padding: 5px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.backBUTTON a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: translateY(-50%) rotate(-45deg);
}
.backBUTTON a:hover {
  background: #fff;
  color: #3f1341;
}
.backBUTTON a:hover:after {
	  border-top: solid 2px #3f1341;
  border-left: solid 2px #3f1341;
}

.postHEAD {
	background: #460d43;
	padding: 50px;
	box-sizing: border-box;
	margin: 100px 0;
}
.postHEAD h2 {
	font-size: clamp(20px, 3.2vw,32px) ;
	line-height: 1.5;
	border-bottom: 1px solid  #632865;
	padding-bottom: 15px;
	margin-bottom: 15px;
font-family: "Noto Serif JP", serif;
}

.postHEAD .info {
	display: flex;
}
.postHEAD .info .left {
	margin-right: 40px;
	font-size: clamp(12px, 1.4vw,14px);
}
.postHEAD .info .right {
	
}
.postHEAD .info .right .cate {
	display: flex;
}
.postHEAD .info .right .cate li {
	padding: 5px 15px;
	line-height: 1;
	border: 1px solid #fff;
	font-size: clamp(12px, 1.4vw,14px) ;
	display:inline-block;
	margin-bottom: 10px;
	margin-right: 10px;
}

.postCONTENT {
	padding-bottom: 100px;
}
.postCONTENT p {
	font-size: clamp(14px, 1.6vw,16px);
	font-family: "Noto Sans JP", sans-serif;
font-weight: 500;
	margin-bottom: 20px;
}

.webLINK {
	margin: 50px 0;
}
.webLINK li {
		margin-bottom: 10px;
}
.webLINK li a {
	background: #fff;
	font-size: clamp(12px, 1.4vw,14px);
	 color: #3f1341;
	padding: 15px 50px;
	box-sizing: border-box;
	position: relative;
	display:inline-block;
	line-height: 1;

}
.webLINK li a:after {
	position: absolute;
	right:10px;
	top:16px;
	  content: '';/*何も入れない*/
  display: inline-block;
  width: 15px;/*画像の幅*/
  height: 15px;/*画像の高さ*/
  background-image: url("../img/common/link.png");
	background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
	
	
}

@media screen and (max-width: 767px) {
	

/*------------------  

実績 

------------------ */


.recordCATEGORY {
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-start;
	margin-bottom: 20px;
}
.recordCATEGORY li {
	width: 47%;
	text-align: center;
	border-bottom: 1px solid #fff;
	font-size: clamp(12px, 1.6vw,16px) ;
	margin: 0 5px;
	box-sizing: border-box;
}
.recordCATEGORY li a {
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
	display: block;
	
}




.recordLIST {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 30px;
}
.recordLIST .listitem {
	width: 45%;
	margin: 0 1.6%;
	margin-bottom: 20px;
}
.recordLIST .listitem figure {
	padding: 0;
	margin: 0;
	margin-bottom: 5px;
}
.recordLIST .listitem .cate {

}

.recordLIST .listitem .cate ul {
	display: flex;
text-align:center;
	flex-direction: column;
}
.recordLIST .listitem .cate ul li {
		padding: 5px 15px;
	line-height: 1;
	border: 1px solid #fff;
	font-size: clamp(10px, 1.2vw,12px) ;
	display:block;
	margin-bottom: 3px;
margin-right:3px
text-align:center;
width:100%;
}

.recordLIST .listitem p {
	font-size: clamp(12px, 1.4vw,14px) ;
	line-height: 1.4;
	
}


/*------------------  

実績詳細

------------------ */
.recordDETAIL {
	margin-top: -25px;
}
	.backBUTTON {
		margin-top: 10px;
	}
.backBUTTON a {
    border: 1px solid #fff;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
 font-size: clamp(14px, 1.6vw,16px) ;
    max-width: 130px;
    padding: 5px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.backBUTTON a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 1rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: translateY(-50%) rotate(-45deg);
}
.backBUTTON a:hover {
  background: #fff;
  color: #3f1341;
}
.backBUTTON a:hover:after {
	  border-top: solid 2px #3f1341;
  border-left: solid 2px #3f1341;
}

.postHEAD {

	padding: 25px;
	box-sizing: border-box;
	margin: 30px 0;
}
.postHEAD h2 {
	font-size: clamp(18px, 3.2vw,32px) ;
	line-height: 1.5;
	border-bottom: 1px solid  #632865;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.postHEAD .info {
	display: flex;
	flex-direction: column;
}
.postHEAD .info .left {
	margin-right: 0px;
	font-size: clamp(12px, 1.4vw,14px);
}
.postHEAD .info .right {
	
}
.postHEAD .info .right .cate {
	display: flex;
	margin-top: 10px;
}
.postHEAD .info .right .cate li {
	padding: 5px 15px;
	line-height: 1;
	border: 1px solid #fff;
	font-size: clamp(10px, 1.4vw,14px) ;
	display:inline-block;
	margin-bottom: 10px;
	margin-right: 10px;
}

.postCONTENT {
	padding-bottom: 50px;
}
.postCONTENT p {
	font-size: clamp(14px, 1.6vw,16px);
	font-family:"ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 500;
	margin-bottom: 16px;

}

.webLINK {
	margin: 25px 0;
}
.webLINK li {
		margin-bottom: 10px;
}
.webLINK li a {
	background: #fff;
	font-size: clamp(12px, 1.4vw,14px);
	 color: #3f1341;
	padding: 15px 50px;
	box-sizing: border-box;
	position: relative;
	display:inline-block;
	line-height: 1;

}
.webLINK li a:after {
	position: absolute;
	right:10px;
	top:16px;
	  content: '';/*何も入れない*/
  display: inline-block;
  width: 15px;/*画像の幅*/
  height: 15px;/*画像の高さ*/
  background-image: url("../img/common/link.png");
	background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
	
}
	
}


/*------------------  

ドクター

------------------ */


.doctorCATEGORY {
	display: flex;
	justify-content: center;
	margin-bottom: 100px;
}
.doctorCATEGORY li {
	width: 30%;
	text-align: center;
	border-bottom: 1px solid #fff;
	font-size: clamp(16px, 2.4vw,24px) ;
	margin: 0 10px;
}
.doctorCATEGORY li a {
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
	display: block;
	
}

.doctorCATETITLE  {
	background: #460d43;
	padding: 40px;
	box-sizing: border-box;
	font-size: clamp(24px, 4vw,40px) ;
	font-weight: bold;
	display: flex;
  justify-content: flex-end;
	margin-bottom: 50px;

}

.CATEGORYWRAP {
	margin-bottom: 100px;
}

.doctorLIST {
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	width: 80%;
	margin: auto;
}

.doctorLIST .listitem {
	width: 45%;
	margin-bottom: 40px;
}
.doctorLIST .listitem .name {
	font-size: clamp(16px, 2.2vw,22px) ;
	text-align: center;
	
}

.doctorLIST .listitem  figure {
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
}

.doctorBOX {
	
}




@media screen and (max-width: 767px) {
	
.doctorCATEGORY {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
.doctorCATEGORY li {
	width: 45%;
	text-align: center;
	border-bottom: 1px solid #fff;
	font-size: clamp(16px, 2.4vw,24px) ;
	margin: 0 10px;
}
.doctorCATEGORY li a {
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
	display: block;
	
}

.doctorCATETITLE  {
	background: #460d43;
	padding: 15px 20px;
	box-sizing: border-box;
	font-size: clamp(24px, 4vw,40px) ;
	font-weight: bold;
	display: flex;
  justify-content: flex-end;
	margin-bottom: 30px;

}

.CATEGORYWRAP {
	margin-bottom: 50px;
}

.doctorLIST {
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	width: 90%;
	margin: auto;
}

.doctorLIST .listitem {
	width: 47%;
	margin-bottom: 20px;
}
.doctorLIST .listitem .name {
	font-size: clamp(16px, 2.2vw,22px) ;
	text-align: center;
	
}

.doctorLIST .listitem  figure {
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
}


}


/*------------------  

ドクター 詳細

------------------ */

.doctorBOX {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

.doctorBOX .ph {
	width: 45%;
}
.doctorBOX .profile {
	width: 50%;
}
.doctorBOX .profile .block {
	border-bottom: 1px solid #3f1341;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
.doctorBOX .profile h2 {
	font-size: clamp(30px, 6vw,60px) ;
	font-weight: bold;
}

.kolclasss {
	background: #3f1341;
	color:#fff;
	padding: 10px 30px;
	box-sizing: border-box;
	font-size: clamp(16px, 2.2vw,24px) ;
	text-align: center;
	display: inline-block;
	margin-bottom: 40px;
}
.serviceLOGO {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.serviceLOGO figure {
	width: 49%;
}

.snsBOX {
	display: flex;
}
.snsBOX figure  {
	width: 28px;
	margin-right: 10px;
}


.doctorBOX .profile h3 {
	font-size: clamp(20px, 3vw,30px) ;
	font-weight: bold;
	position: relative;
	padding-left: 25px;
}


.doctorBOX .profile h3::before {
  content: "";
  width: 13px;
  height: 13px;
  background: #B18E27;
  border-radius: 10px;
  position: absolute;
  top:20px;
  left: 0px;
}
.doctorBOX .profile p {
font-family:"ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: clamp(13px, 1.6vw,16px) ;
}

.block02  {
	background: #3f1341;
	padding: 40px;
	box-sizing: border-box;
	margin-bottom: 50px;
}


@media screen and (max-width: 767px) {
	

.doctorBOX {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 30px;
}

.doctorBOX .ph {
	width: 70%;
	margin: auto;
	margin-bottom: 20px;
}
.doctorBOX .profile {
	width: 100%;
}
.doctorBOX .profile .block {
	border-bottom: 1px solid #3f1341;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.doctorBOX .profile h2 {
	font-size: clamp(30px, 6vw,60px) ;
	font-weight: bold;
	margin-bottom: 20px;
}

.kolclasss {
	background: #3f1341;
	color:#fff;
	padding: 10px 30px;
	box-sizing: border-box;
	font-size: clamp(16px, 2.2vw,24px) ;
	text-align: center;
	display: inline-block;
	margin-bottom: 20px;
}
.serviceLOGO {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.serviceLOGO figure {
	width: 49%;
}

.snsBOX {
	display: flex;
	justify-content: center;
}
.snsBOX figure  {
	width: 25px;
	margin-right: 10px;
}


.doctorBOX .profile h3 {
	font-size: clamp(20px, 3vw,30px) ;
	font-weight: bold;
	position: relative;
	padding-left: 25px;
}


.doctorBOX .profile h3::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #B18E27;
  border-radius: 10px;
  position: absolute;
  top:13px;
  left: 0px;
}
.doctorBOX .profile p {
font-family:"ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: clamp(13px, 1.6vw,16px) ;
}

.block02  {
	background: #3f1341;
	padding: 20px;
	box-sizing: border-box;
	margin-bottom: 30px;
}

}



.columnLIST li {
	background: #3f1341;
	padding: 20px;
	box-sizing: border-box;
	margin-bottom: 20px;
}
.columnLIST .wrap  {
	display: flex;
	justify-content:space-between;
}
.columnLIST .wrap .ph  {
	width: 22%;
}
.columnLIST .wrap .ph figure {
	
}
.columnLIST .wrap .ph figure img {
	width: 100%;
	height: 190px;
	object-fit: cover;
}

.columnLIST .wrap .text  {
	width: 75%;
}

.columnLIST .wrap .text h3  {
	font-size: clamp(16px, 2.2vw,24px) ;
	line-height: 1.4;
	margin-bottom: 20px;
font-family: "Noto Serif JP", serif;
}
.columnLIST .wrap .text p  {
	font-size: clamp(14px, 1.6vw,16px) ;
	line-height: 1.7;
	margin-bottom: 20px;
font-family: "Noto Sans JP", sans-serif;
}


@media screen and (max-width: 767px) {

.columnLIST li {
	background: #3f1341;
	padding: 20px;
	box-sizing: border-box;
	margin-bottom: 20px;
}
.columnLIST .wrap  {
	display: flex;
	justify-content:space-between;
}
.columnLIST .wrap .ph  {
	width: 22%;
}
.columnLIST .wrap .ph figure {
	
}
.columnLIST .wrap .ph figure img {
	width: 100%;
	height: 190px;
	object-fit: cover;
}

.columnLIST .wrap .text  {
	width: 75%;
}

.columnLIST .wrap .text h3  {
	font-size: clamp(16px, 2.2vw,24px) ;
	line-height: 1.4;
	margin-bottom: 20px;
}
.columnLIST .wrap .text p  {
	font-size: clamp(14px, 1.6vw,16px) ;
	line-height: 1.7;
	margin-bottom: 20px;
}


}

.recordSLIDE {
width:50%;
margin:auto;
margin-bottom:100px;
}


.singlePager__inner {
	display: flex;
	justify-content: center;
	font-size: clamp(20px, 2.2vw,24px) ;
	
}

.singlePager__prev {
	margin-right: 5%;
}
.singlePager__next {
	margin-left: 5%;
}

.archiveTITLE {
text-align:center;
padding:0;
margin:0;
	font-size: clamp(20px, 3.2vw,32px) ;
}
.cTITLE {
text-align:center;
	font-size: clamp(14px, 1.6vw,16px) ;
}

.pcimg {
display:block;
}
.spimg {
display:none;
}

@media screen and (max-width: 767px) {

.recordSLIDE {
width:80%;
margin:auto;
margin-bottom:50px;
}
.c-page_ttl {
line-height:1.2;
}

.pcimg {
display:none;
}
.spimg {
display:block;
}
	
}


smb-spider-slider>.spider__dots[data-thumbnails=true]  {
  flex-wrap: nowrap;
}

.smb-spider-slider>.spider__dots[data-thumbnails=true] .spider__dot {
  flex: 1 !important;
  width: auto;
}

html {
    scroll-padding-top: 80px;
}


.mgtop {
margin-top:100px;
}
.ceotitle {
	font-size: clamp(30px, 5vw,48px) ;
margin-top:-20px;
}

@media screen and (max-width: 767px) {
.ceotitle {
	font-size: clamp(30px, 5vw,48px) ;
margin-top:-20px;
}
.mgtopup {
margin-top:0px !important;
}
}


/* ページネーション全体の余白 */
.record-pagination {
  margin: 40px 0;
  text-align: center;
}

/* 紫の帯＆横並び */
.record-pagination__list {
  display: inline-flex;
  align-items: center;
  gap: 24px;              /* 数字の間の余白 */
  list-style: none;
  margin: 0;
  padding: 10px 40px;
  background: #711a63;    /* お好みの紫に */
  border-radius: 0;       /* 完全な長方形にしたい場合 */
}

/* リストの中に入るリンク／テキスト共通 */
.record-pagination__list a,
.record-pagination__list span {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

/* 現在ページだけ下線 */
.record-pagination__list .page-numbers.current {
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}

/* 「…」部分も白文字に */
.record-pagination__list .page-numbers.dots {
  color: #fff;
}

/* ← → の大きさを少し強調したい場合 */
.record-pagination__list .prev,
.record-pagination__list .next {
  font-size: 20px;
}