@charset "UTF-8";
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* foundation _base
*--------------------------------------*/
/*--------------------------------------*
* foundation _variable
*--------------------------------------*/
/*カラー設定*/
:root {
  --color_base: #F0F0F0;
  --color_main: #484848;
  --color_accent: #089549;
  --color_caution: #A3050D;
  --color_red: #5B0000;
  --color_orange: #FFA701;
  --color_blue: #1474BA;
  --color_gray: #6A6A6A;
  --color_gray2: #D9D9D9;
  --color_black: #333;
  --color_black2: #292929;
  --color_white: #fff;
  --color_main-transparent: rgba(163, 5, 13, 0.8);
}

:root {
  --font_en: "Josefin Sans", "Noto Sans JP",sans-serif;
  --font_jp: 
  -apple-system, 
  BlinkMacSystemFont,
  "Segoe UI", 
  "Helvetica Neue", 
  "Helvetica",
  "Hiragino Kaku Gothic ProN", 
  "Hiragino Sans",
  "Noto Sans JP",
  "Yu Gothic UI", 
  "Meiryo",
  sans-serif;
}

/*サイズー設定*/
:root {
  --size:0.8rem;
  --size2:calc( var(--size) * 2 );
  --size3:calc( var(--size) * 3 );
  --size4:calc( var(--size) * 4 );
  --size5:calc( var(--size) * 5 );
  --size6:calc( var(--size) * 6 );
  --size7:calc( var(--size) * 7 );
  --size8:calc( var(--size) * 8 );
  --size9:calc( var(--size) * 9 );
  --size10:calc( var(--size) * 10 );
  --size11:calc( var(--size) * 11 );
  --size12:calc( var(--size) * 12 );
  --size13:calc( var(--size) * 13 );
  --size14:calc( var(--size) * 14 );
  --size15:calc( var(--size) * 15 );
  --size16:calc( var(--size) * 16 );
  --size17:calc( var(--size) * 17 );
  --size18:calc( var(--size) * 18 );
  --size19:calc( var(--size) * 19 );
  --size20:calc( var(--size) * 20 );
}

/*ブレークポイント設定*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

body {
  /* background-color: #FFA701; */
  background-color: #FFF;
  color: #333;
  font-size: 1.6rem;
  /*letter-spacing: 0.06rem;
  line-height: 1.6;*/
  line-height: 2;
  letter-spacing: 0.12rem;
  /*font-family: "YakuHanJP_Narrow", "Noto Sans JP", sans-serif;*/
  font-family:
  -apple-system, 
  BlinkMacSystemFont,
  "Segoe UI", 
  "Helvetica Neue", 
  "Helvetica",
  "Hiragino Kaku Gothic ProN", 
  "Hiragino Sans",
  "Noto Sans JP",
  "Yu Gothic UI", 
  "Meiryo",
  sans-serif;
  ;
  min-width: 350px;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  /* text-rendering: optimizeSpeed; */
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  color: #333;
  text-decoration: none;
  transition: 0.5s;
}
a:hover {
  opacity: 0.8;
}
a:hover img {
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

/*--------------------------------------*
* layout
*--------------------------------------*/
/*--------------------------------------*
* layout _header
*--------------------------------------*/
.l-header {
  width: 100%;
  padding: 2rem;
  /* position: sticky; */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.l-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.l-header__logo {
  display: inline-block;
  max-width: 10%;
  width: 120px;
}
.l-header__lists {
  display: flex;
  justify-content: space-between;
}
.l-header__list a {
  display: block;
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
  font-family: var(--font_jp);
  position: relative;
  letter-spacing: 0.12rem;
  line-height: 1;
}
.l-header__list a:hover {
  color: #333;
}
.l-header__list a.current {
  position: relative;
}
.l-header__list a.current::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--color_main);
  position: absolute;
  top: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%) rotate(-45deg);
}
.l-header__list__contact {
  /* border: solid 1px var(--color_black); */
  border-radius: 100px;
  position: relative;
  transform: translateY(-2px);
  margin-left: 2rem;
  padding-left: 2rem !important;
}
.l-header__list .l-header__list .l-header__list__contact.current::before {
  content: none;
}
.l-header__list__contact.contact-current {
  background-color: var(--color_orange);
  color: var(--color_white);
}
.l-header__list__contact.contact-current::before {
  content: none;
}
.l-header__list__contact.contact-current:hover {
  color: var(--color_white);
}
.l-header__hamburger {
  display: none;
  position: relative;
  z-index: 1000;
  width: 6rem;
  height: 34px;
  cursor: pointer;
  margin-left: 2rem;
}
.l-header__hamburger span {
  display: inline-block;
  transition: all 0.5s;
  position: absolute;
  right: 0px;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.l-header__hamburger span:nth-of-type(1) {
  top: 12px;
}
.l-header__hamburger span:nth-of-type(2) {
  top: 24px;
}
.l-header__hamburger small {
  position: absolute;
  bottom: 0;
  color: #089549;
  bottom: -9px;
}
.l-header__hamburger.active span {
  /*.activeクラス追加後*/
  background-color: #fff;
}
.l-header__hamburger.active span:nth-of-type(1) {
  top: 12px;
  right: 12px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.l-header__hamburger.active span:nth-of-type(2) {
  top: 24px;
  right: 12px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
.l-header__hamburger.active small {
  color: #fff;
}
.l-header__hamburger-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  transition: all 0.5s;
  opacity: 0;
  background: radial-gradient(circle, rgb(51, 51, 51) 0%, rgb(0, 0, 0) 100%);
}
.l-header__hamburger-nav ul {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.l-header__hamburger-nav li a {
  color: #fff;
  display: block;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.l-header__hamburger-nav.active {
  z-index: 999;
  opacity: 1;
  width: 100%;
}
.l-header__hamburger-nav.active ul {
  display: block;
}
@media (max-width: 800px) {
  .l-header {
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    padding: 1rem;
  }
  .l-header__content {
    align-items: center;
  }
  .l-header__logo {
    max-width: 40%;
  }
  .l-header__list:not(:last-child) {
    display: none;
  }
  .l-header__hamburger {
    display: none;
  }
  .l-header-nav ul {
    text-align: left;
  }
}

/*--------------------------------------*
* layout _footer
*--------------------------------------*/
.l-footer__main {
  background-color: var(--color_black2);
  padding: var(--size10) 0;
  border-radius: 30px 30px 0 0;
  position: relative;
}
/* 
.l-footer__main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: var(--color_main);
  z-index: -1;
} */

.l-footer__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size6);
}

.l-footer__logo,
.l-footer__insta {
  display: inline-block;
}

.l-footer__logo{
  width: 160px;
}

.l-footer__list {
  display: flex;
  gap: var(--size3);
}
.l-footer__list li > a {
  color: var(--color_white);
}
@media (max-width: 800px) {
  .l-footer__list {
    flex-direction: column;
    gap: var(--size2);
  }
  .l-footer__list li {
    text-align: center;
  }
}


.l-footer__copyright {
  display: none;
}

.l-footer .c-section.-black{
  display: none;
}

.l-footer__sns{
  display: flex;
  gap: 20px;
}

/*--------------------------------------*
* object layout _fv
*--------------------------------------*/
.l-fv {
  margin: 0% 0% 0% 5%;
  border-radius: 10px;
}
.l-fv__content {
  position: relative;
}
.l-fv__text {
    font-weight: 500;
    font-style: normal;
    color: #fff;
    text-shadow: #acacac 0px 0 5px;
    position: absolute;
    bottom: 10%;
    left: 5%;
    transform: translate(0px, -50%);
    line-height: 1.25;
    letter-spacing: 0.06rem;
    /* max-width: 520px;
    width: 90%; */
}
.l-fv__text h1 {
  font-size: clamp(4rem, 8vw, 8rem);

}
.l-fv__text > p {
  padding-top: 16px;
}

.l-fv-slider-slider img {
  width: 100%;
  height: auto; /* 縦横比を維持するために自動的に計算された高さを使用します */
  max-height: 100%;
}

@media (max-width: 800px) {
  .l-fv__content {
    position: relative;
  }
  .l-fv__text {
    text-shadow: none !important;
  }
  .l-fv__text h1 p {
    margin-bottom: 1rem;
  }
  .l-fv__news {
    display: none;
  }
}

/*
main{
  position: relative;
}


@include breakpoint(tab-s) {
  main::before{
    top: 350px;
    height: 90vh;
  }
  main::after{
    height: 90vh;
  }
}
*/
/*--------------------------------------*
* object layout _subfv
*--------------------------------------*/
.l-subfv {
  position: relative;
}
.l-subfv__img {
  background-size: cover;
  background-position: left;
  background-attachment: unset;
  padding-top: 90vh;
  position: relative;
}
.l-subfv__img.-lp {
  background-image: url(../../../../make2024/assets/image/lp/mv.jpg);
}

@media (max-width: 640px) {
  .l-subfv__img.-lp {
  background-image: url(../../../../make2024/assets/image/lp/mv_sp.jpg);
  background-position: center center;
  }
}
.l-subfv__content {
 position: absolute;
 top: 50%;
 right: 6%;
 transform: translate(0, -50%);
 width: 55%;
 display: flex;
 flex-direction: column;
 gap: 0.5rem;
}
.l-subfv__content img{
  width: 100%;
}

.l-subfv__content p img{
  width: 100%;
  padding: 0 1.5rem;
}

.l-subfv__content h1:hover{
  transform: scale(1.025);
  opacity: 1 !important;
}

.l-subfv__content a:hover img{
  opacity: 1 !important;
}


@media (max-width: 800px) {

  .l-subfv__img {
    padding-top: 50rem;
  }

  .l-subfv__content {
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {

  .l-subfv__img::before {
    content: ""; /* 擬似要素を有効化 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, white -12%, transparent 80%);
  z-index: 1; /* 擬似要素を元の背景より上に配置 */
  pointer-events: none;
  background-position: 4%;
  }
  .l-subfv__content {
    top: auto;
    bottom: 3rem;
    left: 50%;
    right: auto;
    transform: translate(-50%,0);
    width: 70%;
    min-width: 300px;
    z-index: 10;
  }
}

/*--------------------------------------*
* object layout _post
*--------------------------------------*/
.l-post__content {
  display: flex;
  flex-wrap: wrap;
}
.l-post__main {
  width: 70%;
}
.l-post__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*li {
    width: 47.5%;
    margin-bottom: 2rem;
  }*/
}
.l-post__heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 4rem;
  font-weight: bold;
  position: relative;
  color: #333;
  line-height: 1;
  padding-left: 2rem;
}
.l-post__heading::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 55%;
  transform: translate(0%, -50%);
  background: #089549;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.l-post__sidebar {
  width: 30%;
  padding-left: 5%;
}
@media (max-width: 1080px) {
  .l-post__main {
    width: 60%;
  }
  .l-post__sidebar {
    width: 40%;
  }
}
@media (max-width: 800px) {
  .l-post__main, .l-post__sidebar {
    width: 100%;
  }
  .l-post__main {
    margin-bottom: 4.5rem;
  }
  .l-post__sidebar {
    padding-left: 0;
  }
  .l-post__heading {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------*
* layout _pagenavi
*--------------------------------------*/
.l-pagenavi {
  /*padding-top: 8rem;*/
  padding-bottom: 8rem;
}
.l-pagenavi ul {
  border: solid 1px #333;
  border-radius: 5px;
  display: flex;
  justify-content: end;
}
.l-pagenavi ul li {
  width: 33.333333%;
  text-align: center;
  border-left: solid 2px #fff;
}
.l-pagenavi ul li:nth-of-type(1) {
  border-left: none;
}
.l-pagenavi ul li a {
  padding: 1rem;
  display: block;
  color: #fff;
  background-color: #333;
  letter-spacing: 0.12rem;
}
.l-pagenavi ul li a:hover {
  background-color: #fff;
  color: #333;
}
@media (max-width: 640px) {
  .l-pagenavi {
    padding-bottom: 6rem;
  }
}

/*--------------------------------------*
* object component
*--------------------------------------*/
/*--------------------------------------*
* object component _block
*--------------------------------------*/
.c-block {
  display: flex;
  gap: var(--size4);
  width: 100%;
  /*&--wide {
    width: min(90%, 1600px);
  }

  &--med {
    width: min(90%, 1200px);
  }

  &--small {
    width: min(90%, 800px);
  }*/
}
.c-block__left {
  width: 35%;
}
.c-block__right {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.c-block__right.-small {
  gap: 2rem;
}
@media (max-width: 800px) {
  .c-block {
    flex-direction: column;
    gap: var(--size4);
  }
  .c-block__left, .c-block__right {
    width: 100%;
  }
  .c-block__right {
    gap: var(--size3);
  }
}
@media (max-width: 640px) {
  .c-block {
    gap: var(--size2);
  }
}

/*--------------------------------------*
* object component _block
*--------------------------------------*/
.c-box {
  border: solid 1px var(--color_black);
  display: flex;
  align-items: stretch;
}
@media (max-width: 640px) {
  .c-box {
    flex-direction: column;
  }
}

.c-box.-white {
  border: solid 1px var(--color_white);
}
.c-box.-white .c-box__inner {
  color: var(--color_white);
}
.c-box.-white .c-box__arrow {
  background-color: var(--color_base);
}

.c-box__inner {
  padding: 4.5rem var(--size3);
  width: calc(100% - 8rem);
}
@media (max-width: 640px) {
  .c-box__inner {
    padding: var(--size3);
    width: 100%;
  }
}

.c-box__arrow {
  background: var(--color_main);
  width: 8rem;
  flex-grow: 0;
  display: flex;
  justify-content: center;
}
.c-box__arrow:hover {
  background-color: var(--color_red);
}
@media (max-width: 640px) {
  .c-box__arrow {
    width: 60%;
    padding: var(--size);
    margin-left: auto;
  }
}

.c-box__arrow img {
  height: auto;
  width: 2rem;
}

/*--------------------------------------*
* object component _button
*--------------------------------------*/
.c-button__wrap{
  display: flex;
  justify-content: space-around;
  gap: var(--size4);
}
@media (max-width: 800px) {
  .c-button__wrap{
    flex-direction: column;
    gap: 1rem;
  }
}

.c-button__wrap a img{
  transition: all ease 0.3s;
}

.c-button__wrap a:hover img{
  transform: scale(1.025);
  transition: all ease 0.3s;
}


.c-button {
  display: flex;
  justify-content: center;
  padding: 1.6rem 1.5rem;
  text-align: center;
  font-size: 2.4rem;
  color: var(--color_white);
  border: solid 1px #fff;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
  /* max-width: 320px; */
  border-radius: 50rem;
  width: 100%;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.1);
  gap:1rem;
}
.c-button.-red {
  background-color: #FC2524;
}
.c-button.-green {
  background-color: #00C917;
}

.c-button::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  position: relative;
  /* right: 2rem; */
  top: 50%;
  transform: translate(0%, -45%);
  color: var(--color_white);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  transition: all 0.5s;
}
.c-button:hover {
  /* opacity: 0.8; */
  transform: scale(1.05);
  color: var(--color_white);
  /* background-color: var(--color_white); */
}

.c-button--small {
  padding-top: 0;
  padding-bottom: 0;
}
.c-button--small::before {
  content: none;
}
.c-button--contact {
  color: #fff;
  background-color: #FFD600;
  border: solid 2px #FFD600;
  border-radius: 0;
}
.c-button--contact::before {
  content: none;
}
.c-button--contact:hover {
  color: #FFD600;
}
.c-button.--another {
  color: #fff;
  background: #089549;
  border: solid 2px #089549;
}
.c-button.--another::before {
  color: #089549;
}
.c-button.--another:hover {
  color: #089549;
  background: #fff;
}
.c-button.--another:hover::before {
  background: #089549;
  color: #fff;
}

/*--------------------------------------*
* object component _section
*--------------------------------------*/
.c-section {
  padding: 11rem 0;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap:8rem;
}
.c-section__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.c-section.-black {
  background-color: var(--color_main);
  border-radius: 30px;
}
.c-section.-radius-none {
  border-radius: 30px 30px 0 0;
}

.c-section.-orange {
  background-color: var(--color_orange);
}

.c-section.-orange .c-section__inner {
  border-radius: 30px;
  background-color: #fff;
  padding: 5%;
  gap:3rem;
  
  @media (max-width: 800px) {
    padding: 3rem 5%;
  }
}

.c-section.-orange .c-section__inner p{
  font-size: 2rem;
  @media (max-width: 800px) {
    font-size: 1.6rem;
  }
}
.c-section.-orange .c-section__inner p br{
  display: none;
  @media (max-width: 800px) {
    display: block;
  }
}

.c-section.-gray {
  background-color: #EBEBEB;
}

.c-section.-gray .c-section__inner {
  border-radius: 30px;
  background-color: #fff;
  padding: 5%;
}

@media (max-width: 800px) {
  .c-section {
    padding-top: var(--size6);
    padding-bottom: var(--size6);
    gap:var(--size6);
  }
}

@media (max-width: 640px) {
  .c-section__inner {
    gap: var(--size4);
  }
  .c-section.-orange .c-section__inner {
    border-radius: 16px;
  }
}

.c-section__inner.-no-gap{
  gap: 0;
}
/*--------------------------------------*
* object component _title
*--------------------------------------*/
/*=====================================
[見出し：h2]
=====================================*/
.c-heading2{
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: center;
  text-align: center;
  font-size: 3.2rem;
  font-family: var(--font_jp);

  @media (max-width: 640px) {
    font-size: 2rem;
  }
}

.c-heading2-jp {
  font-family: var(--font_jp);
}

.c-heading2-main {
  font-size: clamp(4rem, 5vw, 6.4rem);
  font-family: var(--font_jp);
  position: relative;
  line-height: 1;

  b{
    font-size: clamp(4rem, 5vw, 7.2rem);
    color: var(--color_blue);
  }
  small{
    font-size: clamp(3.2rem, 5vw, 5.6rem);
  }
}

.c-heading2-main.-white {
  color:white;
}

.c-heading2-sub {
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: var(--font_jp);
  font-weight: 400;
  line-height: 1.5;
}

/*=====================================
[見出し：h3]
=====================================*/

.c-heading3{
  font-family: var(--font_jp);
  font-size: clamp(2rem, 3vw, 2.3rem);

  b{
    font-size: clamp(3rem, 3vw, 3.2rem);
    color: var(--color_blue);
    font-weight: bold;
    padding-right: 1rem;
  }
}

/*--------------------------------------*
* object component _txt
*--------------------------------------*/
.c-txt-s {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  font-family: sans-serif;
}
@media (max-width: 640px) {
  .c-txt-s {
    font-size: 1rem;
  }
}

.c-txt-s + .c-txt-s {
  padding-top: 1.4rem;
}

.c-txt-m {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  font-family: sans-serif;
}
.c-txt-m.-white {
  color: var(--color_white);
}
/* @media (max-width: 640px) {
  .c-txt-m {
    font-size: 1.2rem;
  }
} */

.c-txt-m + .c-txt-m {
  padding-top: var(--size2);
}

.c-heading3 + .c-txt-m {
  padding-top: var(--size2);
}

.c-txt-l {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 2.2;
  font-family: sans-serif;
}
.c-txt-l.-white {
  color: var(--color_white);
}
@media (max-width: 640px) {
  .c-txt-l {
    font-size: var(--size2);
  }
}

.c-txt-l + .c-txt-l {
  padding-top: 2rem;
}

/*--------------------------------------*
* object component _post-categories
* wp自動クラスの編集
*--------------------------------------*/
.post-categories {
  display: flex;
}
.post-categories li {
  margin-right: 0.5rem;
}
.post-categories li:last-child {
  margin-right: 0;
}
.post-categories li a {
  color: #089549;
  background-color: #fff;
  border: solid 1px #089549;
  padding: 0.25rem 1rem;
  font-size: 1.4rem;
}
.post-categories li a:hover {
  background-color: #089549;
  color: #fff;
}

/*--------------------------------------*
* object component _required
*--------------------------------------*/
.c-required {
  background-color: var(--color_caution);
  color: var(--color_white);
  font-size: 1rem;
  border-radius: 5px;
  display: block;
  padding: 0.5rem 0.75rem;
  line-height: 1;
}
@media (max-width: 800px) {
  .c-required {
    display: inline-block;
    padding-left: 1rem;
  }
}

/*--------------------------------------*
* object component _txt
*--------------------------------------*/
.c-caution {
  border: solid 1px var(--color_black);
  padding: 2rem var(--size5);
  color: var(--color_caution);
}
@media (max-width: 800px) {
  .c-caution {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/*--------------------------------------*
* object component _follow
*--------------------------------------*/
.c-follow {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff8e42 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 16px;
  transition: all ease 0.4s;
}

.c-follow:hover {
  opacity: 0.9;
  transition: all ease 0.4s;
}

.c-follow a{
  display: flex;
  gap: 8px;
  align-items: center;
}

.c-follow img {
  width: 24px;
  height: auto; 
  display: block;
}

@media (max-width: 640px) {
  .c-follow {
    padding: 8px 16px;
  }

  .c-follow img {
    width: 16px;
  }
}

/*--------------------------------------*
* object project
*--------------------------------------*/
/*--------------------------------------*
* object project _topnews
*--------------------------------------*/
.p-topnews {
  background-color: #fff;
  /*&__title {
    width: 20%;
    padding: 2rem;
    margin-bottom: 0;
  }*/
}
.p-topnews__content {
  /*display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;*/
}
.p-topnews__lists {
  /*width: 80%;
  margin-bottom: 2rem;*/
}
.p-topnews__lists > li {
  border-bottom: solid 1px #cbcbcb;
}
.p-topnews__lists > li:first-child {
  border-top: solid 1px #cbcbcb;
}
.p-topnews__lists > li:last-child {
  margin-bottom: 0;
}
.p-topnews__lists > li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem;
  position: relative;
  transition: all 0.5s;
}
.p-topnews__lists > li a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translate(0%, -50%);
  color: #fff;
  background: #FFD600;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.5s;
}
.p-topnews__lists > li a:hover {
  color: #089549;
}
.p-topnews__lists > li a:hover::before {
  background: #089549;
}
.p-topnews__link {
  display: block;
  text-align: end;
  position: relative;
  color: #089549;
  padding-top: 1rem;
}
.p-topnews__link:hover {
  color: #FFD600;
}
.p-topnews__item:nth-of-type(1) {
  width: 170px;
  padding-right: 2rem;
}
.p-topnews__item:nth-of-type(2) {
  width: 130px;
  padding-right: 2rem;
}
.p-topnews__item:nth-of-type(３) {
  width: auto;
}
.p-topnews .post-categories {
  width: 320px;
}
@media (max-width: 800px) {
  .p-topnews__lists, .p-topnews__title {
    width: 100%;
  }
  .p-topnews__title {
    padding-top: 0;
    margin-bottom: 4rem;
  }
}
@media (max-width: 640px) {
  .p-topnews__lists > li {
    margin-bottom: 0;
  }
  .p-topnews__item:nth-of-type(3) {
    width: 100%;
  }
}

/*--------------------------------------*
* object project _theme
*--------------------------------------*/
/*--------------------------------------*
* object project _cv
*--------------------------------------*/
.p-insta {
  position: relative;
  overflow: hidden;
}
.p-insta__text {
  max-width: 600px;
  margin: 0 auto 4rem;
  text-align: center;
  width: 90%;
  text-align: left;
}
.p-insta:after {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.p-insta__content {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}

/*--------------------------------------*
* object project _marquee
*--------------------------------------*/
.p-marquee {
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}
.p-marquee__content {
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translate(0%, -50%);
  display: flex;
  overflow: hidden;
}
.p-marquee__content img {
  width: auto;
  height: 100%;
}
.p-marquee__content img:first-child {
  animation: slide01 60s -30s linear infinite;
}
.p-marquee__content img:last-child {
  animation: slide02 60s linear infinite;
}
@media (max-width: 800px) {
  .p-marquee__content {
    width: 120vh;
  }
}

@keyframes slide01 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide02 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*--------------------------------------*
* object project _data
*--------------------------------------*/
.p-data__lists {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: solid 1px #cbcbcb;
  padding: 3rem 0;
}
.p-data__lists:first-child {
  border-top: solid 1px #cbcbcb;
}
.p-data__lists h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1;
}
.p-data__lists dt {
  width: 35%;
  font-size: 1.4rem;
}
.p-data__lists dd {
  width: 65%;
  padding-left: 5%;
}
.p-data img {
  display: block;
  margin-top: 4rem;
}
@media (max-width: 800px) {
  .p-data__lists {
    align-items: start;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .p-data__lists dt {
    width: 25%;
  }
  .p-data__lists dd {
    width: 75%;
  }
}

/*--------------------------------------*
* object project _access
*--------------------------------------*/
.p-access__content {
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}
.p-access__content p {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/*--------------------------------------*
* object project _media
*--------------------------------------*/
.p-media {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  border-bottom: solid 1px #cbcbcb;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  width: 100%;
}
.p-media__thumbnail {
  width: 50%;
  box-shadow: 0 1px 3px rgba(158, 158, 158, 0.2);
  position: relative;
  aspect-ratio: 1.6/1;
  overflow: hidden;
}
.p-media__thumbnail img {
  width: 100%;
}
.p-media__thumbnail .post-categories {
  display: flex;
  position: absolute;
  top: 2px;
  left: 8px;
}
.p-media__thumbnail .post-categories li a {
  color: var(--color_white);
  border: none;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 2px;
}
.p-media__info {
  width: 50%;
  padding-left: 4rem;
}
.p-media__title {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--size3);
}
.p-media__title.-white a{
  color: #fff;
}
.p-media__title a {
  color: var(--color_main);
  font-size: var(--size2);
}
.p-media__title--single {
  display: block;
}
.p-media__data p {
  font-size: 1.2rem;
}
.p-media__content {
  /*display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;*/
  min-height: 0;
  color: var(--color_gray);
}
@media (max-width: 1080px) {
  .p-media__thumbnail, .p-media__info {
    width: 100%;
  }
  .p-media__info {
    padding-left: 0;
  }
  .p-media__thumbnail {
    margin-bottom: 2rem;
  }
}
.p-media.--event {
  width: 48%;
}
.p-media.--event .p-media__thumbnail {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
}
.p-media.--event .p-media__thumbnail span {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.2rem;
  color: #fff;
  padding: 0 1rem;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
}
.p-media.--event .p-media__thumbnail a {
  color: #fff;
}
.p-media.--event .p-media__data {
  margin-bottom: 0;
  line-height: 1;
  color: #089549;
}
.p-media.--event .p-media__data p {
  border-right: none;
}
.p-media.--event .p-media__title {
  margin-bottom: 0;
}
.p-media.--event .p-media__info {
  width: 100%;
  padding-left: 0;
}
@media (max-width: 640px) {
  .p-media.--event {
    width: 100%;
  }
}

/* top時 */
.l-post__lists.-top {
  gap: 24px;
  width: calc((100% -24px) / 2);
}
.l-post__lists.-top {
  gap: 16px;
  width: 100%; /* 必要に応じて親要素の幅を確認 */
  display: flex;
  flex-wrap: wrap;
}
.l-post__lists.-top > * {
  width: calc((100% - 24px) / 2); /* 子要素の幅 */
  border-bottom: none;
  padding: 0;
  margin: 0;
}
.l-post__lists.-top .p-media__info{
  padding-left:0;
}
.l-post__lists.-top .p-media__thumbnail{
  width: 100%;
  margin-bottom: 0;
}
.l-post__lists.-top .p-media__title{
  margin-bottom: 0;
  line-height: 1.4;
}
.l-post__lists.-top .p-media__data{
  padding-top: 16px !important;
}
.l-post__lists.-top .p-media__data p{
  color: #fff;
}

@media (max-width: 640px) {
  .l-post__lists.-top {
    width: 100%;
    gap: 24px;
  }
  .l-post__lists.-top > * {
    width: 100%;
  }
  .l-post__lists.-top .p-media__data{
    padding-top: 0 !important;
  }
}

/*--------------------------------------*
* object project _pagenation
*--------------------------------------*/
.p-pagenation .page-numbers {
  color: var(--color_main);
  border: solid 1px var(--color_main);
  padding: 0.5rem 2rem;
  font-size: 1.4rem;
  margin: 0 0.5rem;
  font-weight: 400;
}
.p-pagenation .page-numbers.current {
  background-color: var(--color_main);
  color: var(--color_base);
}
.p-pagenation .page-numbers:hover {
  background-color: #333;
  color: #fff;
}

/*--------------------------------------*
* object project _sidebar
*--------------------------------------*/
.p-sidebar h2 {
  color: var(--color_gray);
  border-bottom: solid 1px var(--color_gray);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.p-sidebar span {
  font-size: 1.4rem;
  color: #089549;
}
.p-sidebar p {
  font-size: 1.6rem;
  line-height: 1;
}
.p-sidebar ul {
  margin-bottom: 4rem;
}
.p-sidebar ul:last-child {
  margin-bottom: 0;
}
.p-sidebar ul li {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-left: 1.5rem;
  position: relative;
}
.p-sidebar ul li+li {
  margin-top: 8px;
}
.p-sidebar ul li a {
  font-size: 1.6rem;
  line-height: 1;
}
.p-sidebar ul li a:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 45%;
  left: 0rem;
  background-color: var(--color_gray2);
  transform: translate(0px, -5%);
  position: absolute;
}
.p-sidebar ul li a:hover {
  color: #c3c3c3;
}

/*--------------------------------------*
* object project _single
*--------------------------------------*/
.p-single {
  background-color: #fff;
  padding: 4rem 5% 4rem;
  box-shadow: 0 1px 3px rgba(158, 158, 158, 0.2);
  margin-bottom: 2rem;
}
.p-single__title {
  font-size: clamp(var(--size2), 4vw, var(--size3));
  margin-bottom: var(--size3);
  padding-bottom: var(--size2);
  border-bottom: solid 1px #cbcbcb;
}
.p-single__data {
  display: flex;
  gap: var(--size2);
}
.p-single .post-categories li a {
  color: var(--color_white);
  border: none;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 2px;
}
.p-single__content img {
  margin: 0 auto 4rem;
  /*border: solid 1px $color-gray;*/
  width: 100%;
}

/*--------------------------------------*
* object project _singlepagenation
*--------------------------------------*/
.p-singlepagenation {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
  visibility: hidden;
  /*border-bottom: solid 1px $color-gray ;*/
}
.p-singlepagenation__back, .p-singlepagenation__next {
  font-size: 1.4rem;
  width: 47.5%;
  /*text-align: center;*/
}
.p-singlepagenation__back {
  margin-top: -32px;
}
.p-singlepagenation__next {
  margin-bottom: -23px;
  text-align: right;
  transform: translate(0px, -4px);
}
.p-singlepagenation__back a, .p-singlepagenation__next a {
  color: #333;
  padding: 0.5rem 2rem;
  display: block;
  /*background-color: $color-white;*/
  /*text-align: center;*/
  visibility: visible;
  position: relative;
  border-bottom: solid 1px #cbcbcb;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-singlepagenation__back a {
  padding-left: 2rem;
}
.p-singlepagenation__back a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f060";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0px, -42%);
}
.p-singlepagenation__next a {
  padding-right: 2rem;
}
.p-singlepagenation__next a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0px, -42%);
}
.p-singlepagenation__back a:hover, .p-singlepagenation__next a:hover {
  color: #c3c3c3;
}

/*--------------------------------------*
* object project _formcurrent
*--------------------------------------*/
.p-formcurrent {
  display: flex;
  margin-top: var(--size6);
  gap: var(--size2);
}
.p-formcurrent__list {
  width: 25%;
  border: solid 1px var(--color_main);
  padding: 0.5rem 1rem;
  margin-bottom: var(--size6);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--color_main);
}
.p-formcurrent__list--active {
  color: var(--color_white);
  background-color: var(--color_main);
}
@media (max-width: 800px) {
  .p-formcurrent {
    margin-top: var(--size4);
  }
}

/*--------------------------------------*
* object project _form
*--------------------------------------*/
.p-form {
  padding: 6rem 5%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.p-form__tel li {
  position: relative;
  padding-left: 2rem;
}
.p-form__tel li:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--color_gray);
  position: absolute;
  top: 55%;
  left: 0rem;
  transform: translate(0%, -50%);
}
.p-form__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.p-form__list:last-child {
  margin-bottom: 4rem;
}
.p-form__list dt {
  width: 25%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.p-form__list dd {
  width: 75%;
}
.p-form__list dd textarea,
.p-form__list dd input {
  width: 100%;
  padding: 2rem 1rem;
  border: solid 1px #cbcbcb;
  border-radius: 5px;
  resize: none;
  font-size: 1.6rem;
}
.p-form__content {
  text-align: center;
  margin: 0rem auto 0rem;
  display: block;
}
.p-form__text {
  text-align: center;
  color: #A3050D;
  margin-top: 4rem;
}
.p-form__button {
  text-align: center;
  margin: 3rem auto 0rem;
  display: block;
}
.p-form input[type=submit] {
  padding: 1rem;
  text-align: center;
  color: #fff;
  background-color: var(--color_main);
  border: solid 1px var(--color_main);
  border-radius: 100px;
  transition: all 0.5s;
  max-width: 490px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  width: 100%;
}
.p-form input[type=submit]:hover {
  opacity: 1;
  color: var(--color_main);
  background-color: var(--color_white);
}
.p-form .c-button {
  margin: 0 auto;
}
@media (max-width: 800px) {
  .p-form {
    padding-top: 5%;
    padding-bottom: 5%;
  }
  .p-form__text {
    text-align: left;
  }
  .p-form__text br {
    display: none;
  }
  .p-form__list dt,
  .p-form__list dd {
    width: 100%;
    margin-bottom: var(--size);
    line-height: 1;
  }
  .p-form__list dd {
    color: var(--color_gray);
  }
}

input[type=submit] + input[type=submit] {
  margin-top: 2rem;
}

/*--------------------------------------*
* object project _transtion
*--------------------------------------*/
.p-transition__content {
  padding: 6rem 5%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.p-transition__content p {
  margin-bottom: 4rem;
  /*font-weight: bold;*/
  font-size: 1.8rem;
}
.p-transition__lists {
  margin-top: 2rem;
}
.p-transition__lists li .c-button {
  margin: 0 auto 2rem;
}
.p-transition__lists li:last-child .c-button {
  margin-bottom: 0;
}

/*--------------------------------------*
* object project _follow
*--------------------------------------*/
.p-follow {
  position: absolute;
  right: 0;
  top: 72px;
  z-index: 100;
}
.p-follow__item {
  position: relative;
  display: block;
  background-color: #FFD600;
  color: #333;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-align: center;
  border: solid 2px #FFD600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  height: 50rem;
  padding: 0.5rem;
  border-radius: 10px 0 0 10px;
}
.p-follow__item.--top {
  height: 66rem;
}
.p-follow__item i {
  margin-bottom: 0.5rem;
}
.p-follow__item:hover {
  background-color: #fff;
  color: #FFD600;
}

/*--------------------------------------*
* object project _loader
*--------------------------------------*/
.p-loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #F0F0F0;
  z-index: 1100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-loader__content {
  display: none;
  text-align: center;
}
.p-loader__text {
  font-size: 1.4rem;
  color: #FFD600;
  display: block;
  margin: 0 auto;
}

/*--------------------------------------*
* object project _tel
*--------------------------------------*/
.p-tel {
  position: fixed;
  right: 0;
  bottom: 0px;
  z-index: 100;
  width: 100%;
}
.p-tel a {
  background: #E3D8BD;
  color: #333;
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 1rem;
  text-align: center;
}

/*--------------------------------------*
* object project _privacy
*--------------------------------------*/
.p-privacy {
  height: 250px;
  overflow-y: scroll;
  border: solid 1px #cbcbcb;
  margin-top: 4rem;
  padding: 1rem;
  font-size: 1.2rem;
}
.p-privacy h2 {
  font-size: 1.8rem;
}
.p-privacy p {
  font-size: 1.2rem;
}
.p-privacy > p {
  margin-bottom: var(--size);
}
.p-privacy ol {
  padding-left: 1rem;
}

/*--------------------------------------*
* object project _service
*--------------------------------------*/
.p-service {
  margin-bottom: 8rem;
}
.p-service__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.p-service__image {
  min-height: 600px;
  width: 50%;
  background-image: url(../../../kumakitabunka/assets/img/top_service_img01.jpg);
  background-size: cover;
  background-position: center;
}
.p-service__image--house {
  background-image: url(../../../kumakitabunka/assets/img/service_img01.jpg);
}
.p-service__image--interior {
  background-image: url(../../../kumakitabunka/assets/img/service_img02.jpg);
}
.p-service__text {
  width: 50%;
  padding-left: 10vw;
  padding-right: 10vw;
  text-align: left;
}
.p-service__text h2 {
  text-align: left;
}
.p-service__text p {
  margin-bottom: 4rem;
}
.p-service__text ul li {
  margin-bottom: 2rem;
}
.p-service__text ul li h3 {
  color: #FFD600;
}
.p-service__text ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1080px) {
  .p-service {
    margin-bottom: 0;
  }
  .p-service__image {
    min-height: 500px;
    width: 100%;
  }
  .p-service__text {
    width: 95%;
    margin-inline: auto;
  }
  .p-service__text h2 {
    text-align: center;
  }
  .p-service__text a.c-button {
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .p-service__image {
    background-position: center;
    min-height: 300px;
  }
  .p-service__text {
    padding-right: 0;
    padding-left: 0;
  }
}

/*--------------------------------------*
* object project _topworks
*--------------------------------------*/
.p-topintro {
  padding-bottom: 0;
}
.p-topintro__title span {
  position: relative;
}
.p-topintro__title span::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 55%;
  transform: translate(0%, -50%);
  background: #FFD600;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.p-topintro__title span::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 55%;
  transform: translate(0%, -50%);
  background: #FFD600;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.p-topintro__content {
  background-color: #fff;
  border: solid 1px #d9d9d9;
  padding: 4rem;
  border-radius: 10px;
}
.p-topintro__text {
  max-width: 80%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.p-topintro a.c-button {
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .p-topintro__content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .p-topintro__text {
    max-width: 100%;
  }
  .p-topintro__title span::before, .p-topintro__title span::after {
    content: none;
  }
}
/*--------------------------------------*
* object project _toprecruit
*--------------------------------------*/
.p-toprecruit {
  background-image: url(../../../kumakitabunka/assets/img/recruit_bg_img01.jpg);
  background-size: cover;
  background-position: center;
}
.p-toprecruit__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.p-toprecruit__text {
  width: 30%;
  text-align: center;
}
.p-toprecruit__text p {
  margin-bottom: 4rem;
}
.p-toprecruit__text a.c-button {
  margin: 0 auto;
  max-width: 240px;
}
.p-toprecruit__lists {
  width: 70%;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 1080px) {
  .p-toprecruit__content {
    flex-direction: column-reverse;
  }
  .p-toprecruit__text {
    width: 100%;
  }
  .p-toprecruit__text a.c-button {
    margin: 0 auto;
    max-width: 320px;
  }
  .p-toprecruit__lists {
    width: 100%;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

/*--------------------------------------*
* object project _topworks
*--------------------------------------*/
.p-topworks__lists {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
}
.p-topworks a.c-button {
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .p-topworks__lists {
    flex-wrap: wrap;
    margin-bottom: 4rem;
    gap: 2rem;
  }
  .p-topworks__lists li {
    width: 47%;
  }
}
@media (max-width: 640px) {
  .p-topworks__lists li {
    width: 100%;
  }
}

/*--------------------------------------*
* object project _worksmedia
*--------------------------------------*/
.p-worksmedia {
  position: relative;
  width: 33.3333%;
}
.p-worksmedia__thumbnail {
  position: relative;
  padding-bottom: 2rem;
}
.p-worksmedia__thumbnail span {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.2rem;
  color: #fff;
  padding: 0 1rem;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
}
.p-worksmedia__thumbnail span a {
  color: #fff;
}
.p-worksmedia__info h2 {
  font-size: 1.8rem;
}
.p-worksmedia__info h2 a {
  position: relative;
  display: block;
}
.p-worksmedia__info h2 a:hover {
  color: #FFD600;
}
.p-worksmedia__data {
  color: #089549;
}
.p-worksmedia__data p {
  line-height: 1;
}
@media (max-width: 640px) {
  .p-worksmedia__thumbnail {
    padding-bottom: 1rem;
  }
}

/*--------------------------------------*
* object project _abboutlead
*--------------------------------------*/
.p-aboutlead__img {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
}
.p-aboutlead__img img {
  display: block;
}
.p-aboutlead__img img:nth-of-type(1) {
  width: 60%;
}
.p-aboutlead__img img:nth-of-type(2) {
  width: 40%;
  padding: 5%;
}
.p-aboutlead__text {
  padding: 4rem;
  background-color: #fff;
}
.p-aboutlead__text p {
  margin-bottom: 4rem;
  /*line-height: 1.6;*/
}
.p-aboutlead__text p:last-child {
  margin-bottom: 0;
  text-align: end;
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 640px) {
  .p-aboutlead__img {
    display: block;
    margin-bottom: 2rem;
  }
  .p-aboutlead__img img:nth-of-type(1) {
    width: 100%;
  }
  .p-aboutlead__img img:nth-of-type(2) {
    width: 60%;
    margin: 2rem auto 0;
  }
}

/*--------------------------------------*
* object project _abilities
*--------------------------------------*/
.p-abilities img {
  margin-bottom: 4rem;
}
.p-abilities ul {
  margin-bottom: 4rem;
}
.p-abilities ul li {
  text-align: center;
  font-size: 3.2rem;
  color: #FFD600;
  font-weight: bold;
}
@media (max-width: 800px) {
  .p-abilities ul li {
    font-size: 2.4rem;
  }
}
.p-abilities p {
  margin-bottom: 4rem;
}
.p-abilities p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------*
* object project _recruit
*--------------------------------------*/
.p-join__content {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  padding: 8rem;
}
.p-join__text {
  text-align: center;
  max-width: 80%;
  margin: 0 auto 4rem;
}
.p-join ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.p-join ul li {
  width: 22.5%;
}
.p-join ul li:nth-of-type(1) div {
  background-image: url(../../../kumakitabunka/assets/img/join_img01.jpg);
}
.p-join ul li:nth-of-type(2) div {
  background-image: url(../../../kumakitabunka/assets/img/join_img02.jpg);
}
.p-join ul li:nth-of-type(3) div {
  background-image: url(../../../kumakitabunka/assets/img/join_img03.jpg);
}
.p-join ul li:nth-of-type(4) div {
  background-image: url(../../../kumakitabunka/assets/img/join_img04.jpg);
}
.p-join ul li div {
  height: 320px;
  background-size: cover;
  background-position: center;
  background-attachment: unset;
  position: relative;
  border-radius: 5px;
}
.p-join ul li div span {
  position: absolute;
  top: 0;
  left: 0;
  background: #FFD600;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px 0 5px;
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
}
.p-join ul p {
  padding-left: 2rem;
  position: relative;
}
.p-join ul p::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 55%;
  transform: translate(0%, -50%);
  background: #089549;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
@media (max-width: 1080px) {
  .p-join__content {
    padding: 4rem;
  }
  .p-join__text {
    max-width: 100%;
    text-align: left;
  }
  .p-join ul {
    display: none;
  }
}

/*--------------------------------------*
* object project _formcurrent
*--------------------------------------*/
.p-price {
  display: flex;
  gap: var(--size4);
  padding-top: var(--size6);
}
@media (max-width: 800px) {
  .p-price {
    flex-direction: column;
    padding-top: var(--size4);
  }
}

.p-price__txt {
  width: 60%;
}
.p-price__txt .c-caution {
  margin-top: var(--size6);
}
@media (max-width: 800px) {
  .p-price__txt {
    width: 100%;
  }
  .p-price__txt .c-caution {
    margin-top: var(--size2);
  }
}

.p-price__img {
  width: 40%;
}
.p-price__img img {
  width: 100%;
  height: auto;
}
@media (max-width: 800px) {
  .p-price__img {
    width: 100%;
  }
}

.p-price__ttl {
  width: 30%;
}
@media (max-width: 800px) {
  .p-price__ttl {
    width: 100%;
  }
}

.p-price__list {
  width: 70%;
}
@media (max-width: 800px) {
  .p-price__list {
    width: 100%;
  }
}

.p-price__list dl {
  display: flex;
  font-size: 1.4rem;
  padding: var(--size3) 0;
  border-bottom: solid 1px #cbcbcb;
  align-items: center;
}
@media (max-width: 800px) {
  .p-price__list dl {
    font-size: 1.2rem;
  }
}

.p-price__list dt {
  width: 40%;
}

.p-price__list dd {
  width: 60%;
}

.p-price__list dl:first-of-type {
  padding-top: 0;
  padding-bottom: var(--size);
  font-size: 1.4rem;
  color: var(--color_gray);
}
@media (max-width: 800px) {
  .p-price__list dl:first-of-type {
    font-size: 1.2rem;
  }
}

.p-price + .p-price {
  padding-top: var(--size10);
}
@media (max-width: 800px) {
  .p-price + .p-price {
    padding-top: var(--size5);
  }
}

/*--------------------------------------*
* object project _lp
*--------------------------------------*/

/*t-feature*/
.t-feature{
  display: flex;
  gap: var(--size2);

  @media (max-width: 640px) {
    flex-direction: column;
    gap: var(--size4);
  }
}

.t-feature img{
  border-radius: 2rem;
}

.t-feature li{
  width: calc((100% - var(--size4))/3);

  @media (max-width: 640px) {
    width:100%;
  }
}

.t-feature .c-txt-m{
  padding-top: 0;
  line-height: 2;
}

@media (max-width: 640px) {
  .c-heading3 + .c-txt-m{
    padding-top: 0;
  }
}

/*work*/
.t-work{
  display: flex;
  flex-direction: column;
  gap: var(--size6);

  @media (max-width: 640px) {
    /* gap: var(--size4); */
  }
}

.t-work li{
  display: flex;
  gap: var(--size3);

  @media (max-width: 640px) {
    flex-direction: column;
    gap: var(--size2);
  }
}

.t-work li > div{
  width: 32%;

  @media (max-width: 640px) {
    width: 100%;
  }
}
.t-work li > p{
  width: 68%;
  @media (max-width: 640px) {
    width: 100%;
  }
}

/*intro*/
.t-intro{
  display: flex;
  align-items: center;
  position: relative;
}

.t-intro::before{
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%,0);
  width: 50%;
  height:50%;
  background-image: url('../../image/lp/intro_arrow.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.t-intro p:first-child{
  width: 55%;
}
.t-intro p:last-child{
  width: 45%;
}
@media (max-width: 640px) {
  .t-intro{
    flex-direction: column;
    gap: 2.4rem;
  }
  .t-intro p:first-child{
    width: 100%;
  }
  .t-intro p:last-child{
    width: 75%;
    margin: 0  auto;
  }
  .t-intro::before{
    top: 80%;
    left: 50%;
    width: 30%;

    @media (max-width: 640px) {
      left: 33%;
      transform: rotate(66deg);
    }
  }
}

/*intro2*/
.t-intro2 p:last-child{
  display: none;
}
@media (max-width: 640px) {
  .t-intro2 p:first-child{
    display: none;
  }
  .t-intro2 p:last-child{
    display: block;
  }
}


/*service*/
.t-service{
  border-radius: 30px;
  background-color: #fff;
  padding: 2rem;
  border: solid 2px var(--color_orange);
}
.t-service p{
  max-width: 640px;
  margin: 2rem auto;
  font-size: 16px;
  text-align: center;
}

@media (max-width: 800px) {
  .t-service{
    border-radius: 16px;
  }
  
  .t-service p{
    text-align: left;
  }

  .t-service p br{
    display: none;
  }
}



.t-faq  p{
  font-size: 1.5rem !important;
  letter-spacing: 0.04em;
  line-height: 1.8;
  font-family: sans-serif;
}

.t-faq  h3{
  line-height: 1.7;
  font-size: 2.4rem;
  font-family: var(--font_jp);

  align-items: center !important;

  @media (max-width: 800px) {
    font-size: 1.8rem;
  }
}



.t-faq  p,
.t-faq  h3{
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: flex-start;
  gap: 8px;

}

.t-faq{
  gap: 4rem !important;
  /* padding: 4%; */
}

.t-faq .c-section__inner{
  gap: 2rem !important;

  @media (max-width: 800px) {
    gap: 1rem !important;
  }
}

/*--------------------------------------*
* object utility
*--------------------------------------*/
/*--------------------------------------*
* object utility _display
*--------------------------------------*/
.u-block {
  display: block;
}

.u-inline-block {
  display: inline-block;
}

/*--------------------------------------*
* object utility _margin
*--------------------------------------*/
.u-mt--05 {
  margin-top: 0.5rem;
}

.u-mt--nega1\5  {
  margin-top: -1.5rem;
}

.u-mt--nega2 {
  margin-top: -2rem;
}

.u-mt--nega3 {
  margin-top: -3rem;
}

.u-mb--nega3 {
  margin-bottom: -3rem;
}

.u-ml--auto {
  margin-left: auto;
}

.u-ml--2 {
  margin-left: 2rem;
}

/*--------------------------------------*
* object utility _padding
*--------------------------------------*/
.u-pt--small {
  padding-top: 4.5rem;
}

.u-pb--small {
  padding-bottom: 4.5rem;
}

.u-pb--none {
  padding-bottom: 0;
}

.u-pt--none {
  padding-top: 0;
}

/*--------------------------------------*
* object utility _responsive
*--------------------------------------*/
.u-responsive-tab-s {
  display: none;
}

@media (max-width: 800px) {
  .u-responsive-pc {
    display: none !important;
  }
  .u-responsive-tab-s {
    display: block;
  }
}
/*--------------------------------------*
* object utility _fadein
*--------------------------------------*/
.u-fadein {
  animation-name: fadein;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.u-fadein--fv {
  animation-delay: 3.5s;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.u-fadeup {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 0.5s;
}
.u-fadeup.active {
  opacity: 1;
  transform: translate(0, 0);
}

/*--------------------------------------*
* object utility _display
*--------------------------------------*/
.u-hr {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  border-bottom: solid 1px #cbcbcb;
}/*# sourceMappingURL=style.css.map */




.t-price{
  /* background-color: #f4f4f4; */

  margin-top: 1.5rem;
  border: solid 1px #333;
  border-radius: var(--size);
  overflow: hidden;
}

.t-price-heading{
  background-color: #333;
  text-align: center;
  color: #fff;
  padding: 0.8rem;
  font-weight: bold;
}

.t-price__inner{
  padding: 1rem 1rem 3rem 1rem; 
}

.t-price__inner .t-price-price{
  font-size: var(--size4);
  font-weight: bold;
  text-align: center;
  color: #e30200;
  font-style: italic;
}

.t-price__inner .t-price-price span{
  font-size: var(--size2);
}
/* @media (max-width: 800px) {
  .t-price__inner .t-price-price{
    text-align: left;
  }
} */

.t-price__inner .t-price-price small{
  font-size: 1.4rem;
}

.t-price__inner > span{
  color: #757575;
  font-size: 1.3rem;
  border-bottom: solid 1px #ddd4d4;
  display: block;
}

.t-price__inner > span:nth-of-type(1){
  border-top: solid 1px #ddd4d4;
}




/* 動画再生 */
/*===========================*/
.video-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  background-color: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}