@charset "utf-8";

/*
mobile: -768px
tablet,PC: 769px-
*/

/* Font */
@import url("https://fonts.googleapis.com/css?family=Merriweather");

/* Variables */
:root {
  /* Colors */
  --primary: #202a34;
  --primary-rgb: 32, 42, 52;
  --primary-light: #dfe5eb;
  --primary-dark: #192129;
  --secondary: #f2f4f7;
  --white: #fff;
  --green: #03c383;
  --green-light: #4ed5a8;
  --orange: #ef6a32;
  --orange-light: #f5a584;
  --text-main: #333;
  --border-color: #ccc;

  /* Fonts */
  --font-heading: "Merriweather", sans-serif;
  --font-body:
    Verdana, Arial, "Noto Sans JP", "Yu Gothic", "YuGothic", "Helvetica Neue",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

  /* Box Shadow */
  --box-shadow-home: 10px 10px 15px -10px rgba(0, 0, 0, 0.9);
  --box-shadow-img: 8px 8px 10px -10px rgba(0, 0, 0, 0.8);
  --box-shadow-bloc: 5px 5px 10px -10px rgba(0, 0, 0, 0.8);
}

/* Anime */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(2, 2, 2);
  }
  50% {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(80%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

/* Base */
html,
body {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 100%;
  background: var(--primary-light);
  text-underline-position: under;
}
#container {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/*  Display  */
@media (width <= 768px) {
  .pc {
    display: none;
  }
}
@media (768px < width) {
  .sp {
    display: none;
  }
}

/* Layout */
/* .l-header */
.l-header {
  position: fixed;
  top: -50px;
  width: 100%;
  height: 150px;
  z-index: 100;
  background: rgba(var(--primary-rgb), 0.9);
  transform: skew(0deg, -2deg);
}
.l-header h1 a {
  display: block;
  width: 156px;
  height: 80px;
  margin: 55px 20px 0;
  background: url(../images/logo02.png) no-repeat;
}
.l-header em {
  display: none;
}
/* l-headerNav */
.l-headerNav__trigger {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
@media (width <= 768px) {
  .l-headerNav__toggleBtn {
    display: block;
    position: fixed;
    top: 90px;
    right: 20px;
    width: 45px;
    height: 40px;
    padding: 10px;
    border: 1px solid var(--white);
    border-radius: 4px;
    z-index: 120;
  }
  .l-headerNav__toggleBtn span,
  .l-headerNav__toggleBtn span:before,
  .l-headerNav__toggleBtn span:after {
    display: block;
    position: absolute;
    content: "";
    height: 3px;
    width: 22px;
    border-radius: 3px;
    background: var(--white);
    cursor: pointer;
  }
  .l-headerNav__toggleBtn span:before {
    bottom: -8px;
  }
  .l-headerNav__toggleBtn span:after {
    bottom: -16px;
  }
  .l-headerNav__trigger:checked ~ .l-headerNav__toggleBtn span {
    top: 18px;
  }
  .l-headerNav__trigger:checked ~ .l-headerNav__toggleBtn span:before,
  .l-headerNav__trigger:checked ~ .l-headerNav__toggleBtn span:after {
    opacity: 0;
  }
  .l-headerNav__content {
    position: fixed;
    z-index: 9999;
    width: 100%;
    margin: 10px 0 0;
    overflow-y: scroll;
    transform: translateX(200%);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .l-headerNav__screen {
    position: absolute;
    z-index: 97;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: 150px 0 0;
    background: rgba(0, 0, 0, 0.8);
    transform: translateX(-200%);
  }
  .l-headerNav__trigger:checked ~ .l-headerNav__content {
    left: 0;
    transform: translateX(0%);
  }
  .l-headerNav__trigger:checked ~ .l-headerNav__screen {
    animation: fadeInUp 0.2s ease 1;
    transform: translateX(0%);
  }
  .l-headerNav__content nav {
    position: relative;
    z-index: 98;
    width: 100%;
  }
  .l-headerNav__content nav ul {
    overflow: hidden;
    background: var(--white);
  }
  .l-headerNav__content nav ul li {
    position: relative;
    line-height: 50px;
    border-bottom: 1px solid var(--border-color);
  }
  .l-headerNav__content nav ul li a {
    display: block;
    font-family: "Merriweather", sans-serif;
    font-size: 1.2rem;
    color: var(--text-main);
    text-align: center;
  }
  .l-headerNav__content nav ul li:last-child {
    padding: 0 0 50px;
    margin: 0 0 50px;
    border-bottom: none;
  }
}
@media (768px < width) {
  .l-headerNav__content {
    position: absolute;
    top: 50px;
    right: 0;
  }
  .l-headerNav__content nav {
    position: relative;
  }
  .l-headerNav__content nav ul {
    display: flex;
    justify-content: flex-end;
    width: 85%;
  }
  .l-headerNav__content nav ul li a {
    position: relative;
    display: block;
    margin: 50px 10px 0;
    padding: 10px 5px;
    font-family: "Merriweather", sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-headerNav__content nav ul li a:before,
  .l-headerNav__content nav ul li a:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--green);
    content: "";
    opacity: 0;
    transition: all 0.3s;
  }
  .l-headerNav__content nav ul li a:before {
    top: 0;
    transform: translateY(10px);
  }
  .l-headerNav__content nav ul li a:after {
    bottom: 0;
    transform: translateY(-10px);
  }
  @media (any-hover: hover) {
    .l-headerNav__content nav li a:hover {
      color: var(--green);
    }
    .l-headerNav__content nav ul li a:hover:before,
    .l-headerNav__content nav ul li a:hover:after {
      opacity: 1;
      transform: translateY(0px);
    }
  }
}
/* l-footer */
.l-footer {
  position: relative;
  bottom: 0;
  background: var(--primary);
  padding: 20px 0;
}
/* l-footer__topBtn */
.l-footer__topBtn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  padding: 20px 0 0;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  background: rgba(var(--primary-rgb), 0.8);
  border: 1px solid var(--white);
}
.l-footer__topBtn::after {
  position: absolute;
  content: "";
  top: 15px;
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
  transform: rotate(-45deg);
}
/* l-footer__copyright */
.l-footer__copyright {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30px;
  margin: 20px 0 0;
  padding: 8px 0 0;
  background: var(--primary-dark);
}
.l-footer__copyright p {
  color: var(--white);
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
}
.l-footer__copyright p a {
  color: var(--white);
}
/* .l-footerContent */
.l-footerContent p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.4;
}
.l-footerContent__calendar h2,
.l-footerContent__info h2 {
  display: block;
  position: relative;
  width: 60%;
  margin: 10px 0;
  padding: 10px;
  font-family: "Merriweather", sans-serif;
  font-size: 1.6rem;
  color: #dfe5eb;
  transform: skew(0deg, -1.5deg);
}
.l-footerContent__calendar h2:first-letter,
.l-footerContent__info h2:first-letter {
  font-size: 3rem;
  color: var(--green);
}
.l-footerContent__calendar h2:first-letter {
  color: var(--orange);
}
.l-footerContent__calendar h2:after,
.l-footerContent__info h2:after {
  content: "";
  display: block;
  height: 6px;
  margin: 0 0 0 -10px;
  background: linear-gradient(to right, var(--green), transparent);
}
.l-footerContent__info dl {
  margin: 1.6em 0;
  padding: 0 30px;
}
.l-footerContent__info dt {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.4;
}
.l-footerContent__info dd {
  padding: 0 0 20px 20px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.4;
}
.l-footerContent__calendar h2:after {
  background: linear-gradient(to right, var(--orange), transparent);
}
.l-footerContent__recruit a img {
  display: block;
  margin: 0 auto;
  opacity: 0.8;
}
@media (any-hover: hover) {
  .l-footerContent__recruit a:hover img {
    opacity: 1;
  }
}
@media (width <= 768px) {
  .l-footerContent__calendar,
  .l-footerContent__info,
  .l-footerContent__recruit {
    margin: 50px auto;
    padding: 5px;
  }
}
@media (768px < width) {
  /* footer */
  .l-footerContent {
    display: grid;
    height: 100%;
    max-width: 1000px;
    margin: 20px auto;
    grid-template-columns: 360px 1fr;
    grid-template-rows: 1fr 150px;
    grid-template-areas: "l-footerContent__calendar l-footerContent__info" "l-footerContent__calendar l-footerContent__recruit";
    grid-gap: 50px;
  }
  .l-footerContent__calendar {
    grid-area: l-footerContent__calendar;
  }
  .l-footerContent__info {
    grid-area: l-footerContent__info;
  }
  .l-footerContent__recruit {
    grid-area: l-footerContent__recruit;
  }
}
/* l-oneColumn */
.l-oneColumn {
  width: min(100%, 1000px);
  margin: 150px auto 50px;
}
/* .l-twoColumn */
@media (width <= 768px) {
  .l-twoColumn {
    margin: 150px auto 20px;
    padding: 5px;
  }
}
@media (768px < width) {
  .l-twoColumn {
    display: grid;
    height: 100%;
    width: min(100%, 1000px);
    margin: 150px auto 20px;
    grid-template-columns: 1fr 320px;
    grid-template-rows: 1fr;
    grid-template-areas: "l-twoColumn__main l-twoColumn__side";
    grid-gap: 30px;
  }
  .l-twoColumn__main {
    grid-area: l-twoColumn__main;
  }
  .l-twoColumn__side {
    grid-area: l-twoColumn__side;
  }
}
/* .l-twoColumn__side */
.l-twoColumn__side section {
  margin: 50px auto;
}
.l-twoColumn__side h2 {
  margin: 5px 0;
  padding: 5px;
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 2;
  border-bottom: solid 1px var(--primary);
}
.l-twoColumn__side h2:first-letter {
  font-size: 1.8rem;
}
.l-twoColumn__side ul {
  margin: 10px;
}
.l-twoColumn__side ul li a {
  display: block;
  color: var(--text-main);
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 10px 0;
}
@media (width <= 768px) {
  .l-twoColumn__side {
    background: var(--white);
    margin: 40px 0 0;
    padding: 5px;
  }
}
@media (any-hover: hover) {
  .l-twoColumn__side ul li a:hover {
    color: var(--orange);
    text-decoration: underline;
  }
}

/* Object - Component */
/* Heading */
/* c-pageTtl, c-greenTtl, c-orangeTtl */
.c-pageTtl,
.c-greenTtl,
.c-orangeTtl {
  display: block;
  position: relative;
  width: 60%;
  margin: 10px 0;
  padding: 10px;
  font-family: "Merriweather", sans-serif;
  font-size: 1.6rem;
  color: var(--primary);
  transform: skew(0deg, -1.5deg);
}
.c-pageTtl:first-letter,
.c-greenTtl:first-letter,
.c-orangeTtl:first-letter {
  font-size: 3rem;
  color: var(--green);
}
.c-pageTtl:after,
.c-greenTtl:after,
.c-orangeTtl:after {
  content: "";
  display: block;
  height: 6px;
  margin: 0 0 0 -10px;
  background: linear-gradient(to right, var(--green), transparent);
}
.c-orangeTtl:first-letter {
  color: var(--orange);
}
.c-orangeTtl:after {
  background: linear-gradient(to right, var(--orange), transparent);
}
/* c-blocTtl */
.c-blocTtl {
  margin: 5px 0;
  padding: 5px;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 2;
  border-bottom: solid 1px var(--primary);
}
/* Button */
/* c-greenBtn */
.c-greenBtn {
  display: block;
  position: relative;
  overflow: hidden;
  width: min(90%, 380px);
  height: 50px;
  margin: 20px auto 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  line-height: 50px;
  text-align: center;
  border: solid 1px var(--primary);
  transition: 0.3s ease-in-out;
}
.c-greenBtn::after {
  position: absolute;
  content: "";
  top: 45%;
  left: 90%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}
@media (any-hover: hover) {
  .c-greenBtn:hover {
    background: var(--green);
  }
}
/* c-orangeBtn */
.c-orangeBtn {
  display: block;
  position: relative;
  overflow: hidden;
  width: min(90%, 380px);
  height: 50px;
  margin: 20px auto 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  line-height: 50px;
  text-align: center;
  background: var(--white);
  border: solid 1px var(--primary);
  transition: 0.3s ease-in-out;
}
.c-orangeBtn::after {
  position: absolute;
  content: "";
  top: 45%;
  left: 90%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}
@media (any-hover: hover) {
  .c-orangeBtn:hover {
    background: var(--orange);
  }
}
/* c-contactBtn */
.c-contactBtn {
  display: block;
  position: relative;
  overflow: hidden;
  width: min(90%, 380px);
  height: 50px;
  margin: 20px auto 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  line-height: 50px;
  text-align: center;
  background: var(--white);
  border: solid 1px var(--primary);
  transition: 0.3s ease-in-out;
}
.c-contactBtn::after {
  position: absolute;
  content: "";
  top: 45%;
  left: 90%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}
@media (any-hover: hover) {
  .c-contactBtn:hover {
    background: var(--green);
  }
}
/* c-styleBtn */
.c-styleBtn {
  display: block;
  position: relative;
  overflow: hidden;
  width: min(90%, 380px);
  height: 50px;
  margin: 20px auto 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 50px;
  text-align: center;
  border: solid 1px var(--white);
  transition: 0.3s ease-in-out;
}
.c-styleBtn::after {
  position: absolute;
  content: "";
  top: 45%;
  left: 90%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
}
@media (any-hover: hover) {
  .c-styleBtn:hover {
    background: var(--green);
  }
}
/* c-breadcrumb */
.c-breadcrumb {
  width: min(96%, 980px);
  padding: 25px 5px 20px;
}
.c-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: var(--text-main);
}
.c-breadcrumb ul li {
  padding: 5px;
}
.c-breadcrumb ul li a {
  color: var(--text-main);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-breadcrumb ul li a:hover {
    color: var(--orange);
    text-decoration: none;
  }
}
/* c-pagenavi */
.c-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(98%, 980px);
}
.c-pagenavi li a,
.c-pagenavi .current {
  display: block;
  background: var(--white);
  text-decoration: none;
  width: auto;
  height: 45px;
  margin: 0 3px;
  padding: 15px 10px;
  color: var(--text-main);
  font-size: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.c-pagenavi a:hover,
.c-pagenavi .current {
  color: var(--white);
  border: 1px solid var(--green);
  background: var(--green);
}
/* c-marker */
.c-marker--green {
  font-weight: bold;
  background: linear-gradient(transparent 70%, var(--green-light) 0%);
}
.c-marker--orange {
  font-weight: bold;
  background: linear-gradient(transparent 70%, var(--orange-light) 0%);
}

/* Object - Project */
/* p-404 */
.p-404 {
  margin: 30px auto;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--box-shadow-bloc);
  animation: fadeIn 1.2s ease-in 0s 1;
}
.p-404 h1 {
  margin: 5px 0;
  padding: 5px;
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  border-bottom: solid 1px var(--primary);
}
@media (width < 480px) {
  .p-404 h1 {
    font-size: 1.15rem;
  }
}
/* p-hero */
.p-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 650px;
  animation: fadeIn 1.5s ease-in 0s 1;
}
.p-hero__inner {
  width: 200px;
  height: 200px;
  margin: 80px 0 0;
  padding: 80px 10px 0;
  background: rgba(var(--primary-rgb), 0.9);
  box-shadow: 10px 10px 15px -10px;
  animation: zoomIn 2s ease 0s 1;
}
@media (width <= 768px) {
  .p-hero {
    background: url(../images/head02.jpg) no-repeat;
  }
}
@media (768px < width) {
  .p-hero {
    background: url(../images/head.jpg) center center / cover no-repeat;
  }
}
/* .p-homeStyle */
.p-homeStyle {
  padding: 20px 0;
  background: var(--primary);
}
.p-homeStyle__inner {
  width: min(100%, 1000px);
  margin: 0 auto 50px;
}
.p-homeStyle__ttl {
  color: var(--primary-light);
}
.p-homeStyle__inner ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 50px 0;
  padding: 0;
}
.p-homeStyle__inner ul li {
  flex-basis: 32%;
  position: relative;
  margin: 30px 0;
  padding: 10px 20px;
  border-top: solid 1px var(--primary-light);
  border-bottom: solid 1px var(--primary-light);
}
.p-homeStyle__inner ul li:before,
.p-homeStyle__inner ul li:after {
  position: absolute;
  content: "";
  top: -10px;
  width: 1px;
  height: calc(100% + 20px);
  background: var(--primary-light);
}
.p-homeStyle__inner ul li:before {
  left: 10px;
}
.p-homeStyle__inner ul li:after {
  right: 10px;
}
.p-homeStyle__inner ul li a {
  color: var(--primary-light);
  font-size: 0.9rem;
  line-height: 1.4;
  transition: all 0.4s ease;
}
.p-homeStyle__inner ul li a img {
  display: block;
  margin: 0 auto 20px;
  aspect-ratio: 3 / 4;
  box-shadow: var(--box-shadow-home);
}
@media (width < 480px) {
  .p-homeStyle__inner ul li {
    flex-basis: 98%;
  }
}
@media (any-hover: hover) {
  .p-homeStyle__inner ul li a:hover {
    opacity: 0.7;
  }
}
/* p-homeShop */
.p-homeShop {
  background: var(--white);
  padding: 20px 0;
}
.p-homeShop__inner {
  width: min(100%, 1000px);
  margin: 0 auto 50px;
}
.p-homeShop__inner article {
  margin: 30px 5px;
}
.p-homeShop__inner article.p-homeShop__Concept {
  margin: 30px 5px 80px;
}
.p-homeShop__inner p {
  padding: 5px 0;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.4;
}
/* p-homeService */
.p-homeService {
  background: var(--primary-light);
  padding: 20px 0;
}
.p-homeService__inner {
  width: min(100%, 1000px);
  margin: 0 auto 50px;
}
/* p-homeService__menu */
.p-homeService__menu {
  position: relative;
  height: 700px;
  margin: 50px 0 20px;
}
.p-homeService__menu img {
  position: absolute;
  top: 0;
  left: 0;
}
.p-homeService__menu dl {
  position: absolute;
  top: 300px;
  right: 0;
  width: 70%;
  padding: 2em;
  background: rgba(var(--primary-rgb), 0.8);
  box-shadow: var(--box-shadow-home);
  animation: fadeInRight 1s ease 0s 1;
}
.p-homeService__menu dl dt {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.4;
}
.p-homeService__menu dl dd {
  margin: 0 0 0.5em;
  padding: 0.5em 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: right;
  border-bottom: solid 1px var(--primary-light);
}
@media (width < 480px) {
  .p-homeService__menu dl {
    width: 100%;
  }
}
/* p-serviceList */
.p-serviceList {
  margin: 0 auto 60px;
}
.p-serviceList ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 95%;
  margin: 20px auto 0;
  padding: 0;
}
.p-serviceList ul li {
  flex-basis: 46%;
}
.p-serviceList ul li a {
  display: block;
  transition: all 0.4s ease;
}
@media (any-hover: hover) {
  .p-serviceList ul li a:hover {
    opacity: 0.7;
  }
}
/* p-homeImg */
@media (768px < width) {
  .p-homeImg {
    width: 100%;
    height: 360px;
    background: url(../images/index.jpg) center center / cover no-repeat;
  }
}
/* p-homeNews */
.p-homeNews {
  background: var(--white);
  padding: 20px 0;
}
.p-homeNews__inner {
  position: relative;
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 50px 0;
}
.p-homeNews__inner dl {
  width: 98%;
  margin: 50px auto 80px;
}
.p-homeNews__inner dl dt {
  font-size: 0.9rem;
  color: var(--text-main);
  padding: 15px 5px 0;
}
.p-homeNews__inner dl dd {
  font-size: 1rem;
  line-height: 1.4;
  padding: 5px;
  border-bottom: solid 1px var(--primary);
}
.p-homeNews__inner dl dd a {
  display: block;
  color: var(--text-main);
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-homeNews__inner dl dd a:hover {
    color: var(--orange);
    text-decoration: underline;
  }
}
/* p-styleList */
.p-styleList ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.p-styleList ul li {
  flex-basis: 32%;
  position: relative;
  margin: 30px 0;
  padding: 10px 20px;
  border-top: solid 1px var(--primary);
  border-bottom: solid 1px var(--primary);
}
.p-styleList ul li:before,
.p-styleList ul li:after {
  position: absolute;
  content: "";
  top: -10px;
  width: 1px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
  background: var(--primary);
}
.p-styleList ul li:before {
  left: 10px;
}
.p-styleList ul li:after {
  right: 10px;
}
.p-styleList ul li a {
  color: var(--primary-light);
  font-size: 0.9rem;
  line-height: 1.4;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.p-styleList ul li a {
  color: var(--primary);
}
.p-styleList ul li a img {
  display: block;
  margin: 0 auto 20px;
  aspect-ratio: 3 / 4;
  box-shadow: var(--box-shadow-img);
  animation: flipInX 1.3s ease-in 0s 1;
}
@media (width < 480px) {
  .p-styleList ul li {
    flex-basis: 98%;
  }
}
@media (any-hover: hover) {
  .p-styleList ul li a:hover {
    opacity: 0.7;
  }
}
/* p-style */
.p-style {
  margin: 0 auto 100px;
}
.p-style__photo {
  margin: 50px auto;
  animation: fadeIn 1s ease-in 0s 1;
}
.p-style__photo img {
  display: block;
  margin: 10px auto;
  box-shadow: var(--box-shadow-img);
}
/* p-post */
.p-post {
  margin: 30px auto;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--box-shadow-bloc);
  animation: fadeIn 1.2s ease-in 0s 1;
}
.p-post__ttl {
  margin: 0 0 1em;
  padding: 10px 5px;
  color: var(--text-main);
  font-size: 1.2rem;
  line-height: 1.4;
  border-bottom: solid 1px var(--primary);
}
.p-post__ttl:first-letter {
  font-size: 2rem;
}
.p-post__date {
  padding: 0 2px;
  font-size: 0.9rem;
  color: var(--text-main);
  text-align: right;
}
/* .p-post__detail */
.p-post__detail {
  width: 100%;
  padding: 1em 0 0;
}
.p-post__detail article {
  margin: 5% auto;
}
.p-post__detail h2,
.p-post__detail h3 {
  padding: 5px;
  color: var(--text-main);
  font-size: 1.2rem;
  line-height: 2;
}
.p-post__detail h2 {
  margin: 15px 0 25px;
  border-bottom: solid 1px var(--primary);
}
.p-post__detail h3 {
  text-align: center;
}
.p-post__detail h4 {
  margin: 0 0 10px;
  padding: 5px;
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 1.6;
  border-bottom: solid 1px var(--primary);
}
.p-post__detail p,
.p-post__detail p a {
  padding: 0 0 12px;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
}
.p-post__detail p a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-post__detail p a:hover {
    color: var(--orange);
    text-decoration: none;
  }
}
.p-post__detail ul {
  display: block;
  width: 90%;
  margin: 30px auto;
}
.p-post__detail li {
  padding: 10px 0 10px 20px;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
  border-bottom: solid 1px var(--primary);
}
.p-post__detail dl dt {
  padding: 5px 0;
  font-size: 1.2rem;
  color: var(--primary);
}
.p-post__detail dl dd {
  margin: 0 0 10px;
  padding: 0 5px;
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: right;
  border-bottom: 1px dashed var(--primary);
}
.p-post__detail .innerBox {
  width: 90%;
  margin: 40px auto;
  background: var(--secondary);
  padding: 3%;
  border: solid 1px var(--primary);
}
.p-post__detail .marker {
  background: linear-gradient(transparent 70%, var(--green-light) 0%);
}
.p-post__detail .center {
  text-align: center;
}
.p-post__detail .right {
  font-size: 0.8rem;
  line-height: 0;
  text-align: right;
  padding: 5px 3% 2px 2px;
}
.p-post__detail .bold {
  font-weight: bold;
}
.p-post__detail .w80 {
  width: min(80%, 980px);
  margin: 0 auto;
}
.p-post__detail .mt60 {
  margin: 60px auto 0;
}
/*.p-post__detail WP Style*/
.aligncenter {
  display: block;
  margin: 10px auto;
}
.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
.alignright {
  display: block;
  margin: 0 0 0 auto;
}
.wp-caption {
  border: solid 1px var(--border-color);
  text-align: center;
  padding-top: 5px;
}
.thumbnail {
  display: block;
  margin: 50px auto;
  animation: fadeIn 0.8s ease-in 0s 1;
}
/* p-innerBloc */
.p-innerBloc {
  width: 90%;
  margin: 10% auto;
  background: var(--secondary);
  padding: 3%;
  border: solid 1px var(--primary);
}
.p-innerBloc__ttl {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
  border-bottom: solid 1px var(--primary);
}
.p-innerBloc p {
  padding: 10px;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
}
.p-innerBloc__flex li {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
}
@media (width <= 768px) {
  .p-innerBloc__flex {
    width: 90%;
    margin: 0 auto;
  }
  .p-innerBloc__flex li img {
    width: 100%;
    margin: 0 0 20px;
  }
  .p-innerBloc br {
    display: none;
  }
}
@media (768px < width) {
  .p-innerBloc__flex {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .p-innerBloc__flex li {
    flex-basis: 48%;
  }
}
/* p-serviceStep */
.p-serviceStep {
  counter-reset: number 0;
  margin: 30px auto;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--box-shadow-bloc);
  animation: fadeIn 1.2s ease-in 0s 1;
}
.p-serviceStep h2 {
  margin: 5px 0;
  padding: 5px;
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 2;
  border-bottom: solid 1px var(--primary);
}
.p-serviceStep article {
  width: 98%;
  margin: 25px auto 80px;
}
.p-serviceStep article::before {
  counter-increment: number 1;
  content: "Step " counter(number);
  display: block;
  width: 30%;
  margin: 20px auto 40px;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.4rem;
  text-align: center;
  background: linear-gradient(transparent 60%, var(--green-light) 0%);
}
.p-serviceStep__detail li {
  color: var(--text-main);
  font-size: 1.1rem;
  line-height: 1.8;
}
.p-serviceStep__detail li aside {
  display: block;
  margin: 10% 0 0;
  font-size: 0.8rem;
}
@media (width <= 768px) {
  .p-serviceStep__detail {
    width: 90%;
    margin: 0 auto;
  }
  .p-serviceStep__detail li img {
    width: 100%;
  }
  .p-serviceStep__detail li:first-child {
    margin: 0 0 20px;
  }
}
@media (768px < width) {
  .p-serviceStep__detail {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .p-serviceStep__detail li {
    flex-basis: 48%;
  }
}
/* p-serviceMenu */
.p-serviceMenu {
  margin: 30px auto;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--box-shadow-bloc);
  animation: fadeIn 1.2s ease-in 0s 1;
}
.p-serviceMenu__ttl {
  padding: 10px 5px 0;
  font-family: var(--font-heading);
  color: var(--text-main);
  font-size: 1.2rem;
  line-height: 1.6;
  border-bottom: solid 1px var(--primary);
}
.p-serviceMenu__ttl:first-letter {
  font-size: 2rem;
}
.p-serviceMenu__desc {
  padding: 16px 3% 2px 2px;
  color: var(--text-main);
  font-size: 0.9rem;
  text-align: right;
}
.p-serviceMenu dl {
  width: min(80%, 980px);
  margin: 5% auto;
}
.p-serviceMenu dl dt {
  padding: 5px 0;
  font-size: 1.2rem;
  color: var(--primary);
}
.p-serviceMenu dl dd {
  margin: 0 0 10px;
  padding: 0 5px;
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: right;
  border-bottom: 1px dashed var(--primary);
}
/* p-shop */
.p-shop {
  margin: 30px auto;
  padding: 10px 10px 30px;
  background: var(--white);
  box-shadow: var(--box-shadow-bloc);
  animation: fadeIn 1.2s ease-in 0s 1;
}
.p-shop__ttl {
  margin: 25px 0 0;
  padding: 0 5px;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1.6;
  border-bottom: solid 1px var(--primary);
}
.p-shop__ttl:first-letter {
  font-size: 2rem;
}
.p-shop__concept {
  width: 100%;
  margin: 20px auto;
}
.p-shop__concept P {
  padding: 10px;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
}
.p-shopInfo {
  display: block;
  width: 90%;
  margin: 30px auto;
}
.p-shopInfo dt {
  padding: 10px 10px 0;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
}
.p-shopInfo dd {
  padding: 0 10px 10px 30px;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
  border-bottom: solid 1px var(--primary);
}
/* p-staff */
.p-staff {
  margin: 30px auto;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--box-shadow-bloc);
  animation: fadeIn 1.2s ease-in 0s 1;
}
.p-staffDetail {
  padding: 30px 20px;
  border-bottom: 1px solid var(--primary);
}
.p-staffDetail img {
  display: block;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
}
.p-staffDetail:last-of-type {
  border: none;
}
.p-staffDetail__inner ul {
  display: block;
  width: 90%;
  margin: 0 auto;
}
.p-staffDetail__inner ul li {
  padding: 10px 0 10px 20px;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
  border-bottom: solid 1px var(--primary);
}
@media (width <= 768px) {
  .p-staffDetail__inner {
    margin: 20px auto 0;
  }
}
@media (768px < width) {
  .p-staffDetail {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  .p-staffDetail__inner {
    flex-basis: 60%;
    padding: 40px 0 0;
  }
}
/* p-recruit */
.p-recruit {
  margin: 30px auto;
  padding: 10px 10px 5%;
  background: var(--white);
  box-shadow: var(--box-shadow-bloc);
  animation: fadeIn 1.2s ease-in 0s 1;
}
.p-recruit__ttl {
  margin: 0 0 1em;
  padding: 10px 5px;
  color: var(--text-main);
  font-size: 1.2rem;
  line-height: 1.4;
  border-bottom: solid 1px var(--primary);
}
.p-recruit__ttl:first-letter {
  font-size: 2rem;
}
.p-recruit__detail {
  width: 100%;
  margin: 5% 0;
  border-collapse: collapse;
}
.p-recruit__detail tr {
  border-top: 1px solid var(--border-color);
}
.p-recruit__detail tr:first-child {
  border-top: none;
}
.p-recruit__detail tr:last-child {
  border-bottom: 1px solid var(--border-color);
}
.p-recruit__detail th,
.p-recruit__detail td {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.4;
}
.p-recruit__detail th {
  width: 25%;
  padding: 10px;
  white-space: nowrap;
  text-align: left;
}
.p-recruit__detail td {
  padding: 15px 15px 15px 30px;
  vertical-align: middle;
}
.p-recruit__detail span.br::after {
  content: "\A\A";
  white-space: pre;
}
@media (width <= 768px) {
  .p-recruit__detail,
  .p-recruit__detail tbody,
  .p-recruit__detail tr,
  .p-recruit__detail th,
  .p-recruit__detail td {
    display: block;
  }
  .p-recruit__detail th {
    width: 100%;
    font-size: 0.9rem;
  }
  .p-recruit__detail td {
    font-size: 0.9rem;
  }
}

/* Object - Utility */
.u-txtS {
  font-size: 0.8rem;
}

/* Contact Form 7 */
.wpcf7 {
  width: 100%;
  margin: 20px 0;
}
.wpcf7-not-valid-tip-no-ajax {
  display: none;
}
.wpcf7-not-valid {
  background: rgba(204, 0, 0, 0.3);
}
.wpcf7 .wpcf7-response-output {
  margin: 5px;
  padding: 8px 35px 8px 14px;
  border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
  font-size: 1rem;
  color: #cc0000;
  background: rgba(204, 0, 0, 0.3);
  border: 1px solid #cc0000;
  border-radius: 4px;
}
.wpcf7 .wpcf7-mail-sent-ok,
.wpcf7 .wpcf7-mail-sent-ng {
  font-size: 0.8rem;
  color: var(--text-main);
  background: #fdfaf5;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}
.wpcf7 .wpcf7-submit {
  display: block;
  width: min(90%, 380px);
  height: 50px;
  margin: 100px auto 50px;
  font-size: 1.2rem;
  color: var(--primary);
  line-height: 50px;
  text-align: center;
  background: var(--white);
  border: solid 1px var(--primary);
  transition: 0.3s ease-in-out;
}
.sent .formInner,
.wpcf7 .screen-reader-response {
  display: none;
}
.wpcf7-text,
.wpcf7-textarea {
  width: 95%;
  font-size: 16px;
  padding: 5px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}
.wpcf7-text:focus,
.wpcf7-textarea:focus {
  outline: none;
  border-width: 1px;
  border-style: solid;
  box-shadow: 0 0 8px rgba(3, 195, 131, 0.5);
  border-color: rgba(3, 195, 131, 0.75) !important;
}
.wpcf7-select {
  width: 25%;
  padding: 5px;
}
.wpcf7c-conf {
  background-color: var(--white);
  color: var(--text-main);
  border: none;
}
.wpcf7c-conf:focus {
  border: none;
  box-shadow: 0 0 8px rgba(255, 255, 255, 1);
}
.wpcf7c-btn-confirm,
.wpcf7c-btn-back {
  margin: 0 10px;
  background: var(--white);
  width: 250px;
  height: 40px;
  font-size: 1rem;
  color: var(--text-main);
  letter-spacing: 10px;
  border: 1px solid var(--text-main);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.wpcf7 .wpcf7-submit:hover,
.wpcf7c-btn-confirm:hover,
.wpcf7c-btn-back:hover {
  background: var(--green);
  cursor: pointer;
}
/* Contact Form 7 Input Table */
table.contact {
  width: 100%;
  margin: 5% 0 0;
  border-collapse: collapse;
}
table.contact tr {
  border-top: 1px solid var(--border-color);
}
table.contact tr:last-child {
  border-bottom: none;
}
table.contact th,
table.contact td {
  color: var(--text-main);
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: normal;
}
table.contact th {
  width: 25%;
  white-space: nowrap;
  text-align: left;
  padding: 10px;
  background: var(--primary-light);
}
table.contact td {
  padding: 15px 15px 15px 30px;
  vertical-align: middle;
}
@media (width <= 768px) {
  /* table */
  table.contact,
  table.contact tbody,
  table.contact tr,
  table.contact th,
  table.contact td {
    display: block;
  }
  table.contact th {
    width: 100%;
  }
}
