@charset "UTF-8";
/*-----------------------------------
 リキッド用の関数
-----------------------------------*/
html {
  font-size: 10px;
}

@media (max-width: 1300px) {
  html {
    font-size: calc((100vw - var(--sb-width)) / 130);
  }
}
@media (max-width: 599px) {
  html {
    font-size: calc((100vw - var(--sb-width)) / 37.5);
  }
}
/* PCとSPの適用切り替え
--------------------------------- */
/* ホバー用メディアクエリ
--------------------------------- */
/* メディアクエリ調整関数
--------------------------------- */
/* 画面サイズ
--------------------------------- */
/* flex-boxのMixin
--------------------------------- */
/* カラー
--------------------------------- */
.clr-rd1 {
  color: #F76161;
}

.clr-or1 {
  color: #FF9D00;
}

.clr-yw1 {
  color: #FFE438;
}

.clr-gn1 {
  color: #32ABA5;
}

/* スクロールバーサイズ
--------------------------------- */
:root {
  --sb-width: 1.5rem;
}

/* 基本設定
--------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-weight: 700;
  background-color: #F6F6F6;
  scroll-behavior: smooth;
}

body, section, div, h1, h2, h3, h4, h5, h6, p, ul, li, span, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, li {
  list-style: none;
}

img, figure {
  width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

a, a:visited {
  text-decoration: none;
}

/* ボタン
--------------------------------- */
.btn {
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover {
  opacity: 0.9;
}

/* 設定
--------------------------------- */
@media (min-width: 600px) {
  .link-disable-pc {
    pointer-events: none;
  }
}
@media (max-width: 599px) {
  .link-disable-sp {
    pointer-events: none;
  }
}
body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.anchor {
  margin-top: -5rem;
  padding-top: 5rem;
}

@media (max-width: 599px) {
  .anchor {
    margin-top: max(-4rem, -56px);
    padding-top: min(4rem, 56px);
  }
}
/* pc sp
--------------------------------- */
.dp-pc {
  display: block;
}

.dp-sp {
  display: none;
}

.dp-pc-ib {
  display: inline-block;
}

.dp-pc-im {
  display: block !important;
}

.dp-sp-im {
  display: none !important;
}

@media (max-width: 599px) {
  .dp-pc {
    display: none;
  }
  .dp-pc-ib {
    display: none;
  }
  .dp-sp {
    display: block;
  }
  .dp-pc-im {
    display: none !important;
  }
  .dp-sp-im {
    display: block !important;
  }
}
.dp-n {
  display: none;
}

.dp-n-im {
  display: none !important;
}

/* font
--------------------------------- */
.ff-noto {
  font-family: "Noto Sans JP", sans-serif;
}

.ff-maru {
  font-family: "Zen Maru Gothic", sans-serif;
}

/* アニメーション
--------------------------------- */
.triger-by-scroll-in {
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 0.5s, transform 0.5s;
}
.triger-by-scroll-in.on {
  opacity: 1;
  transform: translateY(0);
}

/* カラー
--------------------------------- */
/* 見出し01
--------------------------------- */
/* パネル01
--------------------------------- */
/* リンクボタン
--------------------------------- */
span.symbol-arrow {
  position: relative;
  display: flex;
  width: 1.2rem;
  height: 0.15rem;
  background-color: #000;
  border-radius: 0.15rem;
}
span.symbol-arrow::before, span.symbol-arrow::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform-origin: right;
  width: 50%;
  height: 0.15rem;
  background-color: #000;
  border-radius: 0.15rem;
}
span.symbol-arrow::before {
  transform: translateY(-50%) rotate(-45deg);
}
span.symbol-arrow::after {
  transform: translateY(-50%) rotate(45deg);
}

.link-btn-01 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36rem;
  height: 6rem;
  margin: 0 auto;
  font-size: 2rem;
  color: #fff;
  background-color: #000;
  border-radius: 5rem;
  transition: all 0.2s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .link-btn-01:hover {
    opacity: 0.9;
  }
}
.link-btn-01 > div {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #fff;
  border-radius: 50%;
}
.link-btn-01 > div span {
  position: relative;
  display: flex;
  width: 1.2rem;
  height: 0.15rem;
  background-color: #000;
  border-radius: 0.15rem;
}
.link-btn-01 > div span::before, .link-btn-01 > div span::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform-origin: right;
  width: 50%;
  height: 0.15rem;
  background-color: #000;
  border-radius: 0.15rem;
}
.link-btn-01 > div span::before {
  transform: translateY(-50%) rotate(-45deg);
}
.link-btn-01 > div span::after {
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 599px) {
  .link-btn-01 {
    width: 25rem;
    height: 5rem;
    font-size: 1.6rem;
  }
  .link-btn-01 > div {
    right: 1rem;
  }
}

/* CTA 01
--------------------------------- */
@media (max-width: 599px) {
  .cta-01 {
    background-color: #FF9D00;
  }
  .cta-01 .cta-inner {
    padding: 2rem 1rem 3rem;
  }
  .cta-01 .cta-inner h2 {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.8;
    text-align: center;
    letter-spacing: 0.2rem;
  }
  .cta-01 .cta-inner h2 .fz-lg {
    font-size: 2.6rem;
  }
  .cta-01 .cta-inner .cta-btns {
    display: flex;
    row-gap: 1.5rem;
    flex-direction: column;
  }
}
/* header
--------------------------------- */
.header {
  box-sizing: border-box;
  z-index: 10;
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translate(-50%, 0px);
  width: calc(100% - 3rem);
  max-width: 1200px;
  height: 7rem;
  padding: 1rem 4rem;
  background-color: #fff;
  border-radius: 7rem;
  filter: drop-shadow(0 0 0.4rem rgba(0, 0, 0, 0.2));
  transition: all 0.3s;
}
.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header__inner .header__logo {
  width: 20rem;
  color: #000;
}
.header .header__inner .header__logo .logo a p {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.header .header__inner .header__logo .logo a img {
  width: 13rem;
}
.header .header__inner .hamburger {
  display: none;
}
.header .header__inner .header__nav .header__nav-list .nav-list {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
.header .header__inner .header__nav .header__nav-list .nav-list a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
}

@media (max-width: 599px) {
  .header {
    top: 1rem;
    width: calc(100% - 2rem);
    height: 6.5rem;
    padding: 1rem 1.6rem;
    border-radius: 6.5rem;
    transition: all 0.3s;
  }
  .header .header__inner {
    position: relative;
    justify-content: center;
    background-color: #fff;
    transition: all 0.3s;
  }
  .header .header__inner .header__logo {
    width: fit-content;
  }
  .header .header__inner .header__logo .logo a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2.5rem;
    flex-direction: column;
  }
  .header .header__inner .header__logo .logo a p {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: #333;
  }
  .header .header__inner .header__logo .logo a img {
    width: 13.3rem;
    height: 100%;
  }
  .header .header__inner .hamburger {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    width: 3.4rem;
    height: 2.5rem;
  }
  .header .header__inner .hamburger span:nth-child(1),
  .header .header__inner .hamburger span:nth-child(2),
  .header .header__inner .hamburger span:nth-child(3) {
    width: 100%;
    height: 0.3rem;
    background-color: #000;
    border-radius: 0.5rem;
    transition: all 0.3s;
  }
  .header .header__inner .hamburger span:nth-child(3) {
    width: 50%;
  }
  .header .header__inner .hamburger.is-active {
    justify-content: center;
  }
  .header .header__inner .hamburger.is-active span:nth-child(1) {
    position: relative;
    transform: translateY(100%) rotate(-45deg);
  }
  .header .header__inner .hamburger.is-active span:nth-child(3) {
    position: relative;
    transform: translateY(0%) rotate(45deg);
    width: 100%;
  }
  .header .header__inner .hamburger.is-active span:nth-child(2) {
    display: none;
  }
  .header .header__inner .hamburger.is-active ~ .header__nav {
    right: -2.6rem;
  }
  .header .header__inner .header__nav {
    z-index: -1;
    position: absolute;
    top: -2rem;
    right: calc(-100vw - 2.6rem);
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    transition: all 0.3s;
  }
  .header .header__inner .header__nav .header__nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  .header .header__inner .header__nav .header__nav-list .nav-list {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 2rem;
  }
  .header.scrolled {
    top: 0;
    width: 100%;
    height: 7.5rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0;
  }
  .header.scrolled .header__inner s-active ~ .header__nav {
    right: -1.5rem;
  }
}
/* footer
--------------------------------- */
@media (max-width: 599px) {
  .footer .footer-inner .footer-upper {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 2.5rem 1.5rem;
    background-color: #585858;
    color: #fff;
  }
  .footer .footer-inner .footer-upper .footer-logo a {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  .footer .footer-inner .footer-upper ul {
    display: flex;
    column-gap: 0.8rem;
  }
  .footer .footer-inner .footer-upper ul li {
    width: 2.6rem;
    height: 2.6rem;
  }
  .footer .footer-inner .footer-upper ul li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .footer .footer-inner .footer-bottom .footer-nav {
    padding: 2.5rem 1.5rem;
    background-color: #585858;
  }
  .footer .footer-inner .footer-bottom .footer-nav .nav-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.8rem;
  }
  .footer .footer-inner .footer-bottom .footer-nav .nav-list li {
    width: 50%;
  }
  .footer .footer-inner .footer-bottom .footer-nav .nav-list li a {
    position: relative;
    display: block;
    padding-left: 2rem;
    font-size: 1.3rem;
    color: #fff;
  }
  .footer .footer-inner .footer-bottom .footer-nav .nav-list li a::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
    width: 0.6rem;
    height: 0.6rem;
    border-right: 0.2rem solid #fff;
    border-bottom: 0.2rem solid #fff;
  }
  .footer .footer-inner .footer-bottom .copyright {
    padding: 1.5rem 1.5rem;
    background-color: #fff;
    text-align: center;
  }
}
/* パンクズリスト
--------------------------------- */
@media (max-width: 599px) {
  nav.breadcrumb {
    margin: 0.5rem 0 0.5rem 1rem;
    font-size: 1.2rem;
  }
  nav.breadcrumb a {
    margin-right: 0.4rem;
    font-size: 1.2rem;
    text-decoration: underline;
  }
  nav.breadcrumb span {
    font-size: 1.2rem;
  }
}
/* CTA
--------------------------------- */
.home {
  position: relative;
  /*-----------------------------------
   パーツ
  -----------------------------------*/
  /*-----------------------------------
   MV
  -----------------------------------*/
  /*-----------------------------------
   Aboutセクション
  -----------------------------------*/
  /*-----------------------------------
   Serviceセクション
  -----------------------------------*/
  /*-----------------------------------
   Blogセクション
  -----------------------------------*/
  /*-----------------------------------
   Newsセクション
  -----------------------------------*/
}
.home .heading-01 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
.home .heading-01 img {
  width: auto;
  height: 5.6rem;
  margin-bottom: 0.5rem;
}
.home .heading-01 span {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}
@media (max-width: 599px) {
  .home .heading-01 img {
    height: 4.5rem;
  }
  .home .heading-01 span {
    font-size: 1.4rem;
  }
}
.home .mv .top-circle {
  position: absolute;
  top: -12rem;
  right: 0;
  display: block;
  width: 32vw;
  height: 32vw;
}
.home .mv .mv-inner {
  position: relative;
  margin-top: 12rem;
}
.home .mv .mv-inner .slide-1 {
  width: 100%;
}
.home .mv .mv-inner .slide-1 .slide-inner {
  position: relative;
  width: calc(100% - (200px + 50% - 600px));
  padding: 7.5rem 1.5rem 7.5rem calc(50% - 600px);
  background-color: #FF9D00;
  border-radius: 0 6rem 6rem 0;
}
.home .mv .mv-inner .slide-1 .slide-inner .mv-deco-img-01 {
  position: absolute;
  top: 2rem;
  left: -1rem;
  width: 32rem;
}
.home .mv .mv-inner .slide-1 .slide-inner .title {
  margin-bottom: 2.4rem;
  font-size: 5rem;
  color: #fff;
  line-height: 1.5;
}
.home .mv .mv-inner .slide-1 .slide-inner .site-img {
  position: absolute;
  width: 70rem;
  top: 4rem;
  right: -200px;
}
.home .mv .mv-inner .slide-1 .slide-inner .lead {
  margin-bottom: 3.3rem;
}
.home .mv .mv-inner .slide-1 .slide-inner .lead p {
  width: fit-content;
  padding: 0.5rem 1rem 0.6rem 1rem;
  font-size: 2rem;
  background-color: #FFFB00;
}
.home .mv .mv-inner .slide-1 .slide-inner .lead p:not(:last-child) {
  margin-bottom: 0.5rem;
}
.home .mv .mv-inner .slide-1 .slide-inner .merit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1.7rem;
  margin-bottom: 4.2rem;
}
.home .mv .mv-inner .slide-1 .slide-inner .merit li {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  width: 11rem;
  height: 11rem;
  border: 0.2rem solid #fff;
  border-radius: 50%;
}
.home .mv .mv-inner .slide-1 .slide-inner .merit li span {
  display: flex;
  align-items: center;
  height: 5rem;
  margin-top: -0.6rem;
  font-size: 5.8rem;
  font-weight: 500;
  color: #FFE438;
  line-height: 1;
}
.home .mv .mv-inner .slide-1 .slide-inner .merit li span img {
  position: relative;
  top: 0.3rem;
  width: 2.6rem;
}
.home .mv .mv-inner .slide-1 .slide-inner .merit li p {
  font-size: 1.8rem;
  color: #fff;
}
.home .mv .mv-inner .slide-1 .slide-inner .link-btn-01 {
  margin-left: unset;
}
@media (max-width: 599px) {
  .home .mv .top-circle {
    top: -9rem;
    width: 16rem;
    height: 16rem;
  }
  .home .mv .mv-inner {
    margin: 9rem 0 5rem;
  }
  .home .mv .mv-inner .splide .splide__pagination {
    position: absolute;
    bottom: -3.5rem;
  }
  .home .mv .mv-inner .splide .splide__pagination li button {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0.4rem;
    background-color: rgba(0, 0, 0, 0.5333333333);
  }
  .home .mv .mv-inner .splide .splide__pagination li button.is-active {
    transform: scale(1);
    background-color: #000;
  }
  .home .mv .mv-inner .slide-1 {
    padding-right: 1.5rem;
  }
  .home .mv .mv-inner .slide-1 .slide-inner {
    width: 100%;
    padding: 4.5rem 1.5rem 2.6rem;
  }
  .home .mv .mv-inner .slide-1 .slide-inner .mv-deco-img-01 {
    width: 16.2rem;
  }
  .home .mv .mv-inner .slide-1 .slide-inner .title {
    font-size: 2.6rem;
    line-height: 1.75;
  }
  .home .mv .mv-inner .slide-1 .slide-inner .site-img {
    width: 13rem;
    top: 4rem;
    right: 1rem;
  }
  .home .mv .mv-inner .slide-1 .slide-inner .lead {
    margin-bottom: 3.3rem;
  }
  .home .mv .mv-inner .slide-1 .slide-inner .lead p {
    padding: 0.5rem 1rem 0.6rem 1rem;
    font-size: 1.6rem;
  }
  .home .mv .mv-inner .slide-1 .slide-inner .merit {
    justify-content: center;
    column-gap: 1rem;
    margin-bottom: 2rem;
  }
  .home .mv .mv-inner .slide-1 .slide-inner .merit li {
    column-gap: 0.5rem;
    width: 10rem;
    height: 10rem;
  }
  .home .mv .mv-inner .slide-1 .slide-inner .merit li span {
    height: 5rem;
    margin-top: -0.6rem;
    font-size: 5.8rem;
  }
  .home .mv .mv-inner .slide-1 .slide-inner .merit li p {
    font-size: 1.5rem;
  }
  .home .mv .mv-inner .slide-1 .slide-inner .link-btn-01 {
    margin: 0 auto;
  }
}
.home .about {
  position: relative;
  padding-bottom: 3.5rem;
  background-color: #fff;
}
.home .about span[class^=deco] {
  position: absolute;
  z-index: 0;
}
.home .about span.deco-01 {
  top: 0;
  left: 0;
  width: 18rem;
}
.home .about span.deco-02 {
  top: 24rem;
  right: 0;
  width: 18rem;
}
.home .about span.deco-03 {
  bottom: 9rem;
  left: 0;
  width: 10rem;
}
.home .about .section-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 5rem 1.5rem 1.5rem;
}
@media (min-width: 600px) {
  .home .about .section-inner {
    box-sizing: border-box;
    width: calc(100% - clamp(1px, 3 * 100vw / 1280 * 10, 45px));
    max-width: 1200px;
    margin: 0 auto;
    padding-left: clamp(1px, 1.5 * 100vw / 1280 * 10, 22.5px);
    padding-right: clamp(1px, 1.5 * 100vw / 1280 * 10, 22.5px);
  }
}
.home .about .section-inner .heading-01 {
  align-items: flex-end;
  width: 100%;
  margin-bottom: 4rem;
}
.home .about .section-inner .blk-1 {
  width: 50%;
  margin-bottom: 5rem;
}
.home .about .section-inner .blk-1 p {
  margin-bottom: 2.6rem;
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.2rem;
}
.home .about .section-inner .blk-1 h3 {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 28rem;
  margin: 0 auto;
}
.home .about .section-inner .blk-1 h3 span {
  margin-top: 2rem;
  font-size: 1.8rem;
  letter-spacing: 0.5rem;
}
.home .about .section-inner .blk-2 {
  width: 50%;
  margin-bottom: 4rem;
}
.home .about .section-inner .blk-2 h4 {
  position: relative;
  margin-bottom: 5rem;
  font-size: 2.4rem;
  line-height: 1.8;
}
.home .about .section-inner .blk-2 h4::after {
  position: absolute;
  content: "";
  bottom: -1.5rem;
  left: 0;
  width: 10rem;
  height: 0.6rem;
  background: url("../img/top/deco-06.png") no-repeat center/contain;
}
.home .about .section-inner .blk-2 p {
  font-size: 1.3rem;
  line-height: 2;
}
.home .about .section-inner .blk-3 {
  overflow: hidden;
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
}
.home .about .section-inner .blk-3 ul {
  display: flex;
  column-gap: 1rem;
  width: 130%;
  margin-left: 1.5rem;
  padding-bottom: 4rem;
}
.home .about .section-inner .blk-3 ul li {
  position: relative;
}
.home .about .section-inner .blk-3 ul li:nth-child(1), .home .about .section-inner .blk-3 ul li:nth-child(3) {
  position: relative;
  top: 4rem;
}
@media (max-width: 599px) {
  .home .about {
    position: relative;
    padding-bottom: 3.5rem;
    background-color: #fff;
  }
  .home .about span[class^=deco] {
    position: absolute;
    z-index: 0;
  }
  .home .about span.deco-01 {
    top: 0;
    left: 0;
    width: 18rem;
  }
  .home .about span.deco-02 {
    top: 24rem;
    right: 0;
    width: 18rem;
  }
  .home .about span.deco-03 {
    bottom: 9rem;
    left: 0;
    width: 10rem;
  }
  .home .about .section-inner {
    position: relative;
    padding: 5rem 1.5rem 1.5rem;
  }
  .home .about .section-inner .blk-1 {
    margin-bottom: 5rem;
  }
  .home .about .section-inner .blk-1 p {
    margin-bottom: 2.6rem;
    font-size: 1.6rem;
    text-align: center;
    line-height: 2;
    letter-spacing: 0.2rem;
  }
  .home .about .section-inner .blk-1 h3 {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 28rem;
    margin: 0 auto;
  }
  .home .about .section-inner .blk-1 h3 span {
    margin-top: 2rem;
    font-size: 1.8rem;
    letter-spacing: 0.5rem;
  }
  .home .about .section-inner .blk-2 {
    margin-bottom: 4rem;
  }
  .home .about .section-inner .blk-2 h4 {
    position: relative;
    margin-bottom: 5rem;
    font-size: 2.4rem;
    line-height: 1.8;
  }
  .home .about .section-inner .blk-2 h4::after {
    position: absolute;
    content: "";
    bottom: -1.5rem;
    left: 0;
    width: 10rem;
    height: 0.6rem;
    background: url("../img/top/deco-06.png") no-repeat center/contain;
  }
  .home .about .section-inner .blk-2 p {
    font-size: 1.3rem;
    line-height: 2;
  }
  .home .about .section-inner .blk-3 {
    overflow: hidden;
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
  .home .about .section-inner .blk-3 ul {
    display: flex;
    column-gap: 1rem;
    width: 130%;
    margin-left: 1.5rem;
    padding-bottom: 4rem;
  }
  .home .about .section-inner .blk-3 ul li {
    position: relative;
  }
  .home .about .section-inner .blk-3 ul li:nth-child(1), .home .about .section-inner .blk-3 ul li:nth-child(3) {
    position: relative;
    top: 4rem;
  }
}
@media (max-width: 599px) {
  .home .service {
    overflow: hidden;
    position: relative;
  }
  .home .service::before {
    z-index: -1;
    position: absolute;
    content: "";
    top: -5rem;
    left: -64rem;
    width: 130rem;
    height: 130rem;
    background-color: #FFE438;
    border-radius: 50%;
  }
  .home .service .section-inner {
    padding: 6rem 1.5rem 2.8rem;
  }
  .home .service .section-inner .panel-01 {
    overflow: hidden;
    border-radius: 2.5rem;
  }
  .home .service .section-inner .panel-01:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .home .service .section-inner .panel-01 .thumbnail {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 23rem;
    background-color: #F6F6F6;
  }
  .home .service .section-inner .panel-01 .thumbnail img {
    width: 23rem;
  }
  .home .service .section-inner .panel-01 .thumbnail .price {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0.4rem 1.5rem;
    font-size: 1.8rem;
    color: #FFE438;
    background-color: #F76161;
    border-radius: 2rem 0 0 0;
  }
  .home .service .section-inner .panel-01 .thumbnail .price span {
    font-size: 2.6rem;
  }
  .home .service .section-inner .panel-01 .thumbnail .deco {
    position: absolute;
    top: 2rem;
    left: 1rem;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.25rem;
    writing-mode: vertical-rl;
  }
  .home .service .section-inner .panel-01 .text {
    padding: 3.5rem 1.75rem;
    background-color: #fff;
  }
  .home .service .section-inner .panel-01 .text h3 {
    position: relative;
    margin-bottom: 4rem;
    font-size: 2rem;
    text-align: center;
  }
  .home .service .section-inner .panel-01 .text h3::after {
    position: absolute;
    content: "";
    bottom: -1.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.4rem;
    background-color: #119CF8;
    border-radius: 0.5rem;
  }
  .home .service .section-inner .panel-01 .text p {
    margin-bottom: 3rem;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.85;
  }
}
@media (max-width: 599px) {
  .home .blog {
    background: url(../img/top/bg-01.jpg) no-repeat center/cover;
  }
  .home .blog .section-inner {
    padding: 4rem 1.5rem 2.8rem;
  }
  .home .blog .section-inner .heading-01 {
    align-items: flex-start;
    margin-bottom: 3rem;
  }
  .home .blog .section-inner .text {
    margin-bottom: 2.6rem;
  }
  .home .blog .section-inner .text p {
    width: fit-content;
    padding: 0.6rem 1rem 0.7rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    background-color: #FF9D00;
    letter-spacing: 0.2rem;
  }
  .home .blog .section-inner .blog-articles {
    overflow-x: auto;
    display: flex;
    column-gap: 2rem;
    width: 100%;
    padding-bottom: 2rem;
  }
  .home .blog .section-inner .blog-articles .panel-02 {
    filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
    width: 30rem;
  }
  .home .blog .section-inner .blog-articles .panel-02 img {
    height: 15.5rem;
    border-radius: 2rem 2rem 0 0;
  }
  .home .blog .section-inner .blog-articles .panel-02 div.content {
    padding: 2rem 2rem;
    background-color: #fff;
  }
  .home .blog .section-inner .blog-articles .panel-02 div.content h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
  }
  .home .blog .section-inner .blog-articles .panel-02 div.content h3 span {
    font-size: 2.2rem;
  }
  .home .blog .section-inner .blog-articles .panel-02 div.content h3 span span {
    font-size: 1.3rem;
  }
  .home .blog .section-inner .blog-articles .panel-02 div.content p {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
  .home .blog .section-inner .blog-articles .panel-02 div.content a {
    display: block;
    width: fit-content;
    min-width: 21.2rem;
    margin: 0 auto;
    padding: 0.8rem 1rem;
    font-size: 1.4rem;
    color: #fff;
    background-color: #585858;
    font-weight: 700;
    text-align: center;
    border-radius: 2rem;
  }
  .home .blog .section-inner .blog-articles .panel-02 .thumbnail {
    position: relative;
  }
  .home .blog .section-inner .blog-articles .panel-02 .thumbnail span {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.2rem;
  }
  .home .blog .section-inner .blog-articles .panel-02 .content {
    color: #333;
  }
  .home .blog .section-inner .blog-articles .panel-02 .content h3 {
    text-align: left;
  }
  .home .blog .section-inner .blog-articles .panel-02 .content .date-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  .home .blog .section-inner .blog-articles .panel-02 .content .date-cat time {
    font-size: 1.2rem;
    font-weight: 400;
  }
  .home .blog .section-inner .blog-articles .panel-02 .content .date-cat .cat {
    padding: 0.2rem 1rem;
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    background-color: #464646;
    border-radius: 2rem;
  }
  .home .blog .section-inner .blog-articles .panel-02 .content .date-cat .cat.works-hp {
    background-color: #F76161;
  }
  .home .blog .section-inner .blog-articles .panel-02 .content {
    border-radius: 0 0 2rem 2rem;
  }
}
@media (max-width: 599px) {
  .home .news {
    overflow: hidden;
    position: relative;
    background-color: #fff;
  }
  .home .news span.deco-01 {
    position: absolute;
    top: -15rem;
    left: -15rem;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background-color: #F76161;
  }
  .home .news span.deco-02 {
    position: absolute;
    bottom: -18rem;
    right: -18rem;
    width: 36rem;
    height: 36rem;
    border-radius: 50%;
    background-color: #FF9D00;
  }
  .home .news .section-inner {
    z-index: 1;
    position: relative;
    padding: 4rem 1.5rem 5rem;
  }
  .home .news .section-inner .heading-01 {
    margin-bottom: 4.6rem;
  }
  .home .news .section-inner .news-articles .news-article {
    overflow: hidden;
    border-radius: 10rem;
  }
  .home .news .section-inner .news-articles .news-article:not(:last-child) {
    margin-bottom: 1rem;
  }
  .home .news .section-inner .news-articles .news-article a {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    column-gap: 1.6rem;
    color: #333;
    background-color: #F9FFD2;
  }
  .home .news .section-inner .news-articles .news-article a .date {
    width: 20%;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
  }
  .home .news .section-inner .news-articles .news-article a h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: calc(73% - 3.2rem);
    max-height: 3em;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    line-height: 1.5;
    text-overflow: ellipsis;
  }
  .home .news .section-inner .news-articles .news-article a .arrow {
    display: flex;
    width: 7%;
  }
  .home .news .section-inner .news-articles .news-article a .arrow span, .home .news .section-inner .news-articles .news-article a .arrow span::before, .home .news .section-inner .news-articles .news-article a .arrow span::after {
    background-color: #FF9D00;
  }
  .home .news .section-inner .news-more {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    width: fit-content;
    margin: 2rem 0 6rem auto;
    font-size: 1.6rem;
    color: #333;
  }
  .home .news .section-inner .news-more > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.6rem;
    height: 2.8rem;
    border-radius: 2rem;
    background-color: #000;
  }
  .home .news .section-inner .news-more > div .symbol-arrow {
    background-color: #fff;
  }
  .home .news .section-inner .news-more > div .symbol-arrow::before, .home .news .section-inner .news-more > div .symbol-arrow::after {
    background-color: #fff;
  }
  .home .news .section-inner .sns-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .home .news .section-inner .sns-list p {
    position: relative;
    width: fit-content;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 400;
  }
  .home .news .section-inner .sns-list p::before, .home .news .section-inner .sns-list p::after {
    position: absolute;
    content: "";
    top: 50%;
    width: 2rem;
    height: 0.15rem;
    background-color: #000;
  }
  .home .news .section-inner .sns-list p::before {
    left: -2.5rem;
    transform: translateY(-50%) rotate(45deg);
  }
  .home .news .section-inner .sns-list p::after {
    right: -2.5rem;
    transform: translateY(-50%) rotate(-45deg);
  }
  .home .news .section-inner .sns-list ul {
    display: flex;
    justify-content: center;
    column-gap: 2rem;
  }
  .home .news .section-inner .sns-list ul li a {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6.2rem;
    height: 6.2rem;
    padding: 1.4rem;
    border-radius: 50%;
    background-color: #000;
  }
}

/*-----------------------------------
 ページタイトル
-----------------------------------*/
.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 8.7rem;
  margin-bottom: 0.6rem;
  padding: 3rem 1rem;
  background-color: #BFBFBF;
}
.page-title h2 {
  margin-bottom: 0.2rem;
  font-size: 2.6rem;
}
.page-title p {
  font-size: 1.6rem;
}

/*-----------------------------------
 共通設定
-----------------------------------*/
@media (max-width: 599px) {
  .container {
    margin-top: 2rem;
    padding: 0 1rem;
  }
}
/*-----------------------------------
 フォーム共通
-----------------------------------*/
.form-heading {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.form-heading .required,
.form-heading .optional {
  margin-left: 1rem;
  padding: 0.2rem 0.6rem 0.3rem;
  font-size: 1rem;
  color: #fff;
  background-color: #F53535;
  border-radius: 0.5rem;
}
.form-heading .optional {
  background-color: #BFBFBF;
}

.page-contact,
.page-confirm,
.page-complete {
  background-color: #e8e8e8;
}

/*-----------------------------------
 お問い合わせ
-----------------------------------*/
.page-contact .top-lead {
  margin-bottom: 5.2rem;
  font-size: 1.4rem;
  line-height: 1.75;
}
.page-contact form .form-group {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-bottom: 3rem;
}
.page-contact form .form-group label {
  position: relative;
  display: flex;
  align-items: center;
  height: 5.2rem;
  padding-left: 5.2rem;
  font-size: 1.3rem;
  background-color: #F9F8F7;
}
.page-contact form .form-group label::before, .page-contact form .form-group label::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 1.3rem;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background-color: #fff;
  border: 0.1rem solid #000;
  border-radius: 50%;
}
.page-contact form .form-group label::after {
  left: 1.6rem;
  width: 1rem;
  height: 1rem;
  background-color: transparent;
  border-color: #fff;
}
.page-contact form .form-group label input[type=radio] {
  display: none;
}
.page-contact form .form-group label:has(input:checked)::after {
  background-color: #0075FF;
}
.page-contact form .form-group > select {
  display: flex;
  align-items: center;
  width: 70%;
  height: 4.5rem;
  padding: 0.5rem 1.2rem;
  background-color: #F9F8F7;
  border: 0.1rem solid #BFBFBF;
  border-radius: 1rem;
}
.page-contact form .form-group > input {
  display: flex;
  align-items: center;
  height: 4.5rem;
  padding: 0.5rem 1.2rem;
  background-color: #F9F8F7;
  border: none;
}
.page-contact form .form-group > input::placeholder {
  font-size: 1.3rem;
  color: #999999;
}
.page-contact form .form-group > textarea {
  height: 12.5rem;
  padding: 1.2rem 1.2rem;
  background-color: #F9F8F7;
  border: none;
}
.page-contact form .form-group > textarea::placeholder {
  font-size: 1.3rem;
  color: #999999;
}
.page-contact form .form-submit {
  margin-bottom: 8rem;
  text-align: center;
  transition: all 0.3s;
}
.page-contact form .form-submit input {
  background-color: #FEDA5C;
  border: none;
  width: 20rem;
  height: 5rem;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}
@media (hover: hover) {
  .page-contact form .form-submit:hover {
    opacity: 0.8;
  }
}

.page-confirm .container {
  margin-top: 5rem;
}
.page-confirm .container main h2 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
}
.page-confirm .container main p {
  display: flex;
  align-items: center;
  height: 4.5rem;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem 0.4rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  background-color: #f3f3f3;
}
.page-confirm .container main p.textarea {
  min-height: 8rem;
}
.page-confirm .container main .confirm-btns {
  display: flex;
  justify-content: center;
  column-gap: 1.4rem;
  margin-top: 3rem;
  margin-bottom: 8rem;
}
.page-confirm .container main .confirm-btns form button[type=submit] {
  width: 10rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #99cdff;
  cursor: pointer;
}
.page-confirm .container main .confirm-btns form:nth-child(2) button[type=submit] {
  background-color: #FEDA5C;
}

.page-complete .container {
  margin-top: 5rem;
}
.page-complete .container main h2 {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  text-align: center;
}
.page-complete .container main p {
  font-size: 1.3rem;
  line-height: 2;
  text-align: center;
}
.page-complete .container main a.back-to-top {
  display: block;
  width: 14rem;
  margin: 5rem auto 8rem;
  font-size: 1.5rem;
  text-decoration: underline;
}

/*-----------------------------------
 共通｜記事一覧
-----------------------------------*/
.post-list {
  display: flex;
  column-gap: 1.2rem;
}

.post-list-heading {
  margin-bottom: 2rem;
}
.post-list-heading h3 {
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
}

.post-panel {
  width: calc(50% - 0.6rem);
}
.post-panel .thumbnail {
  position: relative;
  width: 100%;
  height: 12rem;
  margin-bottom: 0.8rem;
}
.post-panel .thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
}
.post-panel .thumbnail a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-panel .thumbnail .category {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.2rem 0.6rem;
  font-size: 1.2rem;
  color: #fff;
  background-color: #f27575;
}
.post-panel .meta {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 400;
}
.post-panel h4.title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 1.5;
  max-height: 3em;
  font-size: 1.3rem;
  line-height: 1.5;
  text-overflow: ellipsis;
}

.pagination {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  background-color: #f27575;
  color: #fff;
}
.pagination .current {
  background-color: #d3d3d3;
  color: #333;
}

/*-----------------------------------
 xxxx
-----------------------------------*/
.post-type-archive-tukublog .container,
.tax-tukublog_cat .container,
.tax-tukublog_tag .container {
  margin-bottom: 8rem;
}
.post-type-archive-tukublog .container main,
.tax-tukublog_cat .container main,
.tax-tukublog_tag .container main {
  margin-bottom: 8rem;
}
.post-type-archive-tukublog .container main .recommend,
.tax-tukublog_cat .container main .recommend,
.tax-tukublog_tag .container main .recommend {
  margin-bottom: 4rem;
}
.post-type-archive-tukublog .container main .category,
.tax-tukublog_cat .container main .category,
.tax-tukublog_tag .container main .category {
  margin-bottom: 4rem;
}
.post-type-archive-tukublog .container main .category h3,
.tax-tukublog_cat .container main .category h3,
.tax-tukublog_tag .container main .category h3 {
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
}
.post-type-archive-tukublog .container main .category .category-list,
.tax-tukublog_cat .container main .category .category-list,
.tax-tukublog_tag .container main .category .category-list {
  display: flex;
  column-gap: 1.1rem;
  row-gap: 1.1rem;
}
.post-type-archive-tukublog .container main .category .category-list li,
.tax-tukublog_cat .container main .category .category-list li,
.tax-tukublog_tag .container main .category .category-list li {
  padding: 0.8rem 0.8rem;
  font-size: 1.3rem;
  color: #333;
  background-color: #D9D9D9;
  border-radius: 0.8rem;
}
.post-type-archive-tukublog .container main .blog-post .pagination,
.tax-tukublog_cat .container main .blog-post .pagination,
.tax-tukublog_tag .container main .blog-post .pagination {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.single-tukublog .container {
  margin-top: 4rem;
  margin-bottom: 8rem;
}
.single-tukublog .container .post-navigation {
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
}
.single-tukublog .container .post-navigation .prev-post,
.single-tukublog .container .post-navigation .next-post {
  width: 48%;
  height: 5rem;
}
.single-tukublog .container .post-navigation .prev-post a,
.single-tukublog .container .post-navigation .next-post a {
  display: flex;
  align-items: center;
  height: 100%;
  border: 0.1rem solid #ccc;
}
.single-tukublog .container .post-navigation .prev-post a .thumbnail,
.single-tukublog .container .post-navigation .next-post a .thumbnail {
  width: 40%;
  height: 100%;
}
.single-tukublog .container .post-navigation .prev-post a .thumbnail img,
.single-tukublog .container .post-navigation .next-post a .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-tukublog .container .post-navigation .prev-post a .title,
.single-tukublog .container .post-navigation .next-post a .title {
  overflow: hidden; /* はみ出した内容を隠す */
  text-overflow: ellipsis; /* 省略記号「...」を表示 */
  display: -webkit-box; /* 必須: フレックスボックスの代わり */
  align-items: center;
  -webkit-box-orient: vertical; /* 縦方向に配置 */
  -webkit-line-clamp: 2; /* 表示する行数を指定 (ここでは2行) */
  line-height: 1.5; /* 行間を調整 (必要に応じて変更) */
  width: 60%;
  max-height: 3.8em; /* 2行分の高さを設定 (1.5行 * 2行 = 3em) */
  padding: 0.5rem 1rem;
}