@charset "utf-8";

/*
Theme Name: O-Live
Description: O-LiveのレスポンシブWordPressテーマテンプレートです。
Version： 1.1
Author: O-Live
*/

:root {
  --font-def: "Zen Old Mincho", serif;
  --font-en: "Roboto", sans-serif;
  --header-width: 16vw;
  --header-height-sp: 96px;
  --deco-li: underline 1px dotted rgba(0, 0, 0, .3);
  --color-main: #237a08;
  --color-text: #693C0E;
  --color-mv: #85b84a;
  --color-white: #fff;
  --color-black: #333;
  --color-grey: #949494;
  --color-red: #ed280e;
  --color-blue: #415aeb;
  --color-pink: #f73cde;
  --color-orange: #ff950b;
  --color-violet: #8f24d6;
  --color-green: #43af28;
  --color-lime: #cff525;
  --color-brown-dark: #6e5146;
  --color-brown-light: #9e856d;
  --color-silver: #ebedef;
  --color-bg: #fcf6ee;
  --color-bg-alt: #c7c7a9;
  --color-bg-alt40: rgba(199, 199, 169, .4);
  --color-bg-header: rgba(255, 255, 255, .8);
  --color-bg-footer: #f4f4f4;
  --color-bg-monochrome: #f2f3f7;
  --color-bg-breadcrumbs: #f5f0e7;
  --color-grad-menu: linear-gradient(to right, transparent 10%, rgba(145, 255, 0, 0.333) 80%, rgba(65, 212, 28, 0.664) 150%);
  --color-grad-contact: linear-gradient(121deg, rgb(14, 54, 128), rgba(42, 119, 39, 0.8) 60%, rgb(201, 204, 17));
  --color-border: #dfdfdf;
  --color-shadow: rgba(0, 0, 0, 0.2);
}

html {
  font-size: 62.5%;
  scroll-padding-top: calc(90px + 2rem);
}

/*** Body ***/
body {
  font-family: var(--font-def);
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text);
  background-color: var(--color-bg);
}

.grecaptcha-badge {
  display: none !important;
}

a:hover {
  color: var(--color-main);
  transition: all .1s linear;
}

a:hover img {
  opacity: 0.75 !important;
  transition: all .1s linear;
}

span.green {
  color: var(--color-main);
}

span.u-line {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 200, 0, 0.5);
  text-underline-offset: -0.2em;
}

.btn-rCorners {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 250px;
  margin: 30px auto;
  padding: 18px 10px;
  color: var(--color-white);
  background: var(--color-brown-dark);
  border: 2px solid var(--color-brown-dark);
  border-radius: 50px;
  box-shadow: 0px 0px 5px var(--color-shadow);
  transition: all .2s ease-in-out;
}

.btn-rCorners:hover {
  color: var(--color-white);
  background: var(--color-brown-light);
  border: 2px solid #9c8772;
}

#wrapper {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

/*** Header ***/
.header {
  position: fixed;
  width: var(--header-width);
  height: 100%;
  background-color: var(--color-bg-header);
  backdrop-filter: blur(6px);
  border-right: 1px solid var(--color-border);
  z-index: 100;
}

.header-inner {
  position: relative;
  width: 100%;
  text-align: right;
  padding: 0;
}

.header .header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0 0 0;
}

.header .header-logo img {
  display: block;
  width: 200px;
  height: auto;
}

.header .pc-nav {
  padding: 6vh 0 0 0;
}

.header .pc-nav ul.menu-list>li {
  position: relative;
  margin: 6vh 0 0 0;
  background: transparent;
  transition: all .3s;
}

.header .pc-nav ul.menu-list>li:hover {
  background: var(--color-grad-menu);
}

.header .pc-nav ul.menu-list>li .menu-item {
  display: block;
  padding: 1rem 0;
  padding-right: clamp(1rem, 1.1vw, 2.4rem);
}

.header .pc-nav ul.menu-list>li .menu-item span.jp {
  margin: 0;
  line-height: 1.6;
  font-size: clamp(1.4rem, 1.35vw, 2rem);
  letter-spacing: 0.05em;
  color: var(--color-main);
}

.header .pc-nav ul.menu-list>li .menu-item p.en {
  margin: 0;
  line-height: 1.2;
  font-size: clamp(1.6rem, 1.36vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--color-black);
}

.header .pc-nav ul.menu-list>li .megaMenu {
  position: absolute;
  z-index: 99;
  text-align: left;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: var(--header-width);
  background-color: var(--color-bg-header);
  border: 1px double var(--color-border);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.header .pc-nav ul.menu-list>li:hover .megaMenu {
  opacity: 1;
  visibility: visible;
}

.header .pc-nav ul.menu-list>li .megaMenu .megaMenu-list {
  padding: 30px;
}

.header .pc-nav ul.menu-list>li .megaMenu .megaMenu-item {
  display: block;
}

.header .pc-nav ul.menu-list>li .megaMenu .megaMenu-item:not(:last-child) {
  margin-bottom: 1.6rem;
}

.header .pc-nav ul.menu-list>li .megaMenu .megaMenu-item a {
  display: inline-block;
  width: 100%;
  color: var(--color-text);
}

.header .pc-nav ul.menu-list>li .megaMenu .megaMenu-item:hover a {
  color: var(--color-main);
  background: var(--color-grad-menu);
}

@media screen and (max-width: 1260px) {
  .header-inner .header-logo img {
    width: 160px;
  }
}

@media screen and (max-width: 999px) {
  .header {
    position: fixed;
    width: 100%;
    height: 96px;
    border-right: unset;
    border-bottom: 1px solid var(--color-border);
  }

  .header-inner {
    position: relative;
    width: 100%;
    text-align: right;
    padding: 0;
  }

  .header .header-logo {
    margin: 2rem 0 1.2rem;
  }

  .header-inner .header-logo img {
    width: 180px;
  }
}

/*** 404 Not Found ***/
.page-404 .error-message {
  display: block;
  margin: 4rem 0 2rem;
  font-family: var(--font-en);
  font-size: 6rem;
}

/*** Main ***/
main {
  background: var(--color-bg);
}

.side-sec {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-left: var(--header-width);
}

@media screen and (max-width: 999px) {
  .side-sec {
    padding-top: 40px;
    padding-bottom: 20px;
    margin-left: 0;
  }
}

#breadcrumbs {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8rem;
  background-color: var(--color-bg-breadcrumbs);
}

#breadcrumbs .breadcrumbs-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

#breadcrumbs ol.breadcrumbs-list {
  margin: 0;
  padding: 0;
}

#breadcrumbs li.breadcrumbs-element {
  display: inline-block;
}

#breadcrumbs li.breadcrumbs-element:not(:last-child)::after {
  content: ">";
  margin: 0 1rem;
}

#breadcrumbs li.breadcrumbs-element a {
  color: var(--color-text);
  text-decoration: var(--deco-li);
  text-underline-offset: 2px;
  transition: color .1s;
}

#breadcrumbs li.breadcrumbs-element a:hover {
  color: var(--color-main);
}

@media screen and (max-width: 999px) {
  #breadcrumbs {
    margin-top: var(--header-height-sp);
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.sec-inner {
  position: relative;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 6%;
}

.sec-inner.bg-slide {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.sec-inner.bg-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 120vw;
  width: calc(100vw - var(--header-width));
  height: 100%;
  background-color: var(--color-white);
  border-radius: 5rem;
  box-shadow: 0px 0.5rem 1.6rem 0px rgba(0, 0, 0, .35);
  -webkit-transition: all 1.2s;
  transition: all 1200ms;
}

.sec-inner.bg-slide.js-show::before {
  left: 0;
}

.sec-inner.bg-slide .container {
  position: relative;
  margin: 0 4% 0 8%;
  opacity: 0;
  -webkit-transition: opacity 1400ms 1200ms;
  transition: opacity 1400ms 1200ms;
}

.sec-inner.bg-slide.js-show .container {
  opacity: 1;
}

@media screen and (max-width: 1800px) {
  .sec-inner.bg-slide::before {
    margin-left: 6%;
  }

  .sec-inner.bg-slide .container {
    margin: 0 4% 0 calc(6% + 5vw);
  }
}

@media screen and (max-width: 999px) {
  .sec-inner.bg-slide::before {
    width: 120vw;
    margin-left: 4%;
  }

  .sec-inner.bg-slide .container {
    margin: 0 2% 0 8%;
  }
}

.ol-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.ol-col {
  flex: 0 0 50%;
  max-width: 50%;
}

@media screen and (min-width: 768px) {
  .col-3 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .col-4 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
  }

  .col-6 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
  }
}

@media screen and (max-width: 767px) {
  .ol-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.head-cent {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.head-cent .title {
  position: relative;
  margin: 0 0 3rem;
  line-height: 1.8;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  letter-spacing: 0.1em;
}

.head-cent .title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  bottom: -8px;
  left: 50%;
  background-color: var(--color-main);
  border-radius: 2px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.head-cent .sub {
  margin: 0;
  font-size: clamp(1.6rem, 1.875vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .head-cent {
    margin-bottom: 20px;
  }

  .head-cent .title {
    margin-bottom: 2.4rem;
  }
}

.head-withcap {
  position: relative;
  text-align: left;
  padding-bottom: 40px;
  border-bottom: 6px dotted var(--color-bg-alt);
}

.head-withcap .title {
  position: relative;
  margin: 0 0 3rem;
  line-height: 1.8;
  font-size: clamp(3rem, 4.2vw, 4.6rem);
  letter-spacing: .05em;
}

.head-withcap .title span.sub {
  display: block;
  margin: 0;
  font-size: clamp(1.5rem, 1.65vw, 1.8rem);
  letter-spacing: .05em;
  color: var(--color-black);
}

.head-withcap .caption {
  font-size: clamp(1.6rem, 1.875vw, 1.8rem);
  letter-spacing: .05em;
}

@media screen and (min-width: 1400px) {
  .head-withcap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .head-withcap .title {
    width: 60%;
  }

  .head-withcap .caption {
    width: 40%;
    max-width: 300px;
  }
}

.colorbox {
  position: relative;
  padding-left: 22px;
  background-image: linear-gradient(var(--color-lime) 50%, var(--color-green) 50%);
  background-size: 8px 100%;
  background-repeat: no-repeat;
}

.leaf-icon {
  padding-left: 2.6rem;
  background: url(images/icon_leaf.png) no-repeat left center / 1.8rem;
}

/*** Post ***/
.article-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 1199px) {
  .article-inner {
    padding: 0 6%;
  }
}

.page-header {
  position: relative;
  width: 100%;
  margin: 3.2rem auto;
  padding-bottom: 3.2rem;
  text-align: left;
}

.page-header-inner {
  width: 100%;
  height: 100%;
}

.page-header .page-title {
  margin-bottom: .8rem;
  font-size: clamp(2.2rem, 2.5vw, 3rem);
  line-height: 1.6;
  font-weight: 600;
  color: var(--color-main);
}

.page-header .post-date {
  margin-right: 1.2rem;
  color: var(--color-black);
}

.page-header .works-launch {
  display: inline-block;
  margin-right: 1.2rem;
  letter-spacing: .05em;
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .page-header {
    padding-bottom: 0;
  }
}

.page-content {
  position: relative;
  width: 100%;
  margin: 0 auto 40px;
  text-align: left;
}

.page-content p,
.page-content a {
  font-size: clamp(1.5rem, 1.5vw, 1.6rem);
  font-weight: 400;
  line-height: 2.2;
}

.post-taxonomy {
  display: inline-block;
  margin: 0;
}

.post-taxonomy .term {
  padding: .3rem 1.6rem;
  font-size: 1.5rem;
  line-height: 2.6rem;
  color: var(--color-white);
  background-color: #385edb;
  border-radius: 20px;
}

.post-taxonomy .term:not(:last-child) {
  margin-right: 1.2rem;
}

.post-content {
  margin: 0;
  padding: 0 10px;
  color: var(--color-black);
}

.post-content table {
  table-layout: fixed !important;
  width: 90% !important;
  margin: 0 auto;
}

.post-content table tr {
  color: var(--color-text);
}

.post-content table td {
  font-weight: 400;
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .post-content table {
    table-layout: auto !important;
    width: 100% !important;
  }
}

.post-content .post-h2 {
  margin: 1.2rem 0;
  padding-left: 1.8rem;
  font-size: clamp(2rem, 2.25vw, 2.4rem);
  color: var(--color-text);
  background-image: linear-gradient(var(--color-lime) 50%, var(--color-green) 50%);
  background-size: 4px 100%;
  background-repeat: no-repeat;
}

.post-content .post-h3 {
  margin-top: 1rem;
  font-size: 1.8rem;
}

.post-content .post-h4 {
  margin-top: 0.8rem;
  font-size: 1.6rem;
}

.works-thumbnail {
  margin-bottom: 4.6rem;
}

.works-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  /*box-shadow: 2px 10px 20px 2px var(--color-shadow);*/
}

.works-information {
  margin-bottom: 3.2rem;
}

.works-information .works-information-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding: 1.4rem 0;
  font-size: clamp(1.2rem, 1.2vw, 1.3rem);
  color: var(--color-black);
  border-bottom: 1px solid var(--color-border);
}

.works-information .works-information-item .works-information-item-title {
  flex-shrink: 0;
  width: 230px;
  padding-left: 4rem;
}

.works-information .works-information-item .works-information-item-content {
  padding-right: 4rem;
}

.works-information .works-information-item .works-information-item-content p,
.works-information .works-information-item .works-information-item-content a {
  font-size: clamp(1.4rem, 1.4vw, 1.5rem);
}

.works-information .works-information-item .works-information-item-content a {
  color: var(--color-main);
  font-weight: 600;
}

.works-information .works-information-item .works-information-item-content a:hover {
  color: var(--color-text);
}

.works-detail {
  margin-bottom: 3.2rem;
}

.works-detail h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 1.6vw, 1.9rem);
  font-weight: 600;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .works-information .works-information-item {
    gap: 2rem;
  }
	
  .works-information .works-information-item .works-information-item-title {
    width: 90px;
    padding-left: 1rem;
  }
	
  .works-information .works-information-item .works-information-item-content {
    padding-right: 1rem;
  }
}

#archive {
  position: relative;
}

#archive ul.post-list {
  list-style: none;
  width: 85%;
  margin: 2rem auto;
  padding: 0;
}

#archive ul.post-list>li.post-item {
  width: 100%;
  margin-bottom: 2em;
  text-align: left;
}

#archive ul.post-list>li.post-item .post-item-thumbnail {
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: .625rem;
}

#archive ul.post-list>li.post-item .post-item-thumbnail img {
  width: 100%;
}

#archive ul.post-list>li.post-item .post-item-taxonomy .term {
  margin-right: .8rem;
  padding: .6rem 1.8rem .4rem;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--color-white);
  background: var(--color-orange);
  border-radius: 5rem;
}

#archive ul.post-list>li.post-item .post-item-title {
  margin: 1em 0;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text);
  transition: all .1s linear;
}

#archive ul.post-list>li.post-item .post-item-title:hover {
  color: var(--color-main);
}

@media screen and (min-width: 768px) {
  #archive ul.post-list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-evenly;
    margin: 6rem 0 0;
    padding: 0;
  }

  #archive ul.post-list>li.post-item {
    width: calc((100% / 3) - 1.5%);
  }
}

.wpSinglePager {
  width: fit-content;
  margin: 0 auto;
}

.wpSinglePager a {
  margin: 0 1.2rem;
  text-decoration: var(--deco-li);
  text-underline-offset: 2px;
  color: var(--color-main);
}

.wpSinglePager a:hover {
  color: var(--color-text);
}

.wpPagination .nav-links {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding: 2rem 0 0;
}

.wpPagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  background: var(--color-bg-alt40);
  border: 1px solid var(--color-bg-alt);
  border-radius: 1.2rem;
  box-shadow: 0px 0.5rem 1rem 0px var(--color-shadow);
}

.wpPagination .page-numbers:not(:last-child) {
  margin-right: 1.4rem;
}

.wpPagination .page-numbers.prev,
.wpPagination .page-numbers.next {
  width: 10rem;
}

.wpPagination .page-numbers.prev,
.wpPagination .page-numbers.next,
.wpPagination .page-numbers.dots {
  font-size: 1.4rem;
}

.wpPagination a.page-numbers {
  text-decoration: var(--deco-li);
  text-underline-offset: 2px;
  color: var(--color-main);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all .3s;
}

.wpPagination a.page-numbers:hover {
  color: var(--color-text);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

@media screen and (max-width: 767px) {
  .wpPagination .page-numbers {
    height: 4rem;
    font-size: 1.4rem;
  }
}

/*** Section ***/
#mainVisual {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1400px;
  background: url(images/mainVisual.jpg) no-repeat;
  background-position: left center;
  background-size: cover;
}

#mainVisual .particle-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

#mainVisual .particle-wrap canvas {
  position: absolute;
  top: 0;
  right: 0;
}

#mainVisual .txt-area {
  position: absolute;
  text-align: left;
  right: 0;
  bottom: 100px;
  padding: 20px;
}

#mainVisual .catch {
  position: relative;
  padding-left: 1.2rem;
  padding-bottom: 8px;
  font-size: clamp(42px, 8vw, 144px);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--color-mv);
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

#mainVisual .sub {
  position: relative;
  font-size: clamp(22px, 2vw, 48px);
  line-height: 2;
  letter-spacing: 0;
  margin-top: -4px;
  padding-left: 2rem;
  color: var(--color-black);
  background-color: var(--color-white);
  z-index: 1;
}

#mainVisual .sitetitle {
  position: absolute;
  right: 8px;
  bottom: 2px;
  font-size: 12px;
  color: var(--color-black);
}

@media screen and (max-width: 999px) {
  #mainVisual {
    background-position: center center;
  }
}

@media screen and (max-width: 767px) {
  #mainVisual {
    background: url(images/mainVisual_sp.jpg) no-repeat;
    background-position: top center;
    background-size: cover;
  }

  #mainVisual .txt-area {
    bottom: 60px;
  }

  #mainVisual .sub {
    line-height: 1.6;
  }
}

#top-works {
  position: relative;
}

#top-works #top-voices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  margin: 0 auto;
  padding-bottom: 2.4rem;
  text-align: left;
}

#top-works #top-voices .voice-item {
  padding: 4.8rem 3.6rem;
  background: var(--color-white);
  border-radius: 2.4rem;
  box-shadow: 0 10px 5px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
}

#top-works #top-voices .voice-item .voice-title {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: var(--color-black);
}

#top-works #top-voices .voice-item .review-star {
  display: flex;
  justify-content: left;
  gap: .3rem;
  margin-bottom: 1.6rem;
}

#top-works #top-voices .voice-item .review-star img.icon-star {
  width: 1.8rem;
}

#top-works #top-voices .voice-item .voice-txt {
  font-size: 1.56rem;
  opacity: .9;
}

@keyframes slideshow {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

#top-works .slideshow-wrap {
  overflow: hidden;
}

#top-works .slideshow {
  display: flex;
  height: auto;
  margin: 2rem 0;
}

#top-works .slideshow ul.slide-items {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  align-items: center;
  animation: slideshow 24s linear infinite;
}

#top-works .slideshow ul.slide-items>li {
  display: inline-block;
  width: calc(100vw / 6);
  padding-left: 10px;
}

#top-works .slideshow ul.slide-items img {
  width: 100%;
}

#top-works .btn-rCorners {
  margin-top: 60px;
}

@media screen and (max-width: 1199px) {
  #top-works .slideshow {
    animation: slideshow 12s linear infinite;
  }

  #top-works .slideshow ul.slide-items {
    width: 200%;
  }

  #top-works .slideshow ul.slide-items>li {
    width: calc(100vw / 3);
  }
}

@media screen and (max-width: 767px) {
  #top-works #top-voices {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  #top-works #top-voices .voice-item {
    padding: 3.2rem 3rem;
  }

  #top-works .btn-rCorners {
    margin-top: 40px;
  }
}

#top-service {
  position: relative;
}

#top-service .sec-inner .service-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 40px;
  margin-top: 60px;
}

#top-service .service-items .service-item {
  position: relative;
  text-align: left;
  width: 100%;
  padding: 0 0 2vw;
}

#top-service .service-item:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

#top-service .service-item .num {
  position: absolute;
  display: inline;
  z-index: 1;
  width: 100%;
  margin: 0 8px;
  top: 54px;
  left: 0;
  text-align: center;
  font-size: clamp(22rem, 58vw, 44rem);
  font-weight: 400;
  line-height: 0.8;
  color: var(--color-green);
  -webkit-text-stroke: 1px var(--color-border);
  opacity: 0.1;
}

#top-service .service-item h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 3.6rem;
  font-size: clamp(2.2rem, 2vw, 3.6rem);
  color: var(--color-main);
}

#top-service .service-item .inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1vw;
}

@media screen and (min-width: 1000px) {
  #top-service .service-item:nth-child(odd) .inner {
    flex-direction: row-reverse;
  }
}

#top-service .service-item .inner .img-area {
  display: flex;
  align-items: center;
  width: 40%;
  margin: 0 auto;
  padding: 0 1vw 1vw;
}

#top-service .service-item .inner .img-area img {
  width: 100%;
}

#top-service .service-item .inner .txt-area {
  width: 60%;
  padding: .5vw;
  color: var(--color-black);
}

#top-service .service-item .inner .txt-area span.headline {
  font-size: clamp(1.8rem, 2.75vw, 2.4rem);
  letter-spacing: .05em;
}

#top-service .service-item .inner .txt-area p.caption {
  margin: 2.4rem 0;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.8;
}

#top-service .service-item .inner .txt-area ul.service-type {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 1.2rem 0 2rem;
}

#top-service .service-item .inner .txt-area ul.service-type>li {
  display: inline-block;
  padding: 4px 13px;
  font-size: 1.2rem;
  color: var(--color-white);
  background-color: var(--color-brown-light);
  border-radius: 2px;
}

@media screen and (max-width: 1299px) {
  #top-service .service-item h3 {
    margin-bottom: 2rem;
  }

  #top-service .service-item h3 .num {
    margin-top: 4rem;
    font-size: 36rem;
  }

  #top-service .service-item .inner {
    display: block;
  }

  #top-service .service-item .inner .img-area {
    width: 80%;
  }

  #top-service .service-item .inner .txt-area {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #top-service .service-item h3 .num {
    font-size: 28rem;
  }

  #top-service .service-item .inner .img-area {
    width: 100%;
  }
}

#contact {
  position: relative;
  height: 320px;
  margin-top: 60px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background-image: var(--color-grad-contact);
  background-size: 180% 100%;
  transition: all .8s cubic-bezier(0.45, 0, 0.55, 1);
}

#contact:hover {
  background-position: 100% 0;
}

#contact .sec-inner {
  max-width: unset;
}

#contact .contact-mask {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

#contact .contact-text {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-style: normal;
  font-size: clamp(3rem, 4vw, 4.2rem);
  font-weight: 400;
  color: var(--color-white);
  transition: .5s;
}

#contact .contact-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 100%;
  width: 40px;
  height: 5px;
  margin-left: 6px;
  border: none;
  border-right: 2px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transform: skew(45deg);
  transition: all .5s;
}

#contact:hover .contact-text {
  -webkit-transform: translate(-55%, -50%);
  transform: translate(-55%, -50%);
  letter-spacing: .025em;
}

#contact:hover .contact-text::after {
  width: 60px;
}


.newsList {
  display: flex;
  flex-wrap: wrap;
}

.newsList .newsList_Item {
  display: block;
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.newsList .newsList_Item:not(:first-child) {
  margin-top: 1rem;
}

.newsList .newsList_Item span,
.newsList .newsList_Item h3 {
  display: block;
  float: left;
  line-height: 1.85rem;
  white-space: nowrap;
}

.newsList .newsList_Item span.postDate {
  min-width: 120px;
  font-size: 1.5rem;
  margin-right: 1.2rem;
}

.newsList .newsList_Item span.postCategory {
  min-width: 150px;
  margin-right: 2.5rem;
  text-align: center;
  font-size: 1.4rem;
  color: var(--color-white);
  background-color: #385edb;
  border-radius: 50px;
}

/*** Page ***/
.preparation {
  margin-top: 80px;
  text-align: center;
}

.preparation span {
  display: inline-block;
  padding: 1.6rem 2.2rem;
  font-size: clamp(4.2rem, 4vw, 5.2rem);
  transform: rotate(-10deg);
  color: var(--color-red);
  border: 3px solid var(--color-red);
  border-radius: 24px;
}

#about-fv {
  position: relative;
  text-align: left;
  background: url(images/bg_page.png) no-repeat;
  background-position: top center;
  background-size: cover;
}

#about-fv::before {
  content: "";
  position: absolute;
  height: 60px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--color-bg) 100%);
  z-index: 1;
}

#about-fv h1 {
  font-size: clamp(3rem, 4.75vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

#about-fv h1 span {
  padding-left: 2rem;
  font-size: clamp(1.6rem, 2vw, 2rem);
  letter-spacing: 0.1em;
  color: var(--color-main);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  opacity: .9;
}

#about-fv .txt-area {
  max-width: 1100px;
  margin: 8rem 0 16rem;
  padding: 0;
}

#about-fv .txt-area .headline {
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--color-black);
  opacity: .9;
}

#about-fv .txt-area .content {
  margin-top: 6rem;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 2.8;
}

#about-value {
  position: relative;
}

#about-value .value-item-wrap {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

#about-value .value-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 1rem;
  padding: 2.4rem;
  gap: 2.4rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 1.2rem;
}

#about-value .value-item-title {
  width: 30%;
  padding-left: 2.4rem;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  font-weight: 400;
  color: var(--color-main);
}

#about-value .value-item-caption {
  width: 70%;
  font-size: clamp(1.4rem, 1.825vw, 2rem);
  font-weight: 400;
  color: var(--color-black);
}

#about-outline {
  position: relative;
}

#about-outline dl.outline {
  max-width: 600px;
  margin: 5rem auto 0;
}

#about-outline dl.outline dt {
  float: left;
}

#about-outline dl.outline dd {
  margin: 0 0 2.8rem 10rem;
  text-align: left;
  color: var(--color-black);
  opacity: .9;
}

@media screen and (max-width: 999px) {
  #about-fv .txt-area {
    margin-top: 6rem;
  }
}

@media screen and (max-width: 767px) {
  #about-fv {
    text-align: center;
    background-position: top right;
  }

  #about-value .value-item {
    padding: 1.8rem;
    gap: 1.8rem;
  }

  #about-value .value-item-title {
    padding-left: 1rem;
  }
}

#plan-fv {
  position: relative;
  text-align: left;
}

#plan-fv .head-withcap .title {
  color: var(--color-main);
}

#plan-fv .ol-row {
  padding-bottom: 6rem;
}

#plan-fv .plan-img {
  width: 100%;
  padding: 0 2rem;
}

#plan-fv .plan-img img {
  width: 100%;
}

#plan-fv .plan-intro {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
}

#plan-fv .plan-intro p {
  line-height: 2.2;
}

#plan-fv .content-type {
  padding-top: 8rem;
  border-top: 1px solid var(--color-border);
}

#plan-fv .content-type .content-type-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  row-gap: 60px;
}

#plan-fv .content-type .content-type-list .content-type-item {
  position: relative;
  text-align: left;
  width: calc((100% - 60px *2) / 3);
}

#plan-fv .content-type .content-type-list .content-type-item .num {
  position: absolute;
  display: inline-block;
  top: 0;
  padding-bottom: 2px;
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-main);
  border-bottom: solid 2px var(--color-main);
}

#plan-fv .content-type .content-type-list .content-type-item h3.title {
  display: block;
  margin: 6.4rem 0 0 0;
  font-size: clamp(1.6rem, 1.75vw, 2rem);
  line-height: 1.4;
  font-weight: bold;
}

#plan-fv .content-type .content-type-list .content-type-item p {
  margin: 1em 0;
  font-size: clamp(1.48rem, 1.45vw, 1.6rem);
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  #plan-fv .content-type .content-type-list .content-type-item {
    width: 100%;
  }
}

#plan-feature {
  position: relative;
  text-align: left;
}

#plan-feature h2 {
  padding-bottom: 4.2rem;
  text-align: right;
  font-size: clamp(4.4rem, 10vw, 12.6rem);
  font-weight: 400;
  color: var(--color-bg-alt40);
}

#plan-feature h3 {
  margin: 0 0 2.4rem;
  padding-top: 1.6rem;
  font-size: clamp(2.2rem, 2vw, 2.8rem);
  color: var(--color-black);
}

#plan-feature .feature-item:not(:last-child) {
  margin-bottom: 8rem;
}

@media screen and (min-width: 1000px) {
  #plan-feature .feature-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

#plan-feature .feature-txt {
  padding: 1.2rem;
  font-size: clamp(1.6rem, 1.2vw, 1.8rem);
  font-weight: 400;
  line-height: 2;
  color: var(--color-black);
}

#plan-feature .feature-txt ul {
  list-style: none;
  margin-top: 2.6rem;
  padding: 0;
}

#plan-feature .feature-txt ul .list-item {
  font-size: clamp(1.4rem, 1.75vw, 1.6rem);
  font-weight: 600;
  color: var(--color-brown-dark);
  border-radius: 6px;
  box-shadow: 0 10px 5px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
}

#plan-feature .feature-txt ul.grid-list .list-item {
  text-align: center;
  margin: 5px;
  padding: 1rem .8rem;
  background-color: var(--color-bg-alt40);
}

#plan-feature .feature-txt ul.original-list .list-item {
  margin-top: 12px;
  padding: 1rem 1.2rem;
  background-color: var(--color-silver);
}

#plan-feature .feature-txt ul.original-list .list-item p {
  display: inline-block;
}

#plan-feature .feature-txt ul.original-list .list-item span {
  position: relative;
  padding-left: 72px;
  letter-spacing: 1.2px;
  color: var(--color-orange);
  opacity: .9;
}

#plan-feature .feature-txt ul.original-list .list-item span::before {
  content: '';
  position: absolute;
  width: 52px;
  height: 1px;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  background-color: var(--color-black);
}

#plan-feature .feature-img {
  display: flex;
  align-items: center;
  height: 100%;
}

#plan-feature .feature-img img {
  width: 100%;
}

#plan-list {
  position: relative;
}

#plan-list .plans {
  display: flex;
  width: 100%;
  padding: 0 0 24px 0;
  justify-content: center;
  gap: 20px;
}

#plan-list .plans dd {
  margin: 0;
}

#plan-list .plans dl.plan {
  display: table-cell;
  width: 33.3333%;
  vertical-align: top;
  box-sizing: border-box;
  background-color: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: 0 10px 5px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
  border-radius: 18px;
  overflow: hidden;
}

#plan-list .plans dl.plan>dt.name {
  padding: 26px 0;
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: var(--color-white);
  background-color: var(--color-brown-dark);
}

#plan-list .plans dl.plan-orange>dt.name {
  background-color: var(--color-orange);
}

#plan-list .plans dl.plan-pink>dt.name {
  background-color: var(--color-pink);
}

#plan-list .plans dl.plan-blue>dt.name {
  background-color: var(--color-blue);
}

#plan-list .plans dl.plan-violet>dt.name {
  background-color: var(--color-violet);
}

#plan-list .plans dl.plan>dd {
  padding: 1.4em 1.8em;
}

#plan-list .plans dl.plan>dd>dl.price {
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-black);
}

#plan-list .plans dl.plan>dd>dl.price>dt {
  font-size: 1.4rem;
  line-height: 1.8;
}

#plan-list .plans dl.plan>dd>dl.price>dd {
  font-size: clamp(3.5rem, 3.2vw, 4.5rem);
  font-weight: 600;
  line-height: 1.8;
  color: var(--color-green);
}

#plan-list .plans dl.plan>dd>dl.price>dd span {
  font-size: 1.8rem;
}

#plan-list .plans dl.plan>dd>dl.detail {
  margin: 12px 0;
  padding-bottom: 12px;
  text-align: left;
  border-bottom: 1px dashed var(--color-black);
}

#plan-list .plans dl.plan>dd>dl.detail>dt,
#plan-list .plans dl.plan>dd>dl.detail>dd {
  display: inline-block;
  font-size: 1.42rem;
  font-weight: bold;
}

#plan-list .plans dl.plan>dd>dl.detail>dt {
  margin-right: 10px;
}

#plan-list .plans dl.plan>dd>dl.detail>dd {
  color: var(--color-black);
}

#plan-list .plans dl.plan>dd>ul.other {
  padding: 0 0 12px 0;
  text-align: left;
  list-style: none;
}

#plan-list .plans dl.plan>dd>ul.other>li {
  margin: 1.6rem 0 1.6rem 1.6rem;
  font-size: 1.4rem;
  text-indent: -1em;
}

#plan-list .plans dl.plan>dd>ul.other>li::before {
  content: "・";
  padding-right: .2em;
}

@media screen and (max-width: 1199px) {
  #plan-list .plans {
    flex-wrap: wrap;
  }

  #plan-list .plans dl.plan {
    width: 360px;
  }

  #plan-list .plans dl.plan>dd {
    padding: 1.4em 1.2em;
  }
}

@media screen and (max-width: 767px) {
  #plan-list .plans {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  #plan-list .plans dl.plan {
    display: block;
    width: 100%;
  }
}

#plan-flow {
  position: relative;
}

#plan-flow .flow-items {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#plan-flow .flow-items .flow-item {
  position: relative;
  text-align: left;
  flex-basis: calc((100% - 40px) / 3);
  padding: 10px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 10px 5px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
}

#plan-flow .flow-items .flow-item:not(:first-child)::before,
#plan-flow .flow-items .flow-item:not(:first-child)::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
}

#plan-flow .flow-items .flow-item:not(:first-child)::before {
  left: -32px;
  border-color: transparent transparent transparent var(--color-brown-light);
}

#plan-flow .flow-items .flow-item:not(:first-child)::after {
  left: -16px;
  border-color: transparent transparent transparent var(--color-brown-dark);
}

#plan-flow .flow-items .flow-item .flow-head {
  font-size: 20px;
  line-height: 2;
}

#plan-flow .flow-items .flow-item .flow-content {
  padding: 6px;
  font-size: 15.42px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
}

#plan-flow .flow-items .flow-item .flow-content a {
  color: var(--color-main);
  font-weight: 600;
}

#plan-flow .flow-items .flow-item .flow-content a:hover {
  color: var(--color-orange);
}

#plan-flow .note {
  margin-top: 4rem;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: var(--color-black);
}

@media screen and (max-width: 768px) {
  #plan-flow .flow-items .flow-item {
    flex-basis: 100%;
  }

  #plan-flow .flow-items .flow-item:not(:first-child)::before,
  #plan-flow .flow-items .flow-item:not(:first-child)::after {
    bottom: unset;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  #plan-flow .flow-items .flow-item:not(:first-child)::before {
    top: -32px;
  }

  #plan-flow .flow-items .flow-item:not(:first-child)::after {
    top: -14px;
  }
}

/*** Footer ***/
.footer {
  position: relative;
  text-align: center;
  padding: 100px 20px 70px var(--header-width);
  background: var(--color-bg-footer);
  border-top: 1px solid var(--color-border);
  z-index: 10;
}

.footer p,
.footer a {
  color: var(--color-grey);
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 7rem;
}

.footer-info .logo {
  display: block;
  width: 260px;
  margin: 0 auto 1.6rem;
}

.footer-info .logo span {
  display: block;
  width: 100%;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  line-height: 1.4166666667;
}

.footer-info .logo img {
  width: 200px;
  height: auto;
}

.footer-nav ul {
  display: flex;
  margin-top: 3.6rem;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 1.8rem;
  column-gap: 3rem;
}

.footer-nav ul>li {
  font-size: clamp(1.6rem, 1.75vw, 1.8rem);
}

.footer .footer-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  padding-top: 40px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.footer ul.bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  row-gap: 1rem;
  column-gap: 1.8rem;
}

.footer ul.bottom-links>li {
  font-size: 1.45rem;
  line-height: 1.66;
}

.footer ul.bottom-links>li a {
  color: var(--color-grey);
}

.footer .footer-bottom .copyright {
  display: block;
  width: 100%;
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 999px) {
  .footer {
    padding: 100px 20px 70px;
  }
}

@media screen and (max-width: 767px) {
  .footer-container {
    margin-bottom: 6rem;
  }
}

/*** Responsive ***/
@media screen and (max-width: 1199px) {
  .only-widepc {
    display: none !important;
  }
}

@media screen and (max-width: 999px) {
  .only-pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .for-pc {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .for-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
}

@media screen and (min-width: 374px) {
  .only-minsp {
    display: none !important;
  }
}