@charset "UTF-8";

:root {
  --font-family: "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
	--text-color: #333333;
  --main-color: #144123;
  --sub-color: #84bc98;
	/*↑英語見出し*/
  --sub-color2: #ffffff;
  --accent-color: #9ad1ad;
	/*↑ピックアップ２つ目背景*/
  --accent-color2: #d0ddd5;
	/*↑ピックアップ３つ目背景*/
  --accent-color3: #cccccc;
  --background-effect: #002300;
	--news-backcolor: rgba(12, 89, 31, .6);
}

/* var(--font-family) */

body {
  font-family: var(--font-family);
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

html.addmin {
  margin-top: 0px !important;
  margin-top: 0rem !important;
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
	color: var(--text-color);
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: var(--main-color);
  color: var(--sub-color2);
}

.c-breadcrumb {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    font-size: 1rem;
  }
}

.c-breadcrumb__home {
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.c-breadcrumb__home::before {
  position: absolute;
  content: "";
  left: 0;
  display: inline-block;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background: url(../images/top/clarity_house-line.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-button-black {
  background-color: var(--main-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--sub-color2);
  position: relative;
  color: var(--sub-color2);
  font-weight: 800;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
}

.c-button-black:hover {
  color: var(--main-color);
  background-color: var(--sub-color2);
  border: 1px solid var(--main-color);
}

.c-button-white {
  background-color: var(--sub-color2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--sub-color2);
  position: relative;
  color: var(--main-color);
  font-weight: 800;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
}

.c-button-white:hover {
  color: var(--sub-color2);
  background-color: var(--main-color);
  border: 1px solid var(--sub-color2);
}

.c-hamburger {
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 2px;
  width: 32px;
  background: var(--main-color);
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  border-radius: 20px;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 8px 0;
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

/*OPEN時の動き*/
.c-hamburger.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-hamburger.open span:nth-child(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.c-hamburger.open span:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-hamburger span.color {
  background: var(--main-color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-hamburger.hamburgerColor span {
  background: var(--main-color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.hamburgerColor.color span {
  background: var(--main-color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-pagination {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .c-pagination {
    margin-top: 4rem;
  }
}

.c-pagination__inner {
  text-align: center;
}

.wp-pagenavi span.current {
  font-size: 16px;
  font-size: 1rem;
  border: 1px solid var(--sub-color2);
  background-color: var(--main-color);
  color: var(--sub-color2);
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  display: inline-block;
  margin-right: 4px;
  margin-right: 0.25rem;
  margin-left: 4px;
  margin-left: 0.25rem;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi span.current {
    width: 2rem;
    font-size: 1.25rem;
    padding: 0.3125rem 0.625rem;
    display: inline-block;
    min-width: 40px;
    min-width: 2.5rem;
    text-align: center;
    text-decoration: none;
  }
}

.page.larger {
  font-size: 16px;
  font-size: 1rem;
  border: 1px solid var(--main-color);
  background-color: transparent;
  color: var(--main-color);
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  display: inline-block;
  margin-right: 4px;
  margin-right: 0.25rem;
  margin-left: 4px;
  margin-left: 0.25rem;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .page.larger {
    width: 2rem;
    font-size: 1.25rem;
    padding: 0.3125rem 0.625rem;
    min-width: 40px;
    min-width: 2.5rem;
    text-align: center;
    text-decoration: none;
  }
}

.page.smaller {
  font-size: 16px;
  font-size: 1rem;
  border: 1px solid var(--main-color);
  background-color: transparent;
  color: var(--main-color);
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  display: inline-block;
  margin-right: 4px;
  margin-right: 0.25rem;
  margin-left: 4px;
  margin-left: 0.25rem;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .page.smaller {
    width: 2rem;
    font-size: 1.25rem;
    padding: 0.3125rem 0.625rem;
    min-width: 40px;
    min-width: 2.5rem;
    text-align: center;
    text-decoration: none;
  }
}

.previouspostslink,
.nextpostslink {
  font-size: 16px;
  font-size: 1rem;
  border: 1px solid var(--main-color);
  background-color: transparent;
  color: var(--main-color);
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  display: inline-block;
  margin-right: 4px;
  margin-right: 0.25rem;
  margin-left: 4px;
  margin-left: 0.25rem;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .previouspostslink,
.nextpostslink {
    width: 2rem;
    font-size: 1.25rem;
    padding: 0.3125rem 0.625rem;
    min-width: 40px;
    min-width: 2.5rem;
    text-align: center;
    text-decoration: none;
  }
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  min-width: 0;
  min-width: initial;
  width: auto;
}

.c-subtitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  position: absolute;
  bottom: 0px;
  bottom: 0rem;
  color: var(--main-color);
  display: block;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-subtitle {
    font-size: 1.125rem;
  }
}

.c-title {
  font-size: 40px;
  font-size: 2.5rem;
  color: var(--sub-color);
  position: relative;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 4.375rem;
  }
}

.l-footer {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: 7.5rem;
    margin-bottom: 0;
  }
}

.l-header {
  position: fixed;
  z-index: 998;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.l-header.addmin {
  margin-top: 0px;
  margin-top: 0rem;
}
@media screen and (min-width: 768px) {
  .l-header.addmin {
    margin-top: 2rem;
  }
}

.l-article {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-article {
    margin-top: 7.5rem;
  }
}

.l-low-blog {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-low-blog {
    margin-top: 7.5rem;
  }
}

.l-about {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-about {
    margin-top: 0;
  }
}

.l-accent {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-accent {
    margin-top: 7.5rem;
  }
}

.l-blog {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-blog {
    margin-top: 7.5rem;
  }
}

.l-company {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-company {
    margin-top: 7.5rem;
  }
}

.l-concept {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-concept {
    margin-top: 7.5rem;
  }
}

.l-contact {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-contact {
    margin-top: 7.5rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
	padding-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
	  padding-bottom: 0;
  }
}

.l-menu {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-menu {
    margin-top: 7.5rem;
  }
}

.l-move {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-move {
    margin-top: 7.5rem;
  }
}

.l-mv {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-point {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-point {
    margin-top: 7.5rem;
  }
}

.l-staff {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-staff {
    margin-top: 7.5rem;
  }
}

.p-drawer-menu {
  width: 100%;
  height: 100vh;
  background-color: var(--sub-color2);
  z-index: 100;
  display: none;
  position: absolute;
  margin-top: 60px;
  margin-top: 3.75rem;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: scroll;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
  padding: 20px 24px;
  padding: 1.25rem 1.5rem;
}

.p-drawer-menu__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-drawer-menu__list {
  width: 100%;
  padding: 15px 0;
  padding: 0.9375rem 0;
}

.p-drawer-menu__list a {
  display: block;
  width: 100%;
}

.p-drawer-menu__link {
  width: 100%;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.04em;
  color: var(--main-color);
  line-height: 1.75;
}

body.fixed {
  height: 100%;
  overflow: hidden;
}

.p-footer {
  background-color: var(--main-color);
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 7.5rem;
  }
}

.p-footer__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding-top: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__top {
    width: 50%;
  }
}

.p-footer__top-img {
  width: 130px;
  width: 8.125rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-footer__top-img {
    margin-left: 0;
    width: 11.25rem;
  }
}

.p-footer__top-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 1.5;
}

.p-footer__top-text p {
  color: var(--sub-color2);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.4;
}

.p-footer__top-text p span {
	display: block;
}
@media screen and (min-width: 768px) {
  .p-footer__top-text p {
    font-size: 1rem;
  }
	.p-footer__top-text p span {
	display: inline;
}
}

.p-footer__bottom {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    margin-top: 0;
    width: 50%;
  }
}

.p-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
  gap: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.sns-list {
  width: 40px;
  width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .sns-list {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.sns-list:last-child {
  margin-right: 0;
}

.p-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-footer__links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 2.5rem;
  }
}

.p-footer__link {
  width: 140px;
  width: 8.75rem;
  margin-right: 20px;
  margin-right: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  height: 32px;
  height: 2rem;

}

.p-footer__link:last-child {
  margin-right: 0;
}

.p-footer__link a {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-footer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-footer__list {
  display: inline-block;
  color: var(--sub-color2);
  font-weight: 800;
  margin-right: 20px;
  margin-right: 1.25rem;
  height: 46px;
  height: 2.875rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__list {
    height: 2.5rem;
    font-size: 0.875rem;
  }
}

.p-footer__list a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.p-footer__list a:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--sub-color2);
  bottom: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-footer__list a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.copy-light {
  text-align: center;
  color: var(--sub-color2);
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .copy-light {
    margin-top: 7.5rem;
  }
}

.p-fix-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-fix-footer {
    display: none;
  }
}

.fix-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 49px;
  height: 3.0625rem;
  border-top: 1px solid var(--sub-color2);
}

.fix-item__link {
  width: 50%;
  height: inherit;
  line-height: 1.75;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--sub-color2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
}

.fix-item__link:hover {
  color: var(--main-color);
  background-color: var(--sub-color2);
}

.fix-item__link:first-child {
  border-right: 1px solid var(--sub-color2);
}

.fix-footer-icon {
  margin-right: 8px;
  margin-right: 0.5rem;
}

.pc-menu {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-menu {
    display: block;
  }
}

.p-header {
  height: 60px;
  height: 3.75rem;
  background-color: var(--sub-color2);
}

.p-header__inner {
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    max-width: 100%;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
}

.p-header__img {
  width: 80px;
  width: 8rem;
}

.pc-menu__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pc-menu__list {
  height: inherit;
  margin-right: 16px;
  margin-right: 1rem;
  position: relative;
}

.pc-menu__list a {
  font-size: 14px;
  font-size: 0.875rem;
  height: inherit;
  display: block;
  position: relative;
}

.pc-menu__list a::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--main-color);
  bottom: -5px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.pc-menu__list a:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.l-low-mv {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-low-mv {
  height: 180px;
  height: 11.25rem;
}
@media screen and (min-width: 768px) {
  .p-low-mv {
    height: 21.875rem;
  }
}

.p-low-mv__inner {
  height: inherit;
  position: relative;
}

.p-low-mv__img {
  height: inherit;
  position: relative;
}

.p-low-mv__img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--background-effect);
  opacity: 0.4;
}

.p-low-mv__img img {
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-low-mv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 24px;
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  color: var(--sub-color2);
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-low-mv__text {
    font-size: 2.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-low-blog__inner {
    max-width: 50rem;
  }
}

.mainContent__title {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.5em;
  letter-spacing: 0.3em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .mainContent__title {
    font-size: 1.5rem;
  }
}

.mainContent__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  width: 100%;
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mainContent__meta {
    margin-top: 2.5rem;
  }
}

.mainContent__meta ::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 30px;
  width: 1.875rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--main-color);
}
@media screen and (min-width: 768px) {
  .mainContent__meta ::before {
    width: 5rem;
  }
}

.meta-time {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 30px;
  margin: 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .meta-time {
    font-size: 1rem;
    margin: 0 3.75rem;
  }
}

.meta-category {
  font-size: 14px;
  font-size: 0.875rem;
  background-color: var(--main-color);
  color: var(--sub-color2);
  padding: 3px 14px;
  padding: 0.1875rem 0.875rem;
  margin: 0 30px;
  margin: 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .meta-category {
    font-size: 1rem;
    margin: 0 3.75rem;
  }
}

.mainContent__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .mainContent__text {
    margin-top: 3.75rem;
  }
}

.mainContent__text p {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .mainContent__text p {
    text-align: center;
  }
}

.p-article__post-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 100%;
  max-width: 1200px;
  max-width: 75rem;
}
@media screen and (min-width: 768px) {
  .p-article__post-link {
    margin-top: 5rem;
  }
}

.p-article__post-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 6px;
}
@media screen and (min-width: 768px) {
  .p-article__post-link a {
    font-size: 1.25rem;
  }
}

.p-article__post-link span {
  margin: 0 10px;
  margin: 0 0.625rem;
}

.back-arrow {
  -webkit-transform: scale(-1, 2);
          transform: scale(-1, 2);
  width: 32px;
  width: 2rem;
}

.next-arrow {
  -webkit-transform: scale(1, 2);
          transform: scale(1, 2);
  width: 32px;
  width: 2rem;
}

.back {
  font-size: 20px;
  font-size: 1.25rem;
  margin-left: 20px;
  margin-left: 1.25rem;
  letter-spacing: 6px;
}

.p-about__inner {
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 75rem;
    padding: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-about__top {
    position: relative;
    z-index: 1;
    width: 42%;
  }
}

@media screen and (min-width: 768px) {
  .p-about__title {
    text-align: left;
    margin-top: -10%;
  }
}

.p-about__subtitle {
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-about__subtitle {
    text-align: left;
  }
}

.p-about__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.25;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    font-size: 1rem;
    margin-top: 2.75rem;
  }
}

.p-about__img {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__img {
    margin-top: 0;
    position: relative;
    height: 38.125rem;
    width: 40.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
}

.p-accent__img {
  position: relative;
  width: 100%;
  height: 180px;
  height: 11.25rem;
}
@media screen and (min-width: 768px) {
  .p-accent__img {
    height: 21.875rem;
  }
}

.p-accent__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /*-o-object-position: 50% 23%;
     object-position: 50% 23%;*/
}

@media screen and (min-width: 768px) {
  .p-blog__inner {
    max-width: 50rem;
  }
}

.p-blog__list {
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-blog__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2.5rem;
	  
  }
}

.p-blog__arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-blog__arrow {
    display: block;
    width: 7.5rem;
    height: 1.4375rem;
    position: absolute;
    bottom: 5%;
    right: 0;
  }
}

.p-blog__arrow img {
  margin-top: -10%;
}

.p-blog__img {
  width: 80%;
  position: relative;
  /*height: 163px;
  height: 10.1875rem;*/
	margin: auto;
}
.p-blog__img:after {
	content: "";
	display: block;
	padding-top: 100%;
}

.p-blog__img img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
@media screen and (min-width: 768px) {
  .p-blog__img {
    width: 9.375rem;
    /*height: 9.375rem;*/
    margin-right: 2.5rem;
  }
}

.p-blog__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-blog__post {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-blog__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-blog__meta {
    margin-top: 0;
  }
}

.meta__time {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .meta__time {
    font-size: 1rem;
  }
}

.meta__category {
  margin-left: 100px;
  margin-left: 6.25rem;
  position: relative;
  background-color: var(--main-color);
  color: var(--sub-color2);
  width: 80px;
  width: 5rem;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .meta__category {
    font-size: 1rem;
  }
}

.meta__category a {
  display: block;
  height: inherit;
  padding: 3px;
  padding: 0.1875rem;
}

.meta__category::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 80px;
  width: 5rem;
  height: 1px;
  background-color: var(--main-color);
  left: -88px;
  left: -5.5rem;
}

.p-blog__post-title {
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 9.6px;
  margin-top: 0.6rem;
}
@media screen and (min-width: 768px) {
  .p-blog__post-title {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

.p-blog__button {
  width: 178px;
  width: 11.125rem;
  margin: 0 auto;
  margin-top: 48px;
  margin-top: 3rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-blog__button {
    width: 12.5rem;
    margin-top: 3.75rem;
    font-size: 1rem;
  }
}

.p-blog__button a {
  border: 1px solid var(--main-color);
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-blog__button a {
    padding: 0;
    height: 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-company__wrap {
  width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company__wrap {
    width: 50rem;
    margin: 0 auto;
    margin-top: 3.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-company__wrap {
    width: 50rem;
    margin: 0 auto;
    margin-top: 3.75rem;
  }
}

.p-company__wrap tr {
  padding: 16px 0;
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--main-color);
}
@media screen and (min-width: 768px) {
  .p-company__wrap tr {
    padding: 1.25rem 0;
  }
}

.p-company__wrap th {
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  width: 25%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-company__wrap th {
    font-size: 1rem;
    width: 30%;
  }
}

.p-company__wrap td {
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  width: 60%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-company__wrap td {
    font-size: 1rem;
  }
}

.p-company__map {
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
  width: 100%;
  height: 280px;
  height: 17.5rem;
}
@media screen and (min-width: 768px) {
  .p-company__map {
    max-width: 62.5rem;
    width: 100%;
    height: 25rem;
    margin: 0 auto;
    margin-top: 3.75rem;
  }
}

.p-company__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.p-concept__title {
  text-align: center;
}

.p-concept__subtitle {
  text-align: center;
}

.p-concept__text {
  line-height: 2.25;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-concept__text {
    text-align: center;
    font-size: 1rem;
    width: 31.25rem;
    margin: 0 auto;
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__inner {
    width: 51.875rem;
  }
}

.p-conatct__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
  line-height: 1.8;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-conatct__text {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.p-contact__button {
  width: 180px;
  width: 11.25rem;
  height: 54px;
  height: 3.375rem;
  margin: 0 auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__button {
    width: 17.5rem;
    height: 4.125rem;
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.p-contact__button a {
  font-weight: 300;
}

.p-contact__form {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    margin-top: 2.5rem;
  }
}

.p-contact__form-text {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__form-text {
    font-size: 1rem;
  }
}

.p-contact__privacy {
  width: 100%;
  height: 280px;
  height: 17.5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 20px;
  padding: 1.25rem;
  border: 1px solid var(--main-color);
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__privacy {
    width: 37.5rem;
    height: 12.5rem;
    margin: 0 auto;
    margin-top: 3.75rem;
    font-size: 1rem;
  }
}

.p-contact__privacy-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  height: 200px;
  height: 12.5rem;
  overflow-y: scroll;
  line-height: 2.25;
}
@media screen and (min-width: 768px) {
  .p-contact__privacy-text {
    height: 7.25rem;
  }
}

.p-menu__wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-menu__wrap {
    margin-top: 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-menu__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-menu__item {
    width: calc(33.333% - 1.04167rem);
    margin-right: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-menu__item:last-child {
    margin-right: 0;
  }
}

.p-menu__img {
  position: relative;
  width: 100%;
  height: 250px;
  height: 15.625rem;
}
@media screen and (min-width: 1440px) {
  .p-menu__img {
    width: 18.75rem;
    height: 18.75rem;
  }
}

.p-menu__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-menu__item-title {
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-menu__item-title {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.p-menu__item-title::before {
  position: absolute;
  content: "";
  width: 50px;
  width: 3.125rem;
  height: 1px;
  background-color: var(--main-color);
  bottom: -10px;
  bottom: -0.625rem;
}
@media screen and (min-width: 768px) {
  .p-menu__item-title::before {
    bottom: -1.25rem;
  }
}

.p-menu__item-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.25;
}
@media screen and (min-width: 768px) {
  .p-menu__item-text {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.p-menu__price-lists {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-menu__price-lists {
    margin: 0 auto;
    width: 50rem;
    margin-top: 3.75rem;
  }
}

.p-menu__price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  padding: 0.9375rem 0;
  border-bottom: 1px solid var(--main-color);
}

.p-menu__price-list p {
  width: 60%;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-menu__price-list p {
    width: auto;
    font-size: 1rem;
  }
}

.p-menu__price-list p:last-child {
  text-align: right;
  width: 40%;
}
@media screen and (min-width: 768px) {
  .p-menu__price-list p:last-child {
    width: auto;
  }
}
.p-menu__wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-menu__wrap {
    margin-top: 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
	  flex-wrap: wrap;
  }
}

.p-menu__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-menu__item {
    width: calc(33.333% - 100px/3);
    margin-right: 50px;
  }
  
	.p-menu__item:nth-child(3n) {
		margin-right: 0;
	}
}

.p-move__text {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 2.25;
}
@media screen and (min-width: 768px) {
  .p-move__text {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}

.p-move__youtube {
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 100%;
  height: 250px;
  height: 15.625rem;
}
@media screen and (min-width: 768px) {
  .p-move__youtube {
    width: 50rem;
    max-width: 100%;
    height: 28.125rem;
    margin: 0 auto;
    margin-top: 3.75rem;
  }
}

.p-move__youtube iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.p-mv {
  height: 90vh;
}

.p-mv__inner {
  height: inherit;
  position: relative;
}

.p-mv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 24px;
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  color: var(--sub-color2);
  font-weight: 300;
  padding: 0 30px;
}

@media screen and (min-width: 768px) {
  .p-mv__text {
    font-size: 2.875rem;
  }
}

.p-mv__img {
  height: inherit;
  position: relative;
}

.p-mv__img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--background-effect);
  opacity: 0.4;
}

.p-mv__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-news {
  position: relative;
  width: 100%;
  background-color: var(--main-color);
}
@media screen and (min-width: 768px) {
  .p-news {
    height: 3.75rem;
    background-color: var(--news-backcolor);
    margin-top: -3.75rem;
  }
}

.p-news__inner {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 0.6875rem;
    padding-bottom: 0.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-news__title {
  color: var(--sub-color2);
}

.p-news__text {
  color: var(--sub-color2);
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-news__text {
    margin-top: 0;
    margin-left: 6.375rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-news__text::before {
    content: "";
    position: absolute;
    width: 3.75rem;
    height: 0.0625rem;
    background-color: var(--sub-color2);
    top: 50%;
    left: -5.0625rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-news__text a {
  display: block;
}

.p-news__text a:hover {
  opacity: 0.8;
}

.p-news__button {
  width: 120px;
  width: 7.5rem;
  margin: 0 auto;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news__button {
    width: 7.5rem;
    margin: 0;
    height: 2.375rem;
  }
}

.p-news__link {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-news__link {
    padding: 0.375rem 0;
    font-size: 1rem;
  }
}

.p-news__button a {
  background-color: transparent;
}

.p-point__title {
  text-align: center;
}

.p-point__lists {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-point__lists {
    margin-top: 3.5rem;
  }
}

.p-point__list:nth-child(3n+1) {
  background-color: var(--sub-color);
}

.p-point__list:nth-child(3n+2) {
  background-color: var(--accent-color);
}

.p-point__list:nth-child(3n+3) {
  background-color: var(--accent-color2);
}

@media screen and (min-width: 768px) {
  .p-point__list-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-point__list:nth-child(2n) .p-point__list-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-point__wrap {
  background-color: var(--sub-color2);
  position: relative;
  margin-top: -15%;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-point__wrap {
    margin-top: 0;
    padding: 3.75rem 3.125rem;
    position: relative;
    margin-left: -10%;
    width: 60%;
  }
}

@media screen and (min-width: 768px) {
  .p-point__list:nth-child(2n) .p-point__wrap {
    position: relative;
    left: auto;
    margin-right: -10%;
    width: 60%;
  }
}

.p-point__wrap-title {
  position: relative;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-point__wrap-title {
    font-size: 1.25rem;
  }
}

.p-point__wrap-title::before {
  position: absolute;
  content: "";
  width: 50px;
  width: 3.125rem;
  height: 1px;
  background-color: var(--main-color);
  bottom: -10px;
  bottom: -0.625rem;
}
@media screen and (min-width: 768px) {
  .p-point__wrap-title::before {
    bottom: -1.25rem;
  }
}

.p-point__wrap-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.25;
}
@media screen and (min-width: 768px) {
  .p-point__wrap-text {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.p-point__img {
  position: relative;
  height: 250px;
  height: 15.625rem;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-point__img {
    margin: 0;
    width: 31.25rem;
    height: 31.25rem;
  }
}

.p-point__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-staff__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 75rem;
    padding: 0;
  }
}

.p-staff__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-staff__title {
    text-align: left;
  }
}

.p-staff__subtitle {
  text-align: center;
  color: var(--sub-color2);
}
@media screen and (min-width: 768px) {
  .p-staff__subtitle {
    text-align: left;
  }
}

.p-staff__top {
  background-color: var(--main-color);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 20px;
  padding: 3.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-staff__top {
    margin: 0;
    position: relative;
    z-index: 1;
    padding: 1.25rem;
    margin-right: -8%;
    width: 43.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-staff__top {
    margin: 0;
    position: relative;
    z-index: 1;
    padding: 3.75rem 6.125rem;
    margin-right: -8%;
    width: 43.75rem;
  }
}

.p-staff__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: var(--sub-color2);
  line-height: 2.25;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-staff__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-staff__img {
  position: relative;
  /*height: 250px;
  height: 15.625rem;*/
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-staff__img {
    margin: 0;
    width: 37.5rem;
    height: 37.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-staff__img {
    margin: 0;
    width: 37.5rem;
    height: 37.5rem;
  }
}

.p-staff__img img {
  /*position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);*/
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--main-color);
  z-index: 9999;
  -webkit-animation: byeShutter 2.6s forwards;
          animation: byeShutter 2.6s forwards;
}
.shutter:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--sub-color2);
  width: 0;
  height: 1px;
  -webkit-animation: shutterOpen 2.6s forwards;
          animation: shutterOpen 2.6s forwards;
}
.shutter:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

@-webkit-keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@-webkit-keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes shutterOpen {
  60% {
    width: 120%;
    height: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  90% {
    width: 120%;
    height: 100%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    width: 120%;
    height: 100%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.shutter.is-active {
  display: none;
}

.u-contact {
  width: 50%;
  height: 50px;
  height: 3.125rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .u-contact {
    width: 6.875rem;
    height: 1.875rem;
    margin-top: 0;
  }
}

.u-contact a {
  display: block;
  text-align: center;
  color: var(--sub-color2);
  background-color: var(--main-color);
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .u-contact a {
    font-size: 0.875rem;
    font-weight: 400;
  }
}

.u-contact a::before {
  content: none;
}

.u-contact a:hover {
  background-color: var(--sub-color2);
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.js-fadeIn {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 3s;
  transition: 3s;
}

.u-active {
  opacity: 1;
  visibility: visible;
}

.js-fadeIn-right {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 2s;
  transition: 2s;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.u-active-right {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-fadeIn-left {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.u-active-left {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.u-flex {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.wpcf7 {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .wpcf7 {
    margin-top: 3rem;
  }
}

.form__wrap {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .form__wrap {
    margin-top: 3.125rem;
  }
}

.form__block {
  border-bottom: 1px solid var(--main-color);
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .form__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.form__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 180px;
  width: 11.25rem;
}
@media screen and (min-width: 768px) {
  .form__meta {
    width: 13rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.u-form__title {
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .u-form__title {
    font-size: 1rem;
    margin-right: 0;
  }
}

.cf7-form {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .cf7-form {
    margin-top: 0;
    margin-left: 0.3125rem;
    width: 100%;
  }
}

.cf7-form input {
  width: 100%;
  height: 40px;
  height: 2.5rem;
  padding: 0 10px;
  padding: 0 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  border: 1px solid var(--sub-color);
}
@media screen and (min-width: 768px) {
  .cf7-form input {
    font-size: 1rem;
  }
}

.cf7-form textarea {
  width: 100%;
  height: 100px;
  height: 6.25rem;
  overflow-y: scroll;
  padding: 10px;
  padding: 0.625rem;
  border: 1px solid #DEDEDE;
}
@media screen and (min-width: 768px) {
  .cf7-form textarea {
    height: 6.25rem;
  }
}

.form__placeholder {
  color: #c4c4c4;
  font-size: 12px;
  font-size: 0.75rem;
}

.form__important {
  text-align: center;
  color: var(--sub-color2);
  background-color: var(--main-color);
  width: 33px;
  width: 2.0625rem;
  font-size: 12px;
  font-size: 0.75rem;
  margin-right: 2px;
  margin-right: 0.125rem;
}
@media screen and (min-width: 768px) {
  .form__important {
    font-size: 0.875rem;
  }
}

.form__option {
  text-align: center;
  color: var(--sub-color2);
  background-color: var(--accent-color3);
  width: 33px;
  width: 2.0625rem;
  font-size: 12px;
  font-size: 0.75rem;
  margin-right: 2px;
  margin-right: 0.125rem;
}
@media screen and (min-width: 768px) {
  .form__option {
    font-size: 0.875rem;
  }
}

.form__submit {
  text-align: center;
  width: 240px;
  width: 15rem;
  height: 50px;
  height: 3.125rem;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .form__submit {
    margin-top: 3.5rem;
    width: 15rem;
    max-width: 100%;
    position: relative;
  }
}

.form__submit-button {
  width: 280px;
  width: 17.5rem;
  max-width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  border: 1px solid var(--main-color);
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .form__submit-button {
    width: 22.5rem;
    max-width: 100%;
    font-size: 1rem;
  }
}

.form__submit::after {
  position: absolute;
  content: "";
  top: 24%;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  right: 16px;
  right: 1rem;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .form__submit::after {
    top: 30%;
  }
}

.form__privacy {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: #c4c4c4;
  display: block;
}

.form__check-block {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .form__check-block {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.form__check-block label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__check-block input:hover {
  cursor: pointer;
}

.wpcf7-list-item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item-label {
    font-size: 1rem;
  }
}

.form__check-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 8px;
  margin-right: 0.5rem;
}

.form__check-block p {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .form__check-block p {
    font-size: 1rem;
  }
}

input[type=checkbox] + span:hover::after {
  background: #fff;
}

.form__check-claim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .form__check-claim {
    font-size: 1rem;
  }
}

.form__check-claim {
  margin-top: 8px;
  margin-top: 0.5rem;
  height: 56px;
  height: 3.5rem;
}
@media screen and (min-width: 768px) {
  .form__check-claim {
    margin-top: 0;
    margin-left: 3rem;
    width: 33.75rem;
    height: 3.5rem;
  }
}

.form__check-claim input:hover {
  cursor: pointer;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form-control.wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

span.wpcf7-list-item {
  position: relative;
}

.wpcf7-list-item-label {
  /*項目の色や文字サイズ*/
  cursor: pointer;
}

input[type=checkbox] {
  position: absolute;
  opacity: 0;
  /*既存のチェックボックスを見えなくする*/
}

.wpcf7-list-item-label:before {
  /*チェックボックスの枠*/
  content: "";
  background-color: var(--sub-color2);
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  margin-right: 10px;
  margin-right: 0.625rem;
  border: 1px solid #DEDEDE;
}

input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  /*チェックアイコン*/
  content: "";
  display: block;
  position: absolute;
  background-color: var(--sub-color2);
  top: 0%;
  left: 0px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-right: 0.625rem;
  background: url(../images/common/icon-check.svg) no-repeat center;
  background-size: contain;
}

.form__input-check + .wpcf7-list-item-label:before {
  top: -10px;
  width: 42px;
}
@media screen and (min-width: 768px) {
  .form__input-check + .wpcf7-list-item-label:before {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    width: 26px;
  }
}

.wpcf7-form-control-wrap {
  position: static;
}

.form__check-box {
  position: relative;
}

.form__check-block .wpcf7-not-valid-tip {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form__check-block .wpcf7-not-valid-tip {
    width: auto;
  }
}

.u-line {
  width: 50%;
  height: 50px;
  height: 3.125rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .u-line {
    width: 6.875rem;
    height: 1.875rem;
  }
}

.u-line a {
  display: block;
  text-align: center;
  color: var(--sub-color2);
  background-color: #00b900;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  font-size: 1rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .u-line a {
    font-size: 0.875rem;
    font-weight: 400;
  }
}

.u-line a::before {
  content: none;
}

.u-line a:hover {
  background-color: var(--sub-color2);
  color: #00b900;
  border: 1px solid #00b900;
}
/*# sourceMappingURL=styles.css.map */

.btn_back {
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    color: var(--text-color);
    text-align: center;
    margin: auto;
}

.blog_icon {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
}

.blog_icon.back:before {
    content: "\f100";
    margin-right: 20px;
}

.btn_icon {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
}

.btn_icon:before {
    content: "\f105";
}

.p-blog__button .btn_icon:before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10%;
	line-height: 60px;
}

.p-blog__arrow .btn_icon:before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10%;
	line-height: 60px;
}

.p-contact__button .btn_icon:before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10%;
	line-height: 60px;
	font-weight: 600;
}

.form__submit.btn_icon:before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10%;
	line-height: 60px;
	font-weight: 600;
}

.pc_img {
    display: none;
}

.sp_img {
    display: block;
}

@media screen and (min-width: 768px) {
    .pc_img {
        display: block
    }

    .sp_img {
        display: none;
    }
}

input[name="checkbox-435[]"] + .wpcf7-list-item-label {
  color: transparent;
  font-size: 0;
}