@charset "UTF-8";
/* -------------------------------
reset
--------------------------------- */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
  overflow-x: hidden;
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

p {
  margin-bottom: 10px;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* -------------------------------
base
--------------------------------- */
/* -------------------------------
mixin
--------------------------------- */
/* -------------------------------
color&font
--------------------------------- */
:root {
  --cl_black: #333;
  --cl_white: #fff;
  --cl_grey: #F2F2F2;
  --cl_darkgrey: #727272;
  --cl_hover: #c3c3c335;
  --ff_en: "Cormorant", serif;
  --ff_ja: "Shippori Mincho", serif;
  --ff_gothic: "Zen Kaku Gothic New", serif;
}

::-moz-selection {
  background: #5e5e5e;
  color: #fff;
}

::selection {
  background: #5e5e5e;
  color: #fff;
}

body {
  color: var(--cl_black);
  font-family: var(--ff_ja);
  font-weight: 400;
  font-size: clamp(13px, 1.5vw, 15px);
  letter-spacing: 0.05em;
  line-height: 2;
  position: relative;
  overflow-x: hidden;
}
body::after {
  content: "";
  display: block;
  background-image: url(../img/leaf.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 1500px;
  height: auto;
  aspect-ratio: 1/0.466;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  body::after {
    width: 700px;
  }
}

/* -------------------------------
container
--------------------------------- */
.l_container {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: clamp(30px, 10%, 60px) 0;
}

/* -------------------------------
header
--------------------------------- */
.l_header {
  width: 100%;
  padding-left: 40px;
}
.l_header .l_header_fixed_button {
  display: flex;
  align-items: center;
  gap: 45px;
  position: fixed;
  top: 50px;
  right: 40px;
  z-index: 100;
}
@media screen and (max-width: 430px) {
  .l_header .l_header_fixed_button {
    gap: 28px;
    top: 25px;
    right: 25px;
  }
}
.l_header .l_header_logo {
  width: 150px;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  position: fixed;
  top: 50px;
  left: 40px;
  z-index: 99;
}
@media screen and (max-width: 430px) {
  .l_header .l_header_logo {
    top: 20px;
    left: 20px;
    width: 100px;
  }
}
.l_header .l_header_logo a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l_header .l_hamburger {
  display: block;
  width: 45px;
  height: 45px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.l_header .l_hamburger span {
  display: block;
  height: 1px;
  background-color: #000;
  border-radius: 2px;
  position: relative;
}
.l_header .l_hamburger span::before, .l_header .l_hamburger span::after {
  display: block;
  height: 1px;
  position: absolute;
  transition-duration: 0.3s;
  transition-property: transform;
  width: 100%;
  background-color: #000;
}
.l_header .l_hamburger span::before {
  content: "";
  transform: translateY(-10px) rotate(0deg);
}
.l_header .l_hamburger span::after {
  content: "";
  transform: translateY(10px) rotate(0deg);
}
.l_header .l_hamburger.active span {
  background-color: transparent;
}
.l_header .l_hamburger.active span::before {
  transform: translateY(0) rotate(45deg);
}
.l_header .l_hamburger.active span::after {
  transform: translateY(0) rotate(-45deg);
}
.l_header .l_header_container {
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  padding: clamp(15px, 5vw, 55px);
  padding-top: 150px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
@media screen and (max-width: 430px) {
  .l_header .l_header_container {
    gap: 45px;
  }
}
.l_header .l_header_container .l_header_nav_logo {
  width: clamp(180px, 15vw, 250px);
  height: -moz-fit-content;
  height: fit-content;
}
.l_header .l_header_container .l_header_navigation .l_header_navigation_list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 430px) {
  .l_header .l_header_container .l_header_navigation .l_header_navigation_list {
    gap: 5px;
  }
}
.l_header .l_header_container .l_header_navigation .l_header_navigation_list .l_header_navigation_item {
  font-size: clamp(28px, 3.5vw, 35px);
  letter-spacing: 0.2em;
  position: relative;
}
.l_header .l_header_container .l_header_navigation .l_header_navigation_list .l_header_navigation_item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l_header .l_header_container .l_header_navigation .l_header_navigation_list .l_header_navigation_item span {
  font-size: clamp(12px, 1.6vw, 16px);
  display: inline-block;
  margin-left: 20px;
  letter-spacing: 0.1em;
}
.l_header .l_header_container.active {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 1200px) {
  .l_header .l_header_container {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.home header .l_header_logo {
  display: none;
}

/* -------------------------------
footer
--------------------------------- */
.l_footer {
  color: #fff;
  font-size: 15px;
  margin-top: 35px;
}
.l_footer .l_footer_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 30px 10px 10px 10px;
  border-top: 1px dotted var(--cl_grey);
}
.l_footer .l_footer_container .l_footer_logoarea {
  padding: 10px 30px;
}
.l_footer .l_footer_container .l_footer_logoarea .l_footer_logo {
  position: relative;
  width: 130px;
}
.l_footer .l_footer_container .l_footer_logoarea .l_footer_logo a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l_footer .l_footer_container .l_footer_navarea .l_footer_list {
  display: flex;
  gap: 30px;
}
.l_footer .l_footer_container .l_footer_navarea .l_footer_list li {
  position: relative;
  color: var(--cl_black);
  font-family: var(--ff_en);
  letter-spacing: 0.25em;
}
.l_footer .l_footer_container .l_footer_navarea .l_footer_list li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l_footer .l_footer_copylight {
  text-align: center;
  display: block;
  font-size: 11px;
  color: var(--cl_point);
  opacity: 0.7;
  padding-bottom: 5px;
}

@media screen and (max-width: 750px) {
  .l_footer_container {
    flex-direction: column;
    gap: 35px;
  }
  .l_footer_container .l_footer_list {
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
  }
}
/* -------------------------------
button
--------------------------------- */
.c_button_viewmoreline {
  position: relative;
  border-top: 1px solid var(--cl_black);
  border-bottom: 1px solid var(--cl_black);
  text-align: center;
  width: 250px;
  padding: 16px 0;
  color: var(--cl_black);
  font-family: var(--ff_en);
  letter-spacing: 0.2em;
  transition: all 0.3s;
  font-weight: 600;
}
.c_button_viewmoreline a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c_button_viewmoreline:hover {
  letter-spacing: 0.35em;
  background: var(--cl_hover);
}

.c_button_sns {
  display: inline-block;
  width: 30px;
  height: 30px;
}

/* -------------------------------
pan(パンくず)
--------------------------------- */
#pan {
  width: min(90%, 1200px);
  margin: 10px auto;
  font-size: 12px;
}

/* -------------------------------
title
--------------------------------- */
.c_title_section {
  color: var(--cl_black);
  text-align: center;
  position: relative;
  margin-bottom: clamp(45px, 3vh, 75px);
  z-index: 3;
}
.c_title_section h2 {
  font-size: clamp(30px, 3.2vw, 32px);
  font-weight: 600;
  font-family: var(--ff_en);
  line-height: 1.2;
  letter-spacing: 0.2em;
}
.c_title_section span {
  font-size: clamp(12px, 1.4vw, 14px);
  font-family: var(--ff_ja);
  letter-spacing: 0.2em;
}

/* -------------------------------
swriper
--------------------------------- */
.c_swiper .swiper-wrapper {
  display: flex;
  gap: 5vw;
  width: 100%;
}
.c_swiper .swiper-slide {
  width: 100%;
  aspect-ratio: 3/2;
  flex-shrink: 0;
  text-align: center;
}
.c_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

/* -------------------------------
post
--------------------------------- */
.c_post_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 35px;
}
.c_post_grid .c_post_grid_item {
  width: calc((100% - 2rem) / 3);
  position: relative;
}
@media (max-width: 768px) {
  .c_post_grid .c_post_grid_item {
    width: calc((100% - 1rem) / 2);
  }
}
.c_post_grid .c_post_grid_item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c_post_grid .c_post_grid_item:hover .c_post_grid_img img {
  transform: scale(1.1);
}
.c_post_grid .c_post_grid_item .c_post_grid_img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #ccc;
}
.c_post_grid .c_post_grid_item .c_post_grid_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-in-out;
}

.c_post_list {
  margin-bottom: 35px;
}
.c_post_list .c_post_list_item {
  border-bottom: 1px solid #ccc;
  padding: 20px 5px;
  position: relative;
  display: flex;
  gap: 25px;
  transition: all 0.3s;
}
.c_post_list .c_post_list_item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c_post_list .c_post_list_item:hover {
  background: rgba(195, 195, 195, 0.2078431373);
}
.c_post_list .c_post_list_item:last-of-type {
  border-bottom: none;
}
.c_post_list .c_post_list_item .c_post_list_title {
  font-size: clamp(13px, 1.5vw, 15px);
}

/* -------------------------------
cta
--------------------------------- */
.c_cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  height: 100%;
  background: var(--cl_grey);
  padding: 50px 30px;
}
.c_cta p {
  text-align: center;
}
.c_cta ul {
  display: flex;
  align-items: center;
}
.c_cta ul .c_button_sns {
  margin: 20px 0;
}

/* -------------------------------
component > page header
--------------------------------- */
.c_page_header {
  margin-top: 180px;
}
@media screen and (max-width: 750px) {
  .c_page_header {
    margin-top: 130px;
  }
}
.c_page_header .c_page_header_wrap {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--cl_black);
  color: var(--cl_black);
}
.c_page_header .c_page_header_wrap .c_page_header_title {
  font-size: clamp(35px, 4.2vw, 42px);
  font-family: var(--ff_en);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.2;
}
.c_page_header .c_page_header_wrap .c_page_header_subtitle {
  font-family: var(--ff_ja);
  letter-spacing: 0.2em;
}
.c_page_header .c_page_header_wrap .c_page_meta {
  display: flex;
  gap: 20px;
  font-size: clamp(11px, 1.3vw, 13px);
  margin-top: 8px;
}

.c_page_header_pan {
  width: min(90%, 1200px);
  margin: 10px auto;
  font-size: 12px;
}

body.single .c_page_header_title {
  font-family: var(--ff_ja) !important;
}

/* -------------------------------
component > pagination
--------------------------------- */
.c_pagination {
  display: flex;
  justify-content: center;
  margin: 25px 0;
  gap: 8px;
}
.c_pagination .page-numbers {
  display: inline-block;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cl_point);
}
.c_pagination .page-numbers.current {
  text-decoration: underline;
}
.c_pagination .next.page-numbers,
.c_pagination .prev.page-numbers {
  border: none;
}

.archive_prev {
  display: inline-block;
  border: 1px solid var(--cl_point);
  color: var(--cl_point);
  padding: 10px 20px;
  transition: all 0.3s;
}
.archive_prev:hover {
  opacity: 0.55;
}

.c_navigation_detail {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.c_navigation_detail .c_navigation_detail_prev a,
.c_navigation_detail .c_navigation_detail_allview a,
.c_navigation_detail .c_navigation_detail_post a {
  border: 1px solid var(--cl_black);
  display: inline-block;
  padding: 10px 20px;
}

/* -------------------------------
page > single・detail
--------------------------------- */
.p_single_detail {
  font-family: var(--ff_gothic) !important;
}
.p_single_detail .wp-block-image img {
  display: block;
  margin: 30px 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 900px;
}
.p_single_detail h2 {
  font-size: clamp(22px, 2.4vw, 24px);
  margin: 30px 0;
  letter-spacing: 0.1em;
}
.p_single_detail h3 {
  font-size: clamp(16px, 1.8vw, 18px);
  margin: 1rem 0;
  letter-spacing: 0.1em;
}
.p_single_detail p {
  margin-bottom: 10px;
  line-height: 1.8;
  min-height: 35px;
  font-size: clamp(14px, 1.6vw, 16px);
}
.p_single_detail ul,
.p_single_detail ol {
  padding-left: 1.2em;
  list-style: revert;
  list-style-position: inside;
  margin: 10px 0;
}
.p_single_detail .wp-block-separator {
  margin: 50px 0;
  border: none;
  height: 1px;
  background-color: var(--cl_grey);
}

@media screen and (max-width: 620px) {
  figure.wp-block-gallery.has-nested-images {
    flex-direction: column;
  }
  .wp-block-image {
    width: 100% !important;
  }
}
/* -------------------------------
top > hero
--------------------------------- */
.p_top_hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 55px;
  padding: clamp(30px, 10%, 60px) 0;
  padding-top: 180px !important;
}
@media screen and (max-width: 430px) {
  .p_top_hero {
    padding-top: 120px !important;
  }
}
.p_top_hero .p_top_header_logo {
  width: 180px;
  position: relative;
}
@media screen and (max-width: 430px) {
  .p_top_hero .p_top_header_logo {
    width: 130px;
  }
}
.p_top_hero .p_top_header_logo a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p_top_hero .p_top_menu {
  max-width: 1920px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
}
.p_top_hero .p_top_menu li {
  position: relative;
  letter-spacing: 0.25em;
}
.p_top_hero .p_top_menu li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 999px) {
  .p_top_hero .p_top_menu {
    display: none;
  }
}
.p_top_hero .p_top_swiper {
  width: 100%;
  margin: 100px auto;
}
@media screen and (max-width: 430px) {
  .p_top_hero .p_top_swiper {
    margin: 30px auto;
  }
}
.p_top_hero .p_top_swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.p_top_hero .p_top_swiper .swiper-slide {
  max-width: 450px;
  aspect-ratio: 1;
}
.p_top_hero .p_top_swiper .swiper-slide:nth-child(odd) {
  margin-top: -40px;
}
.p_top_hero .p_top_swiper .swiper-slide:nth-child(even) {
  margin-top: 40px;
}
@media screen and (max-width: 999px) {
  .p_top_hero .p_top_swiper .swiper-slide {
    max-width: 300px;
  }
  .p_top_hero .p_top_swiper .swiper-slide:nth-child(odd) {
    margin-top: -20px;
  }
  .p_top_hero .p_top_swiper .swiper-slide:nth-child(even) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 430px) {
  .p_top_hero .p_top_swiper .swiper-slide {
    max-width: 250px;
  }
}

/* -------------------------------
top > about
--------------------------------- */
.p_top_about {
  position: relative;
}
.p_top_about .p_top_about_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6vw;
}
.p_top_about .p_top_about_container .p_top_about_img {
  width: 50%;
  max-width: 330px;
  aspect-ratio: 1/1;
  overflow: hidden;
  -o-object-position: center;
     object-position: center;
}
.p_top_about .p_top_about_container .p_top_about_img img {
  width: 100%;
}
.p_top_about .p_top_about_container .p_top_about_txt {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.p_top_about .p_top_about_container .p_top_about_txt p {
  text-align: left;
  line-height: 2.3;
  font-size: clamp(13px, 1.5vw, 15px);
  max-width: 730px;
}

@media screen and (max-width: 999px) {
  .p_top_about {
    display: flex;
    flex-direction: column;
  }
  .p_top_about .c_title_section {
    text-align: left;
  }
  .p_top_about .p_top_about_container {
    display: contents;
  }
  .p_top_about .p_top_about_container .p_top_about_img,
  .p_top_about .p_top_about_container .p_top_about_txt {
    width: 100%;
    max-width: 100%;
  }
  .p_top_about .p_top_about_container .p_top_about_img {
    max-width: 200px;
    margin-left: auto;
    order: -1;
    margin-bottom: 35px;
  }
  .p_top_about .p_top_about_container .p_top_about_txt .c_button_viewmoreline {
    margin-left: auto;
    margin-right: auto;
  }
}
/* -------------------------------
top > service
--------------------------------- */
.p_top_service .p_top_service_img {
  display: flex;
  gap: 1rem;
}
.p_top_service .p_top_service_img li {
  width: calc((100% - 2rem) / 3);
  overflow: hidden;
  aspect-ratio: 1/1;
}
.p_top_service .p_top_service_img li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .p_top_service .p_top_service_img li {
    width: 100%;
  }
  .p_top_service .p_top_service_img li:last-of-type {
    display: none;
  }
}
.p_top_service .p_top_service_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p_top_service .p_top_service_txt p {
  margin-top: 55px;
  text-align: center;
}

/* -------------------------------
top > works
--------------------------------- */
.p_top_works .c_button_viewmoreline {
  margin-right: auto;
  margin-left: auto;
}

/* -------------------------------
top > blog
--------------------------------- */
.p_top_blog .c_button_viewmoreline {
  margin: 0 auto;
}

/* -------------------------------
top > contact
--------------------------------- */
/* -------------------------------
contact
--------------------------------- */
.p_contact .grecaptcha-badge {
  display: none;
}
.p_contact .p_contact_grecaptcha_txt {
  font-size: 11px;
}
.p_contact .p_contact_asterisk {
  color: #bd1b1b;
  font-size: 14px;
}
.p_contact .p_contact_form_container {
  margin: 35px auto;
  margin-bottom: 0;
  text-align: left;
}
.p_contact .p_contact_form_container .smf-form--letter .smf-item__col--label {
  padding-bottom: 10px;
}
.p_contact .p_contact_form_container .smf-item__label__text {
  display: inline-block;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 500;
  color: var(--cl_black);
  text-align: left;
  position: relative;
}
.p_contact .p_contact_form_container .smf-item:has([data-validations~=required]) .smf-item__label__text::after {
  position: absolute;
  content: "必須";
  color: var(--cl_white);
  font-family: var(--ff_gothic);
  background-color: #bd1b1b;
  font-size: 11px;
  margin-left: 5px;
  display: inline-block;
  line-height: 1;
  padding: 2px 5px 5px 5px;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
}
.p_contact .p_contact_form_container .smf-text-control__control,
.p_contact .p_contact_form_container textarea,
.p_contact .p_contact_form_container select {
  border: none;
}
.p_contact .p_contact_form_container .smf-select-control {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  overflow: hidden;
}
.p_contact .p_contact_form_container .smf-select-control::after {
  border: 2px solid var(--cl_black);
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: var(--cl_black);
  border-right-width: 2px;
  border-right-style: solid;
  border-right-color: var(--cl_black);
  border-right: 0;
  border-top: 0;
  content: " ";
  display: block;
  height: 0.5em;
  pointer-events: none;
  position: absolute;
  transform: rotate(-45deg);
  transform-origin: center;
  width: 0.5em;
  margin-top: -0.375em;
  right: 1.5em;
  top: 50%;
  z-index: 4;
}
.p_contact .p_contact_form_container select {
  width: 350px;
  background: var(--cl_grey);
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}
.p_contact .p_contact_form_container input,
.p_contact .p_contact_form_container textarea {
  background: var(--cl_grey);
  padding: 10px 15px;
  border-radius: 5px;
  width: 100%;
}
.p_contact .p_contact_form_container textarea {
  resize: none;
  min-height: 280px;
}
.p_contact .p_contact_form_container .smf-action .smf-button-control__control {
  position: relative;
  border-top: 1px solid var(--cl_black);
  border-bottom: 1px solid var(--cl_black);
  text-align: center;
  width: 250px;
  margin: 15px auto;
  padding: 16px 0;
  color: var(--cl_black);
  letter-spacing: 0.2em;
  transition: all 0.3s;
}
.p_contact .p_contact_form_container .smf-action .smf-button-control__control a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p_contact .p_contact_form_container .smf-action .smf-button-control__control:hover {
  letter-spacing: 0.35em;
  background: var(--cl_hover);
}
.p_contact .p_contact_form_container .form_ok_mes {
  padding: 35px 15px;
  background: var(--cl_grey);
  border-radius: 8px;
  font-size: clamp(14px, 1.6vw, 16px);
  text-align: center;
}
.p_contact .smf-action .smf-button-control__control {
  border: none;
  border-radius: none !important;
  --_border-radius: none !important;
}
.p_contact .contact_content .form_container .smf-action .smf-button-control__control:hover,
.p_contact .smf-action .smf-button-control__control:hover,
.p_contact .smf-action .smf-button-control__control {
  background: transparent;
  border-radius: none;
}

/* -------------------------------
page > about
--------------------------------- */
.p_about .p_about_title {
  margin-bottom: 30px;
  line-height: 1;
  color: var(--cl_black);
  font-size: clamp(26px, 2.8vw, 28px);
}
.p_about p {
  line-height: 2.2;
  font-size: clamp(14px, 1.6vw, 16px);
}
.p_about .hr {
  border-bottom: 1px dotted #555;
  margin: 50px 0;
}
.p_about .p_about_love {
  background: var(--cl_darkgrey);
  color: #fff;
  font-size: 15px;
  padding: 0 10px;
  display: inline-block;
  margin-bottom: 5px;
}

/* -------------------------------
page > service
--------------------------------- */
.p_service .p_service_category_box {
  margin: 35px 0;
  display: flex;
  gap: 30px;
}
.p_service .p_service_category_box .p_service_category_title {
  font-family: var(--ff_en);
  font-size: clamp(30px, 3.2vw, 32px);
}
.p_service .p_service_category_box .p_service_graphic_box,
.p_service .p_service_category_box .p_service_web_box {
  text-align: center;
  width: 50%;
  border: 1px solid var(--cl_black);
  padding: 30px;
}
@media screen and (max-width: 750px) {
  .p_service .p_service_category_box .p_service_graphic_box,
  .p_service .p_service_category_box .p_service_web_box {
    padding: 15px;
  }
}
@media screen and (max-width: 750px) {
  .p_service .p_service_category_box {
    flex-direction: column;
  }
  .p_service .p_service_category_box .p_service_graphic_box,
  .p_service .p_service_category_box .p_service_web_box {
    text-align: center;
    width: 100%;
  }
}
.p_service .p_service_price {
  padding: clamp(30px, 10%, 60px) 0;
  padding-bottom: 0;
}
.p_service .p_service_price .p_service_price_ttl {
  font-family: var(--ff_en);
  margin-bottom: 30px;
}
.p_service .p_service_price .p_service_price_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 100px;
}
@media screen and (max-width: 750px) {
  .p_service .p_service_price .p_service_price_list {
    margin-bottom: 20px;
  }
}
.p_service .p_service_price .p_service_price_list h3 {
  font-family: var(--ff_en);
}
.p_service .p_service_price .p_service_price_list .p_service_price_item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 750px) {
  .p_service .p_service_price .p_service_price_list .p_service_price_item {
    flex-direction: column;
  }
}
.p_service .p_service_price .p_service_price_list .p_service_price_item .p_service_price_img {
  aspect-ratio: 1/1;
}
@media screen and (max-width: 750px) {
  .p_service .p_service_price .p_service_price_list .p_service_price_item .p_service_price_img {
    max-width: 250px;
  }
}
.p_service .p_service_price .p_service_price_list .p_service_price_item .p_service_price_img img {
  width: 100%;
  max-width: 350px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_service .p_service_price .p_service_price_list .p_service_price_item .p_service_price_txt {
  width: 60%;
}
@media screen and (max-width: 750px) {
  .p_service .p_service_price .p_service_price_list .p_service_price_item .p_service_price_txt {
    width: 100%;
  }
}
.p_service .p_service_price .p_service_price_list .p_service_price_item .p_service_price_txt .p_service_price_title {
  margin-bottom: 15px;
  font-size: clamp(22px, 2.4vw, 24px);
}
.p_service .p_service_price .p_service_price_list .p_service_price_item .p_service_price_txt span {
  display: inline-block;
  margin: 10px 5px;
}
.p_service .p_service_price .p_service_price_list .p_service_price_item .p_service_price_txt .p_service_price_price {
  font-size: clamp(18px, 2vw, 20px);
  text-decoration: underline;
}
.p_service .p_service_intro {
  padding-top: 80px;
  display: flex;
  gap: 5vw;
}
@media screen and (max-width: 750px) {
  .p_service .p_service_intro {
    flex-direction: column-reverse;
  }
}
.p_service .p_service_intro .p_service_intro_img {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media screen and (max-width: 750px) {
  .p_service .p_service_intro .p_service_intro_img {
    align-items: start;
  }
}
.p_service .p_service_intro .p_service_intro_img .img_01 {
  width: 100%;
  max-width: 375px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 430px) {
  .p_service .p_service_intro .p_service_intro_img .img_01 {
    max-width: 270px;
  }
}
.p_service .p_service_intro .p_service_intro_img .img_02 {
  border: 5px solid #ffffff;
  max-width: 340px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -150px;
  position: relative;
  right: -50px;
}
@media screen and (max-width: 430px) {
  .p_service .p_service_intro .p_service_intro_img .img_02 {
    max-width: 250px;
    margin-top: -85px;
    position: relative;
    right: -130px;
  }
}
.p_service .p_service_intro .p_service_intro_txt {
  width: 60%;
}
@media screen and (max-width: 750px) {
  .p_service .p_service_intro .p_service_intro_txt {
    width: 100%;
  }
}

/* -------------------------------
state
--------------------------------- */
.is_fadein > * {
  opacity: 0;
  transform: translateY(30px);
}

.is_scrollTrigger {
  opacity: 0;
  transform: translateY(30px);
}

/* -------------------------------
animation
--------------------------------- */
/* -------------------------------
utility
--------------------------------- */
.u_mt35 {
  margin-top: 35px !important;
}

.u_text_center {
  text-align: center;
}/*# sourceMappingURL=style.css.map */