@charset "UTF-8";
html {
  font-size: 16px;
  line-height: 1;
  letter-spacing: normal;
}

body {
  font-size: 0.925rem;
  color: #555;
  letter-spacing: 1px;
  line-height: 1.72;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
  counter-reset: number 0;
}

h1, h2, h3, h4, h5, dt, th {
  color: #1d1d1d;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

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

img {
  vertical-align: bottom;
}

.grid-contaier {
  display: grid;
}

.grid-harf {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

a:link, a:active {
  color: #1d1d1d;
  text-decoration: underline;
}
a:link:hover, a:active:hover {
  color: #555;
}

a:visited {
  color: #555;
  text-decoration: underline;
}

#globalHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1d1d1d;
  transition: 0.5s;
  z-index: 1000;
  font-family: serif;
}
.home #globalHeader {
  background: transparent;
}
.home.scrolled #globalHeader {
  background: #1d1d1d;
}
@media only screen and (max-width: 768px) {
  #globalHeader {
    height: 15vw;
    width: 100%;
    padding: 2.5vw;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 769px) {
  #globalHeader {
    height: 62px;
    padding: 20px 0;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 768px) {
  #globalHeader .header-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 4fr 1fr;
    height: 10vw;
  }
}
@media screen and (min-width: 769px) {
  #globalHeader .header-inner {
    width: 70%;
    margin: auto;
    grid-template-columns: 1fr 3fr;
    display: grid;
    align-items: center;
    height: 22px;
  }
}
#globalHeader .header-inner a {
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  #globalHeader .header-inner #siteNameArea #siteName {
    height: 5vw;
    width: 100%;
    background: url(../images/header-logo_wh.png) 0 0 no-repeat;
    background-size: contain;
    text-indent: -9999px;
    transition: 0.5s;
    margin-top: 2.5vw;
    margin-left: 2.5vw;
  }
  #globalHeader .header-inner #siteNameArea #siteName a {
    display: block;
    height: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  #globalHeader .header-inner #siteNameArea #siteName {
    width: 100%;
    height: 22px;
    background: url(../images/header-logo_wh.png) 0 0 no-repeat;
    background-size: contain;
    text-indent: -9999px;
    transition: 0.5s;
  }
  #globalHeader .header-inner #siteNameArea #siteName a {
    display: block;
  }
}
#globalHeader .header-inner #headerMenuArea ul {
  text-align: right;
}
#globalHeader .header-inner #headerMenuArea ul li {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  #globalHeader .header-inner #headerMenuArea ul li {
    display: none;
  }
}
#globalHeader .header-inner #headerMenuArea ul li + li {
  margin-left: 10px;
}
#globalHeader .header-inner #headerMenuArea ul li a {
  text-decoration: none;
  padding: 0 10px;
  display: block;
  position: relative;
}
#globalHeader .header-inner #headerMenuArea ul li a:after {
  content: "";
  width: 0;
  height: 3px;
  background: #ddd;
  transition: 0.5s;
  position: absolute;
  left: 50%;
  bottom: -22px;
  filter: opacity(0);
}
#globalHeader .header-inner #headerMenuArea ul li a:hover:after {
  left: 0;
  width: 100%;
  filter: opacity(1);
}
#globalHeader .header-inner #headerMenuArea ul li#menuBar {
  padding: 10px 0;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #globalHeader .header-inner #headerMenuArea ul li#menuBar {
    display: block;
  }
}
#globalHeader .header-inner #headerMenuArea ul li#menuBar .menu-inner {
  display: table;
  width: 30px;
}
@media only screen and (max-width: 768px) {
  #globalHeader .header-inner #headerMenuArea ul li#menuBar .menu-inner {
    height: calc(10vw - 20px);
    margin: auto;
  }
}
#globalHeader .header-inner #headerMenuArea ul li#menuBar .menu-inner .menu-inner2 {
  display: table-cell;
  vertical-align: middle;
}
#globalHeader .header-inner #headerMenuArea ul li#menuBar .menu-inner .menu-inner2 span {
  width: 30px;
  height: 1px;
  display: block;
  animation-duration: 0.5s;
  animation-name: menuBarfade;
  background: #fff;
  transition: 0.5s;
}
#globalHeader .header-inner #headerMenuArea ul li#menuBar .menu-inner .menu-inner2 span.bottom {
  margin-top: 6px;
}

@keyframes menuBarfade {
  0% {
    opacity: 1;
    margin: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.menu-open #menuBar span.top {
  transform: rotate(158deg);
  margin-top: 4px;
}
.menu-open #menuBar span.bottom {
  transform: rotate(-158deg);
  margin-top: -1px !important;
}

#globalMenu {
  display: none;
  position: fixed;
  background: #1d1d1d;
  right: -100%;
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: 20;
  animation-name: menuFade;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.menu-open #globalMenu {
  display: block;
  right: 0;
}

@keyframes menuFade {
  0% {
    right: -100%;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 0.97;
  }
}
#globalMenu .inner {
  width: 70%;
  margin: 120px auto;
}
@media only screen and (max-width: 768px) {
  #globalMenu .inner {
    width: 100%;
    padding: 25vw 5vw 20vw;
    box-sizing: border-box;
    margin: 0;
  }
}
#globalMenu .inner li {
  border-bottom: 1px solid #f6f6f6;
}
#globalMenu .inner li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  position: relative;
}
#globalMenu .inner li a:after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  top: 1rem;
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='%23fff' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd' preserveAspectRatio='none' %3E%3Cpath d='M4 .755l14.374 11.245-14.374 11.219.619.781 15.381-12-15.391-12-.609.755z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

#globalFooter {
  background: #1d1d1d;
  color: #fff;
  margin-top: 150px;
}
@media only screen and (max-width: 768px) {
  #globalFooter {
    margin-top: 10vw;
  }
}
#globalFooter .footer-inner {
  display: table;
  width: 100%;
  table-layout: fixed;
}
#globalFooter .footer-inner .footer-logo {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 5vw 0;
}
#globalFooter .footer-inner .footer-logo a {
  display: block;
  margin-bottom: 2vw;
}

/* front-page
------------------------------- */
#splash {
  position: relative;
}
@media only screen and (max-width: 768px) {
  #splash {
    width: 100%;
    height: 100vh;
  }
}
@media screen and (min-width: 769px) {
  #splash {
    width: 100%;
    height: 100vh;
  }
}
#splash img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #splash img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#splash .mask {
  display: block;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(29, 29, 29);
  background: linear-gradient(180deg, rgb(29, 29, 29) 0%, rgba(29, 29, 29, 0) 35%);
  height: 100%;
  display: block;
}

#siteTheme {
  background: url(../images/lead-some.png) right center no-repeat #f6f6f6;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #siteTheme {
    position: inherit;
    background-position: center center;
  }
}
@media only screen and (max-width: 768px) {
  #siteTheme .inner {
    width: 100%;
    position: static;
  }
}
@media screen and (min-width: 769px) {
  #siteTheme .inner {
    width: 77%;
    max-width: 1100px;
    margin: 0;
    display: grid;
    grid-template-columns: 20fr 13fr;
  }
}
#siteTheme .inner .image-bloc {
  width: 100%;
  padding: 88px 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #siteTheme .inner .image-bloc {
    padding: 0;
    position: static;
  }
}
#siteTheme .inner .image-bloc img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 88px;
  left: -5%;
  transition: 0.5s;
  filter: brightness(0);
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  #siteTheme .inner .image-bloc img {
    position: inherit;
  }
}
#siteTheme .inner .text-bloc {
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 88px 0;
  transition: 2.5s;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  #siteTheme .inner .text-bloc {
    margin: 0;
    width: 100%;
    padding: 10vw 5vw;
    height: 52vh;
    box-sizing: border-box;
  }
}
#siteTheme .inner .text-bloc .inner {
  padding: 0;
  display: block;
}
#siteTheme .inner .text-bloc .inner h2 {
  font-size: 1.8rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
#siteTheme .inner .text-bloc .inner p {
  line-height: 2.2;
  margin-left: 30px;
}
#siteTheme.is-inview .text-bloc {
  opacity: 1;
}
#siteTheme.is-inview .image-bloc img {
  left: 0;
  opacity: 1;
  filter: brightness(1);
}

#front-menu {
  width: 100%;
  background: url(../images/contents-nav-image.jpg) 0 center no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #front-menu {
    display: table;
    width: 100%;
    margin: auto;
  }
  #front-menu .inner {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    padding: 10vw 5%;
    box-sizing: border-box;
  }
  #front-menu .inner h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 3vw;
    font-size: 1.875rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  }
  #front-menu .inner ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
  }
  #front-menu .inner a {
    color: #fff;
    text-decoration: none;
    padding: 2vw;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 769px) {
  #front-menu {
    display: table;
    width: 100%;
    height: 380px;
  }
  #front-menu .inner {
    display: table-cell;
    width: 70%;
    margin: auto;
    vertical-align: middle;
    text-align: center;
    color: #fff;
  }
  #front-menu .inner h2 {
    color: #fff;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 1.875rem;
    margin-bottom: 40px;
  }
  #front-menu .inner ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    width: 60%;
    margin: auto;
  }
  #front-menu .inner ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
  }
}

#front-caution {
  border-top: 3px solid #da2f2f;
  background: #f6f6f6;
}
#front-caution .inner {
  width: 70%;
  margin: auto;
  padding: 76px 0 88px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #front-caution .inner {
    width: 90%;
    margin: auto;
  }
}
#front-caution .inner h2 {
  font-size: 1.725rem;
  font-weight: 800;
  margin-bottom: 25px;
}
#front-caution .inner table {
  width: 80%;
  margin: 30px auto 40px;
  border-collapse: collapse;
  border: 1px solid #fff;
  font-size: 0.725rem;
  table-layout: fixed;
}
@media only screen and (max-width: 768px) {
  #front-caution .inner table {
    width: 100%;
  }
}
#front-caution .inner table th {
  background: #454545;
  color: #fff;
  text-align: center;
  font-weight: 800;
  padding: 15px 0;
  border: 1px solid #fff;
  vertical-align: middle;
}
#front-caution .inner table td {
  text-align: center;
  color: #555;
  padding: 15px 30px;
  border: 1px solid #fff;
  vertical-align: middle;
  background: #e6e6e6;
}
#front-caution .inner .btn {
  text-align: center;
  width: 46%;
  margin: auto;
  display: block;
}
@media only screen and (max-width: 768px) {
  #front-caution .inner .btn {
    width: 90%;
  }
}
#front-caution .inner .btn a {
  color: #fff;
  background: #1d1d1d;
  display: block;
  border-radius: 10px;
  padding: 17px 0;
  line-height: 1;
  text-decoration: none;
  transition: 0.5s ease-in-out;
}
#front-caution .inner .btn a:hover {
  text-decoration: none;
  background: #777;
}

#front-news .inner {
  width: 70%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  #front-news .inner {
    padding: 90px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125%;
  }
}
#front-news .inner h2 {
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
}
#front-news .inner li {
  display: table;
  width: 100%;
  vertical-align: top;
  border-collapse: collapse;
  border-bottom: 1px solid #ddd;
}
#front-news .inner li .date {
  display: table-cell;
  vertical-align: text-top;
  width: 30%;
  font-size: 0.725rem;
}
#front-news .inner li .title {
  width: 70%;
  display: table-cell;
  vertical-align: text-top;
  padding-left: 3%;
  box-sizing: border-box;
}
#front-news .inner li .title a {
  color: #555;
  text-decoration: none;
}
#front-news .inner li .title a:hover {
  text-decoration: underline;
}

/* template */
.pankuzu {
  margin-top: 62px;
  background: #e6e6e6;
  font-size: 0.725rem;
  line-height: 1;
  padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  .pankuzu {
    margin-top: 15vw;
    padding: 2vw 0;
  }
}
.pankuzu .inner {
  width: 70%;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .pankuzu .inner {
    width: 90%;
    margin: auto;
  }
}
.pankuzu .inner a {
  color: #1d1d1d;
  text-decoration: none;
}
.pankuzu .inner a:hover {
  text-decoration: underline;
}

.section-header {
  width: 100%;
  height: 269px;
  position: relative;
  margin-bottom: 90px;
  background-color: #1d1d1d;
}
@media only screen and (max-width: 768px) {
  .section-header {
    margin-bottom: 15vw;
    height: 25vh;
  }
}
@media only screen and (max-width: 768px) {
  .section-header .inner {
    width: 90%;
    margin: auto;
  }
}
@media screen and (min-width: 769px) {
  .section-header .inner {
    width: 70%;
    margin: auto;
  }
}
.section-header .inner .page-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.26rem;
  font-weight: 800;
  font-family: serif;
}
@media only screen and (max-width: 768px) {
  .section-header .inner .page-title {
    font-size: 2rem;
  }
}
.page-id-31 .section-header {
  background: url(../images/item-theme.jpg) 0 0 no-repeat;
  background-size: cover;
}
.page-id-11 .section-header {
  background: url(../images/flow-theme.jpg) 0 0 no-repeat;
  background-size: cover;
}
.page-id-7 .section-header {
  background: url(../images/company-theme.jpg) 0 0 no-repeat;
  background-size: cover;
}
.page-id-66 .section-header {
  background: url(../images/contact-theme.jpg) 0 0 no-repeat;
  background-size: cover;
}
.page-id-64 .section-header {
  background: url(../images/data-theme.jpg) 0 0 no-repeat;
  background-size: cover;
}

/* edit
------------------------------------ */
.edit-area {
  width: 70%;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .edit-area {
    width: 90%;
  }
}

.edit-area p:empty {
  display: none;
}
.edit-area .text-right {
  text-align: right;
  margin-top: 0.25rem;
}
.edit-area h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: serif;
}
@media only screen and (max-width: 768px) {
  .edit-area h2 {
    margin-bottom: 5vw;
  }
}
p + .edit-area h2 {
  margin-top: 90px;
}
@media only screen and (max-width: 768px) {
  p + .edit-area h2 {
    margin-top: 15vw;
  }
}
.edit-area h3 {
  font-size: 1.125rem;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 800;
  border-left: 5px solid #555;
  padding: 0.2rem 24px;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .edit-area h3 {
    margin-top: 10vw;
    margin-bottom: 5vw;
  }
}
.edit-area h3:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 50%;
  display: inline-block;
  background: #1d1d1d;
  top: 0;
  left: -5px;
}
.edit-area dl.normal-dl {
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  border-top: 1px solid #ddd;
  width: 100%;
}
.edit-area dl.normal-dl:last-child {
  border-bottom: 1px solid #ddd;
}
.edit-area dl.normal-dl dt, .edit-area dl.normal-dl dd {
  padding: 20px 0;
  display: table-cell;
  vertical-align: middle;
}
.edit-area dl.normal-dl dt {
  font-weight: 800;
  width: 16%;
}
.edit-area dl.normal-dl dd {
  width: 84%;
}
.edit-area dl.ddtbold {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .edit-area dl.ddtbold {
    margin-top: 5vw;
  }
}
.edit-area dl.ddtbold dt {
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .edit-area dl.ddtbold dt {
    margin-bottom: 3vw;
  }
}
.edit-area dl.ddtbold dt :before {
  content: "-";
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #555;
}
.edit-area .grid-1-3 {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 33px;
}
@media only screen and (max-width: 768px) {
  .edit-area .grid-1-3 {
    gap: 3vw;
  }
}
.edit-area .page-id-11 .edit-area .grid-1-3 {
  margin-top: 33px;
}
.edit-area .page-id-11 .edit-area .text-bloc dt {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.edit-area .page-id-11 .edit-area .text-bloc dt:before {
  counter-increment: number 1;
  content: counter(number) ". ";
}
.edit-area .full-width {
  width: 130%;
  margin: 33px -15%;
}
@media only screen and (max-width: 768px) {
  .edit-area .full-width {
    width: 110%;
    margin: 0 -5%;
  }
}
.edit-area .full-width li {
  position: relative;
  height: 320px;
  margin-top: 33px;
}
@media only screen and (max-width: 768px) {
  .edit-area .full-width li {
    height: 25vh;
  }
}
.edit-area .full-width li img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .edit-area .full-width li img {
    height: 25vh;
  }
}
.edit-area .full-width li .mask {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.5s ease-in-out;
}
.edit-area .full-width li:hover .mask {
  background: rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 768px) {
  .edit-area .full-width li.is-inview .mask {
    background: rgba(0, 0, 0, 0.5);
  }
}
.edit-area .full-width li a {
  display: inline-block;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 23%;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
  border: 1px solid #fff;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .edit-area .full-width li a {
    width: 80%;
    height: 3.5rem;
    line-height: 3.5rem;
  }
}
.edit-area .full-width li a:hover {
  background: #fff;
  color: #555;
}
.edit-area .dlform {
  margin-bottom: 30px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .edit-area .dlform {
    margin-bottom: 3vw;
  }
}
.edit-area .dlform dl {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-top: 1px solid #ddd;
}
@media only screen and (max-width: 768px) {
  .edit-area .dlform dl {
    display: block;
    padding: 3vw 0;
  }
}
.edit-area .dlform dl dt, .edit-area .dlform dl dd {
  display: table-cell;
  vertical-align: middle;
  padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  .edit-area .dlform dl dt, .edit-area .dlform dl dd {
    display: block;
    padding: 0;
    width: 100%;
  }
}
.edit-area .dlform dl dt {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .edit-area .dlform dl dt {
    width: 100%;
  }
}
.edit-area .dlform dl dd {
  width: 70%;
}
@media only screen and (max-width: 768px) {
  .edit-area .dlform dl dd {
    width: 100%;
    margin-top: 7px;
  }
}
.edit-area .dlform dl:last-child {
  border-bottom: 1px solid #ddd;
}
.edit-area .dlform .needit {
  display: inline-block;
  margin-left: 10px;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  border-radius: 3px;
  background: #da2f2f;
  vertical-align: middle;
  line-height: 1;
  padding: 5px 7px;
}
.edit-area .dlform input[type=text], .edit-area .dlform input[type=tel], .edit-area .dlform input[type=email], .edit-area .dlform textarea {
  border: 1px solid #ddd;
  padding: 8px 5px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
}
.edit-area .dlform .short input[type=text], .edit-area .dlform .short input[type=tel] {
  width: 20%;
}
.edit-area .dlform input[type=submit] {
  margin-top: 20px;
  border: 1px solid #ddd;
  line-height: 1;
  padding: 10px 30px;
  background: #3b7334;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.edit-area .dlform input[type=submit]:hover {
  background: #ddd;
}
.edit-area .dlform .pptext {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .edit-area .dlform .pptext {
    margin-bottom: 3vw;
  }
}
.edit-area .dlform .mwform-checkbox-field label[for=kiyaku-checkbox-1] {
  display: block;
  padding: 15px 30px;
  background: rgba(252, 215, 215, 0.2039215686);
  width: 100%;
  cursor: pointer;
  box-sizing: border-box;
}
.edit-area .item-detail {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.725rem;
}
.edit-area .item-detail + .item-detail {
  margin-top: 5px;
}
.edit-area .item-detail dt {
  background: #ddd;
  width: 15%;
  vertical-align: middle;
  display: table-cell;
  text-align: center;
  padding: 5px 0;
  font-weight: 800;
}
@media only screen and (max-width: 768px) {
  .edit-area .item-detail dt {
    width: 30%;
  }
}
.edit-area .item-detail dd {
  width: 83%;
  vertical-align: middle;
  display: table-cell;
  padding: 5px 0 5px 2%;
}
@media screen and (min-width: 769px) {
  .edit-area .item-detail dd {
    width: 65%;
    padding-left: 5%;
  }
}
.edit-area .item-detail-last {
  margin-top: 50px;
}
.edit-area ul {
  margin: 30px 0;
  list-style: disc;
}
@media only screen and (max-width: 768px) {
  .edit-area ul {
    margin: 5vw 0;
  }
}
.edit-area ul li {
  margin-left: 1.5rem;
  line-height: 1.72;
}
.edit-area ol {
  margin: 30px 0;
  list-style: decimal;
}
@media only screen and (max-width: 768px) {
  .edit-area ol {
    margin: 5vw 0;
  }
}
.edit-area ol li {
  margin-left: 1.5rem;
}
.edit-area .full-width ul {
  list-style: none;
}
.edit-area .full-width ul li {
  margin-left: 0;
}
.edit-area .btn {
  margin: 20px auto;
  display: inline-block;
  width: 70%;
}
@media only screen and (max-width: 768px) {
  .edit-area .btn {
    margin: 5vw auto;
  }
}
.edit-area .btn a {
  border: 1px solid #ddd;
  width: 100%;
  color: #555;
  text-decoration: none;
  line-height: 1;
  padding: 15px 30px;
  box-sizing: border-box;
  border-radius: 5px;
  background: #3b7334;
}
@media only screen and (max-width: 768px) {
  .edit-area .btn a {
    padding: 3vw 5vw;
  }
}
.edit-area .edit-area {
  margin: 30px 0;
  width: 100%;
}
.edit-area iframe {
  width: 100%;
  height: 400px;
}
@media only screen and (max-width: 768px) {
  .edit-area iframe {
    height: 30vh;
  }
}

.page-id-11 .numbered {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .page-id-11 .numbered {
    margin-top: 5vw;
  }
  .page-id-11 .numbered.grid-1-3 {
    display: block;
  }
  .page-id-11 .numbered.grid-1-3 img {
    width: 100%;
    height: auto;
    margin-bottom: 2vw;
  }
}
.page-id-11 .numbered dt {
  font-weight: 800;
  margin-bottom: 5px;
}

.dlform p + dl {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .dlform p + dl {
    margin-top: 5vw;
  }
}

.edit-area.cat-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 70%;
  overflow: hidden;
  margin: auto;
}
.edit-area.cat-area .cat-posts-area {
  gap: 33px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.edit-area.cat-area .cat-posts-area .cat-post .image-bloc {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .edit-area.cat-area .cat-posts-area .cat-post .image-bloc {
    margin-bottom: 3vw;
  }
}
.edit-area.cat-area .cat-posts-area .cat-post .image-bloc img {
  width: 100%;
  height: auto;
}
.edit-area.cat-area .cat-posts-area .cat-post .text-bloc h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: sans-serif;
  font-weight: 800;
}

#test {
  color: #1d1d1d;
}/*# sourceMappingURL=constructor.css.map */