@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: "Inter", serif;
  --ff_ja: "Noto Sans JP", 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: 300;
  font-size: clamp(14px, 1.6vw, 16px);
  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: 1000px;
  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;
  }
}

img {
  border-radius: 10px;
}

@media screen and (max-width: 750px) {
  body .is-layout-flex {
    flex-direction: column;
  }
}
/* -------------------------------
container
--------------------------------- */
.l_container {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: clamp(30px, 20%, 130px) 0;
}

.l_container_post {
  width: min(90%, 900px);
  margin: 0 auto;
  padding: clamp(30px, 20%, 130px) 0;
}

/* -------------------------------
header
--------------------------------- */
.l_header {
  width: 100%;
  padding: 0 40px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l_header .l_header_logo {
  width: 130px;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
@media screen and (max-width: 430px) {
  .l_header .l_header_logo {
    top: -5px;
    left: -10px;
    width: 100px;
  }
}
.l_header .l_header_logo a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l_header .l_header_hamburger {
  position: fixed;
  right: 40px;
  z-index: 999;
  cursor: pointer;
  width: 45px;
  height: 60px;
  text-align: center;
}
.l_header .l_header_hamburger p::after {
  content: "menu";
}
.l_header .l_header_hamburger .l_header_hamburger_box {
  display: flex;
  justify-content: space-between;
}
.l_header .l_header_hamburger .l_header_hamburger_box span {
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--cl_black);
  border-radius: 50%;
}
.l_header .l_header_hamburger.active p::after {
  content: "close";
}
.l_header .l_header_container {
  pointer-events: none;
  width: 450px;
  height: 100dvh;
  overflow-y: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 90px;
  padding: clamp(15px, 5vw, 55px);
  padding-top: 150px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  will-change: right, opacity;
}
@media screen and (max-width: 430px) {
  .l_header .l_header_container {
    width: 100%;
    gap: 80px;
  }
}
.l_header .l_header_container .l_header_nav_logo {
  width: clamp(180px, 15vw, 180px);
  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(25px, 2.8vw, 28px);
  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 {
  pointer-events: all;
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .l_header .l_header_container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.l_header .u_instagram {
  text-align: left;
  margin-top: 30px;
}
.l_header .u_instagram img {
  width: 35px;
  height: 35px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}

/* -------------------------------
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);
}
@media screen and (max-width: 750px) {
  .l_footer .l_footer_container {
    align-items: start;
  }
}
.l_footer .l_footer_container .l_footer_logoarea {
  padding: 10px 30px;
}
@media screen and (max-width: 750px) {
  .l_footer .l_footer_container .l_footer_logoarea {
    padding: 0;
  }
}
.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;
}
@media screen and (max-width: 750px) {
  .l_footer .l_footer_container .l_footer_navarea .l_footer_list {
    flex-direction: column;
    align-items: end;
    padding-bottom: 30px;
    gap: 5px;
  }
}
.l_footer .l_footer_container .l_footer_navarea .l_footer_list li {
  position: relative;
  color: var(--cl_black);
  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: right;
  display: block;
  font-size: 11px;
  color: var(--cl_black);
  opacity: 0.7;
  padding-bottom: 5px;
}

/* -------------------------------
button
--------------------------------- */
.c_button_viewmoreline {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  border-top: 1px solid var(--cl_black);
  border-bottom: 1px solid var(--cl_black);
  text-align: center;
  padding: 16px 0;
  color: var(--cl_black);
  letter-spacing: 0.2em;
  transition: all 0.3s;
  padding: 16px 50px 16px 60px;
}
.c_button_viewmoreline a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c_button_viewmoreline::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--cl_black);
  border-radius: 50%;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.c_button_viewmoreline:hover {
  letter-spacing: 0.35em;
  background: var(--cl_hover);
}
.c_button_viewmoreline:hover::before {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 30px;
  height: 1px;
}

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

/* -------------------------------
title
--------------------------------- */
.c_title_section {
  color: var(--cl_black);
  text-align: left;
  position: relative;
  margin-bottom: clamp(45px, 7vh, 75px);
  z-index: 3;
}
.c_title_section h2 {
  font-size: clamp(26px, 3.2vw, 32px);
  line-height: 1.2;
  letter-spacing: 0.5em;
  text-align: left;
  margin-bottom: 40px;
}

.c_title_archive {
  font-size: clamp(26px, 3.2vw, 32px);
  line-height: 1.2;
  letter-spacing: 0.5em;
  text-align: center;
  margin-bottom: 80px;
}

/* -------------------------------
slider
--------------------------------- */
.c_slider .splide__slide img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -------------------------------
post
--------------------------------- */
.c_post_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: 60px 35px;
  margin-bottom: 35px;
}
@media screen and (max-width: 500px) {
  .c_post_grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-gap: 35px 35px;
  }
}
.c_post_grid .c_post_grid_item {
  width: 100%;
  position: relative;
}
.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: 3/2;
  overflow: hidden;
  background: #ccc;
  border-radius: 10px;
}
.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_grid .c_post_grid_item .c_post_grid_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 500px) {
  .c_post_grid .c_post_grid_item .c_post_grid_box {
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
  }
}
.c_post_grid .c_post_grid_item .c_post_grid_box .c_post_grid_title {
  font-size: clamp(16px, 1.8vw, 18px);
  text-align: justify;
  letter-spacing: 0.2em;
  max-width: 350px;
}
.c_post_grid .c_post_grid_item .c_post_grid_box .c_post_grid_date_box {
  font-size: clamp(10px, 1.2vw, 12px);
  white-space: nowrap;
}

.c_post_list {
  margin-bottom: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .c_post_list {
    gap: 50px 20px;
  }
}
.c_post_list .c_post_list_item {
  position: relative;
  display: flex;
  transition: all 0.3s;
  width: 100%;
  gap: 30px;
}
.c_post_list .c_post_list_item .c_post_list_img {
  width: 370px;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 10px;
  overflow: hidden;
  background: #ccc;
}
.c_post_list .c_post_list_item .c_post_list_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s;
}
.c_post_list .c_post_list_item .c_post_list_box {
  width: 60%;
}
@media screen and (max-width: 750px) {
  .c_post_list .c_post_list_item .c_post_list_box {
    width: 100%;
  }
}
.c_post_list .c_post_list_item .c_post_list_date {
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.2em;
}
.c_post_list .c_post_list_item .c_post_list_category {
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.2em;
}
.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 .c_post_list_title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(16px, 1.8vw, 18px);
  letter-spacing: 0.2em;
  display: block;
  margin-top: 10px;
}
.c_post_list .c_post_list_item:hover .c_post_list_img img {
  transform: scale(1.1);
}
.c_post_list .c_post_list_item:hover .animation_underline::after {
  transform: scaleX(1);
  /* ホバー時にフル表示 */
}
@media screen and (max-width: 750px) {
  .c_post_list .c_post_list_item {
    flex-direction: column;
    gap: 5px;
  }
  .c_post_list .c_post_list_item .c_post_list_img {
    width: 100%;
  }
}

/* -------------------------------
cta
--------------------------------- */
.c_cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  height: 100%;
  background: var(--cl_white);
  border-radius: 10px;
  padding: 50px 30px;
}
.c_cta h3 {
  font-size: clamp(18px, 2vw, 20px);
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 20px;
}
.c_cta p {
  text-align: center;
}
.c_cta::after {
  content: "";
  display: inline-block;
  background-image: url(../img/bird04.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 90px;
  height: 60px;
  position: absolute;
  top: -58px;
  left: 0;
}
.c_cta::before {
  content: "";
  display: inline-block;
  background-image: url(../img/bird02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 110px;
  height: 125px;
  position: absolute;
  bottom: -55px;
  right: -40px;
}

/* -------------------------------
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: 25px;
  color: var(--cl_black);
}
.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_title {
  text-align: center;
  font-size: clamp(32px, 4.2vw, 42px);
  letter-spacing: 0.2em;
  line-height: 1.2;
  position: relative;
  margin: 80px 0;
}
.c_page_header_title::after {
  content: "";
  display: inline-block;
  background-image: url(..);
  background-size: cover;
  width: 1px;
  height: 30px;
  background: var(--cl_black);
  position: absolute;
  transform: translateX(-50%);
  bottom: -50px;
  left: 50%;
}

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

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;
  border-top: 1px solid var(--cl_black);
  padding: 20px 0;
}
.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;
}

.c_balloon {
  display: flex;
  align-items: flex-start;
  margin: 1.5em 0;
}
.c_balloon_right {
  flex-direction: row-reverse;
}
.c_balloon_icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 0.8em;
}
.c_balloon_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c_balloon_right .c_balloon_icon {
  margin-right: 0;
  margin-left: 0.8em;
}
.c_balloon_content {
  background: #ebebeb;
  padding: 0.8em 1em;
  border-radius: 12px;
  position: relative;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.6;
}
.c_balloon_content::before {
  content: "";
  position: absolute;
  top: 1em;
  border: 8px solid transparent;
}
.c_balloon_left .c_balloon_content::before {
  left: -16px;
  border-right-color: #ebebeb;
}
.c_balloon_right .c_balloon_content::before {
  right: -16px;
  border-left-color: #ebebeb;
}

/* -------------------------------
page > single（共通）
--------------------------------- */
.p_single .p_single_post_ttl {
  font-size: clamp(26px, 3.2vw, 32px);
  letter-spacing: 0.2em;
  margin-bottom: 35px;
}
.p_single .p_single_post_ttl a {
  display: block;
  font-size: clamp(14px, 1.6vw, 16px);
  position: relative;
  margin-left: 30px;
}
.p_single .p_single_post_ttl a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--cl_black);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
}
.p_single .p_single_thumbnail_img {
  aspect-ratio: 3/2;
}
.p_single .p_single_thumbnail_img img {
  width: 100%;
  height: 100%;
  /* 親のアスペクト比に合わせる */
  -o-object-fit: cover;
     object-fit: cover;
  /* 枠いっぱいに表示 */
  display: block;
  /* 下の余白を消す */
}
.p_single .p_single_detail {
  margin: 80px 0;
}
.p_single .p_single_detail ul {
  list-style: disc;
  list-style-position: inside;
  margin: 25px 0;
  background: #f4f4f4;
  padding: 20px 30px;
  border-radius: 10px;
}
.p_single .p_single_detail ol {
  list-style: decimal-leading-zero;
  list-style-position: inside;
  margin: 25px 0;
  background: #f4f4f4;
  padding: 20px 30px;
  border-radius: 10px;
}
.p_single .p_single_detail h2 {
  font-size: clamp(24px, 2.8vw, 28px);
  margin-top: 50px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.p_single .p_single_detail h3 {
  font-size: clamp(22px, 2.4vw, 24px);
  margin-top: 50px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.p_single .p_single_detail p {
  margin-bottom: 30px;
}
.p_single .p_single_detail p a {
  display: inline-block;
  border-bottom: 1px solid #333;
  padding-bottom: 3px;
  transition: opacity 0.5s ease-out;
}
.p_single .p_single_detail p a:hover {
  background: rgba(51, 51, 51, 0.0941176471);
}
.p_single .p_single_detail .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  width: 100%;
}
.p_single .p_single_detail .wp-block-separator {
  border-bottom: 1px dotted;
}
.p_single .p_single_detail .wp-block-image {
  aspect-ratio: 800/500;
  margin: 35px 0;
}
.p_single .p_single_detail .wp-block-image img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 800/500;
}
.p_single .p_single_detail .wp-block-quote {
  padding: 35px clamp(15px, 28vw, 22px);
  border: 1px solid var(--cl_black);
  position: relative;
  margin: 60px 0;
}
.p_single .p_single_detail .wp-block-quote::before {
  content: "";
  display: inline-block;
  background-image: url(../img/inyou_top.svg);
  background-size: cover;
  position: absolute;
  top: -15px;
  left: 25px;
  width: 35px;
  aspect-ratio: 1/0.748;
}
.p_single .p_single_detail .wp-block-quote::after {
  content: "";
  display: inline-block;
  background-image: url(../img/inyou_bottom.svg);
  background-size: cover;
  position: absolute;
  bottom: -15px;
  right: 25px;
  width: 35px;
  aspect-ratio: 1/0.748;
}
.p_single .p_single_detail .wp-block-quote p {
  margin-bottom: 0;
  padding-bottom: 10px;
  text-align: justify;
  font-size: clamp(18px, 2vw, 20px);
}
.p_single .p_single_detail .wp-block-quote p:last-of-type {
  border-bottom: 1px solid var(--cl_black);
  padding-bottom: 20px;
}
.p_single .p_single_detail .wp-block-quote cite {
  text-align: right;
  margin-top: 5px;
  color: var(--cl_darkgrey);
}

/* -------------------------------
page > single-works
--------------------------------- */
.p_single_works .p_single_detail_text {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .p_single_works .p_single_detail_text {
    flex-direction: column;
    margin-top: 0;
  }
}
.p_single_works .p_single_detail_text .p_single_information {
  flex: 1 1;
}
.p_single_works .p_single_detail_text .p_single_ttl {
  font-size: clamp(26px, 3.2vw, 32px);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.p_single_works .p_single_detail_text .p_single_meta {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 30px;
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 0.2em;
  padding: 0 15px 0 35px;
  border-left: 1px solid var(--cl_darkgrey);
  width: 240px;
}
@media screen and (max-width: 750px) {
  .p_single_works .p_single_detail_text .p_single_meta {
    width: 100%;
  }
}
.p_single_works .p_single_detail_text .p_single_meta span {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
}

/* -------------------------------
page > single-blog
--------------------------------- */
.p_single_blog .p_single_blog_meta {
  display: flex;
  gap: 10px;
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 0.2em;
}

/* -------------------------------
top > hero
--------------------------------- */
/* -------------------------------
top > slider
--------------------------------- */
.p_top_slider {
  margin-top: 200px;
  margin-bottom: 25px;
}
@media screen and (max-width: 750px) {
  .p_top_slider {
    margin-top: 10px;
  }
  .p_top_slider li {
    transform: scale(0.6);
  }
}
.p_top_slider .splide__track {
  overflow: initial;
}

.splide .splide__list {
  display: flex;
  align-items: center;
}
.splide .splide__list .slider_01 {
  width: 370px;
  height: 430px;
  margin-left: 30px;
}
@media screen and (max-width: 750px) {
  .splide .splide__list .slider_01 {
    margin-left: -100px;
  }
}
.splide .splide__list .slider_02 {
  width: 240px;
  height: 280px;
  margin-left: -70px;
  margin-top: 200px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .splide .splide__list .slider_02 {
    margin-left: -100px;
  }
}
.splide .splide__list .slider_02::after {
  content: "";
  display: inline-block;
  background-image: url(../img/bird01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 90px;
  height: 60px;
  position: absolute;
  top: -58px;
  left: 0;
}
.splide .splide__list .slider_03 {
  width: 240px;
  height: 160px;
  margin-left: -150px;
  margin-top: -300px;
}
@media screen and (max-width: 750px) {
  .splide .splide__list .slider_03 {
    margin-top: -220px;
    margin-left: -200px;
  }
}
.splide .splide__list .slider_04 {
  width: 380px;
  height: 280px;
  margin-left: 30px;
}
@media screen and (max-width: 750px) {
  .splide .splide__list .slider_04 {
    margin-left: -160px;
  }
  .splide .splide__list .slider_04::after {
    left: 65px !important;
  }
}
.splide .splide__list .slider_04::after {
  content: "";
  display: inline-block;
  background-image: url(../img/bird02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 110px;
  height: 125px;
  position: absolute;
  top: -165px;
  left: 0;
}
.splide .splide__list .slider_05 {
  width: 380px;
  height: 280px;
  margin-left: -70px;
  margin-top: 180px;
  z-index: 5;
}
@media screen and (max-width: 750px) {
  .splide .splide__list .slider_05 {
    margin-left: -200px;
  }
}
.splide .splide__list .slider_06 {
  width: 240px;
  height: 280px;
  margin-left: -70px;
  margin-top: -80px;
  margin-right: 50px !important;
}
@media screen and (max-width: 750px) {
  .splide .splide__list .slider_06 {
    margin-top: -190px;
    margin-left: -200px;
  }
}
.splide .splide__list .slider_07 {
  width: 240px;
  height: 260px;
  margin-left: 15px;
  margin-top: 100px;
}
@media screen and (max-width: 750px) {
  .splide .splide__list .slider_07 {
    margin-left: -200px;
  }
}

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

/* -------------------------------
top > about
--------------------------------- */
.p_top_about {
  position: relative;
  width: 100%;
  max-width: 2460px;
}
.p_top_about .p_top_about_container {
  gap: 6vw;
}
.p_top_about .p_top_about_container .p_top_about_container_box .p_top_about_txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.p_top_about .p_top_about_container .p_top_about_container_box .p_top_about_txt p {
  text-align: left;
  line-height: 2.5;
  font-size: clamp(13px, 1.5vw, 15px);
}
.p_top_about .p_top_about_container .p_top_about_container_box .p_top_about_txt::after {
  content: "";
  display: inline-block;
  background-image: url(../img/bird03.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 110px;
  height: 125px;
  position: absolute;
  top: -165px;
  right: 15%;
}
@media screen and (max-width: 750px) {
  .p_top_about .p_top_about_container .p_top_about_container_box .p_top_about_txt::after {
    width: 80px;
    height: 125px;
    top: -135px;
    right: 5%;
  }
}

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

/* -------------------------------
top > contact
--------------------------------- */
.p_top_contact {
  background: var(--cl_grey);
}

/* -------------------------------
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(24px, 2.8vw, 28px);
  letter-spacing: 0.2em;
}
.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(26px, 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
--------------------------------- */
.animation_underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.animation_underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  /* 線の太さ */
  background-color: currentColor;
  /* 文字と同じ色 */
  transform: scaleX(0);
  /* 最初は線を非表示（0倍） */
  transform-origin: left;
  /* 左から伸びる */
  transition: transform 0.3s ease;
  /* アニメーション速度 */
}
.animation_underline:hover::after {
  transform: scaleX(1);
  /* ホバー時にフル表示 */
}

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

.u_mt60 {
  margin-top: 60px !important;
}

.u_text_center {
  text-align: center;
}

.u_page_header_title {
  font-size: clamp(20px, 3vw, 30px) !important;
}

.u_break {
  display: inline;
}
@media (max-width: 768px) {
  .u_break {
    display: block;
  }
}

.u_instagram {
  text-align: right;
  display: block;
}
.u_instagram img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}/*# sourceMappingURL=style.css.map */