@charset "utf-8";

/*
Theme Name: 株式会社 アクタス
Author: hironori hashimoto
Author URI: http://pravayoga.jp/
Description: ACTUSのオリジナルテンプレート
*/

html {
  font-size: 55%;
  scroll-behavior: smooth;
}

@media screen and (min-width: 960px) {
  html {
    font-size: 62.5%;
  }
}

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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 1.4rem;
  text-rendering: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-height: 2.1254;
  letter-spacing: 0.22rem;
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  animation: fadeIn;
  animation-duration: 0.6s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  max-width: 100%;
  height: auto;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}
main {
  flex: 1;
/*   overflow-x: hidden; */
  position: relative;
}
main::before {
  background-color: #f0f0f0;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  transition: 0.5s;
  width: calc((100% / 12) * 3);
  z-index: -1;
}
ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  display: block;
  position: relative;
}

h2,
h3,
h4,
h5 {
  line-height: 1.5;
}

.ps-br {
  display: none;
}

.sp-br {
  display: block;
}

@media screen and (min-width: 560px) {
  .ps-br {
    display: block;
  }

  .sp-br {
    display: none;
  }
}
@keyframes my-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade {
  opacity: 0;
  transition: opacity 1.4s, transform 0.8s;
}

.fade {
  opacity: 1;
}

.fadein {
  opacity: 0;
  transform: translate(0, 40px);
  transition: opacity 1.4s, transform 0.8s;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-right {
  opacity: 0;
  -webkit-transform: translateX(80px);
  -ms-transform: translateX(80px);
  transform: translateX(80px);
}

.fadein-right.scrollin {
  opacity: 1;
  -webkit-transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    transform 1s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@keyframes top-fade {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
/*********************************
ヘッダー
*********************************/
#head_wrap {
  position: sticky;
  top: 0px;
  z-index: 5;
}
.l-header {
  position: relative;
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  padding: 0 15px;
  height: 60px;
}
@media only screen and (min-width: 560px) {
  .l-header {
    height: auto;
  }
}
.l-header__logo {
  font-family: "Josefin Sans", sans-serif;
  flex: 0 0 47%;
  max-width: 47%;
  font-size: 3.8vw;
  line-height: 1.8;
  color: #00ad5c;
  padding-top: 6px;
}

@media only screen and (min-width: 560px) {
  .l-header__logo {
    flex: 0 0 23%;
    max-width: 23%;
    padding: 0px;
    font-size: 3vw;
  }
}
@media only screen and (min-width: 960px) {
  .l-header__logo {
    flex: 0 0 20%;
    max-width: 20%;
    font-size: 24px;
  }
}

@media only screen and (min-width: 560px) {
  .l-header__list {
    display: flex;
    align-items: center;
  }

  .l-header__logo a:hover {
    opacity: 0.6;
  }
}
@media only screen and (max-width: 559px) {
  .l-header__list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* align-items: center; */
    height: 90%;
    max-width: 90%;
    margin: 0 auto;
    text-align: left;
    width: 100%;
  }
}
.l-header__link {
  padding: 22px 10px;
  font-weight: 500;
  text-align: center;
  font-size: 1.8rem;
  font-family: "Josefin Sans", sans-serif;
}

@media only screen and (min-width: 560px) {
  .l-header__link {
    position: relative;
    font-size: 1.5rem;
  }
  .l-header__link:hover {
    color: #d86f7c;
  }
  .l-header__link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    width: 100%;
    height: 4px;
    background-color: #d86f7c;
    transform: scale(0, 1);
    transform-origin: center;
    transition: transform 0.2s;
  }

  .l-header__link:hover::before {
    transform: scale(1);
  }
}
.l-conversion__button {
  background: rgb(222, 0, 41);
  background: radial-gradient(
    circle,
    rgba(222, 0, 41, 1) 0%,
    rgba(249, 221, 0, 1) 100%
  );
  animation: bggradient 20s ease infinite;
  padding: 2px;
  border-radius: 8px;
  transition: 0.3s;
}
.l-conversion__button a {
  padding: 8px 14px;
  background: #fff;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 8px;
  color: #de0029;
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media only screen and (min-width: 560px) {
  .l-conversion__button a {
    font-size: 1.3rem;
  }
}

.l-conversion__button a:hover {
  background: rgb(222, 0, 41);
  background: radial-gradient(
    circle,
    rgba(222, 0, 41, 1) 0%,
    rgba(249, 221, 0, 1) 100%
  );
  color: #fff;
}

.l-conversion__button a i {
  font-size: 3.2rem;
  text-align: center;
}

@media screen and (max-width: 559px) {
  .menu .bar {
    width: 30px;
    height: 2px;
    background: #333;
    border-radius: 5px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
    transform-origin: left;
  }

  .menu .bar1 {
    margin-bottom: 8px;
  }

  .menu .bar3 {
    margin-top: 8px;
  }

  .menu.toggle .bar1 {
    transform-origin: left;
    transform: rotate(45deg);
  }

  .menu.toggle .bar2 {
    opacity: 0;
    visibility: hidden;
  }

  .menu.toggle .bar3 {
    transform-origin: left;
    transform: rotate(-45deg);
  }

  .l-header__navigation {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #b3b284, #008b4b, #44dfea);
    background-size: 200% 200%;
    animation: bggradient 20s ease infinite;
    opacity: 0.9;
    /* margin-top: 72px; */
    transition: 0.3s ease-out;
    display: flex;
    background-position: center;
    background-repeat: repeat;
    color: #fff;
  }

  .l-header__navigation li {
    height: var(--nav-height);
    line-height: var(--nav-height);
    text-align: center;
    width: 100%;
    display: block;
  }

  .menu {
    display: block;
    margin-left: auto;
    padding-right: 15px;
    z-index: 11;
  }

  .menu.toggle + .l-header__navigation {
    transform: translateX(-100%);
  }
}
/*********************************
スライダー
*********************************/
.swiper-wrap {
  max-width: 90vw;
  position: relative;
  overflow: hidden;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  height: 100%;
  margin-left: auto;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 10s linear 0s 1 normal both;
}
.slide-img {
  border-radius: 0px 0px 0px 8px;
}
.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 3vw;
  font-family: serif;
  font-weight: bold;
  text-shadow: 2px 2px 8px #000;
  color: #fff;
  transform: translate(-50%, -50%);
}

.slide-img img {
  object-fit: cover;
  height: 50vh;
  width: 100vw;
}
@media only screen and (min-width: 560px) {
  .slide-img img {
    height: 100vh;
  }
}
/*********************************
パーツ
*********************************/
.p-common__inner {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 560px) {
  .p-common__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0px;
  }

  .u-reverse {
    flex-direction: row-reverse;
  }
}
.wrap {
  max-width: 1316px;
  margin: 0 auto;
  padding: 0 16px;
}
@keyframes gradientEffect {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}
.c-common__link {
  display: flex;
  margin: 0 autp;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  height: 50px;
  background-color: #f5ff00;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  border-radius: 12px;
  box-shadow: 6px 6px 0 rgb(0 0 0 / 5%);
  padding: 0 25px 0 25px;
  color: #222;
  -ms-flex: none;
  flex: none;
  transition-duration: 0.3s;
}

.c-common__link i {
  font-size: 16px;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  right: 0px;
}
.c-common__link:hover {
  opacity: 0.7;
}
/*********************************
メインビジュアル
*********************************/
.p-top__hero {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 50vh;
  margin-bottom: 10rem;
}
@media only screen and (min-width: 560px) {
  .p-top__hero {
    height: 100vh;
  }
}
.slideshow {
  display: flex;
  animation: loop-slide 20s infinite linear 1s both;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.content {
  width: 100vw;
  /* height: 100vh; */
  animation-name: my-fade-in;
  animation-duration: 1.2s;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
@media only screen and (min-width: 560px) {
  .content {
    width: 50vw;
  }
}
.p-top__block {
  position: absolute;
  left: 20px;
  top: 30%;
  animation-name: top-fade;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 1.5s;
  color: #fff;
  line-height: 1.3;
}
@media only screen and (min-width: 560px) {
  .p-top__block {
    left: 18%;
    top: 50%;
  }
}
.p-top__headline {
  margin-bottom: 20px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 42px;
  text-shadow: 1px 0px 5px rgb(0 0 0 / 70%);
}
@media only screen and (min-width: 560px) {
  .p-top__headline {
    font-size: 40px;
  }
}
.p-top__block p {
  text-shadow: 1px 0px 3px rgb(0 0 0 / 100%);
  font-size: 1.8rem;
  padding-right: 20px;
  line-height: 2;
}
@media only screen and (min-width: 560px) {
  .p-top__block p {
    text-shadow: 1px 0px 5px rgb(0 0 0 / 100%);
    font-size: 1.685rem;
  }
}
.smooth {
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  animation: catch 1.4s forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

@media only screen and (min-width: 560px) {
  .smooth {
    animation-delay: 1s;
  }
}

@keyframes catch {
  0% {
    transition-property: clip-path;
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0);
    opacity: 1;
  }
}

@media only screen and (min-width: 560px) {
  .p-top__body {
    font-size: 2rem;
  }
}
.p-items__headline {
  display: inline-block;
  font-size: calc(2.025rem + 0.925vw);
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 560px) {
  .p-items__headline {
    font-size: calc(2.225rem + 1.1125vw);
  }
}
.p-items__headline span {
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 3px;
}
.p-top__link {
  margin-top: 20px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  width: 290px;
  height: 50px;
  background-color: #f5ff00;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  border-radius: 16px 3em 3em 16px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.05);
  padding: 0 25px 0 35px;
  color: #222;
  -ms-flex: none;
  flex: none;
  transition-duration: 0.3s;
}
@media only screen and (min-width: 560px) {
  .p-top__link {
    margin-top: 40px;
    width: 360px;
    height: 80px;
    font-size: 18px;
  }
}
/*********************************
私たちについて
*********************************/
section {
  padding: 3rem 0px 10rem;
}
#message {
  padding: 10rem 0px;
  position: relative;
  background: linear-gradient(
    45deg,
    #b3b284,
    #008b4b,
    #44dfea
  ); /*グラデーションを定義*/
  background-size: 200% 200%; /*サイズを大きくひきのばす*/
  animation: bggradient 20s ease infinite;
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#message::after {
  content: "Message";
  font-family: "Poppins", sans-serif;
  left: 0px;
  top: 0px;
  position: absolute;
  font-size: 17vw;
  color: #00ad5c;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 0;
  line-height: 1;
}
@media only screen and (min-width: 560px) {
  #message::after {
    font-size: 8vw;
  }
}
.p-message__headline {
  font-size: 5.8vw;
  color: #fff;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 560px) {
  .p-message__headline {
    font-size: 4rem;
  }
}
.p-common__3columns {
  text-align: center;
  margin-bottom: 3rem;
  padding: 10px;
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 6px 6px 0 rgb(0 0 0 / 5%);
}
@media screen and (min-width: 560px) {
  .p-common__3columns {
    flex: 0 0 31.25%;
    max-width: 31.25%;
  }
}
.top-place__carousel .p-common__3columns {
	margin:0px 5px 3rem;
}
.p-message__image {
  border-radius: 12px;
}
.p-common__lead {
  font-size: 2.4rem;
  display: inline-block;
  position: relative;
  margin: 0 auto 23px;
  padding: 0 0.25em;
  line-height: 1.3;
  background-color:#f5ff00;
  margin: 0 auto 4rem;
}
@media screen and (min-width: 560px) {
	.p-common__lead {
		font-size: 2rem;
	}
}
/*********************************
価格
*********************************/
.p-common__icons {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-image: linear-gradient(to right, #23d152, #60e031);
  margin-bottom: 17px;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 70px auto 20px;
}
.p-price__headline {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.p-price__headline {
  color: #fff;
}
.p-price__table {
  width: 100%;
  text-align: center;
  table-layout: fixed;
  border-collapse: collapse;
}
.p-price__table tr {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
  display: block;
  color: #fff;
  font-size: 2rem;
  padding: 10px 0px;
}
.p-price__table tr th {
  width: 40%;
}
@media only screen and (max-width: 559px) {
.p-price__table tr th {
    width: 58%;
    text-align: left;
    padding: 10px;
}	
}
.p-price__table tr td {
  width: 50%;
}
@media only screen and (max-width: 559px) {
	.p-price__table tr td {
text-align:left;
}
}
.p-price__table tr td span {
  font-size: 1.5rem;
}
@media only screen and (max-width: 559px) {
	.p-price__table tr td span {
  font-size: 1.4rem;
		display:block;
}
}
.p-caption__body {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #fff;
  max-width: 600px;
  text-align: left;
  margin: 15px auto 0px;
}
.p-table__title {
  flex: 0 0 31.25%;
  max-width: 31.25%;
}
.p-price__inner {
  text-align: center;
}
/*********************************
流れ
*********************************/
.flow {
  margin-top: 11rem;
}
.p-flow__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  box-shadow: 6px 6px 0 rgb(0 0 0 / 5%);
  margin-bottom: 20px;
  z-index: 2;
}
.p-flow__number {
  flex: 0 0 20%;
  max-width: 20%;
  font-size: 3.6rem;
  font-family: "Poppins", sans-serif;
  color: #00ad5c;
}
@media screen and (min-width: 560px) {
  .p-flow__number {
  font-size: 4rem;
    flex: 0 0 10%;
    max-width: 10%;
  }
}
.p-flow__headline {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 3rem;
}
.p-flow__lead {
  font-size: 2.4rem;
}
@media screen and (min-width: 560px) {
  .p-flow__lead {
    font-size: 3.2rem;
  }
}
.flow {
  position: relative;
}
.flow::after {
  content: "Flow";
  font-family: "Poppins", sans-serif;
  left: 0px;
  top: 0px;
  position: absolute;
  font-size: 17vw;
  color: #e5e5e5;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
}
/*********************************
許可証
*********************************/
.p-kyoka__inner {
  border: 1px solid #efefef;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  background: #fff;
}
@media screen and (min-width: 560px) {
  .p-kyoka__inner {
    padding: 40px;
  }
}
@media screen and (max-width: 559px) {
  .p-kyoka__inner .p-common__3columns {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px;
  }
}
.p-kyoka__headline {
  color: #333;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.p-kyoka__inner .material-icons {
  position: absolute;
  right: 10px;
  color: rgb(156, 39, 39);
}
@media screen and (min-width: 960px) {
  #slider {
    padding: 0 10rem;
  }
}
.slick-slider {
  margin: 0rem 0 4rem;
}
.slick-slide .place-badge img {
  border-radius: 8px 0 0 0;
}
#thumbnail-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 960px) {
  #thumbnail-list {
    padding: 0 10rem;
  }
}
.thumbnail-item {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media screen and (min-width: 960px) {
  .thumbnail-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%;
  }
}
.thumbnail-item:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.3s opacity linear;
}
.thumbnail-item.thumbnail-current:after {
  opacity: 0;
}
.thumbnail-item img {
  width: 100%;
  margin: 0 auto;
  vertical-align: top;
}
.motion-txt {
  display: inline-block;
  position: relative;
  /* overflow: hidden; */
  padding: 10px 10px 10px 0px;
}

.motion-txt::after {
  content: "";
  position: absolute;
  opacity: 1;
  left: 100vw;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  transform: translate3d(-101%, 0, 0);
}

.js-scroll.show .motion-txt::after {
  transition-property: transform, opacity;
  transition-duration: 0.8s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}

.js-scroll.done .motion-txt::after {
  transition-property: transform;
  transition-duration: 0.8s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(103%, 0, 0);
}

.motion-txt .motion-inner {
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  display: block;
}

.js-scroll.done .motion-txt .motion-inner {
  clip-path: inset(0);
}

.u-curriculum__inner {
  display: flex;
  justify-content: space-between;
}
/*********************************
店舗
*********************************/
.col-2 {
  margin-bottom: 6rem;
}
@media only screen and (min-width: 560px) {
  .col-2 {
    flex: 0 0 48%;
    max-width: 48%;
  }
}
.p-shop__headline {
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
  margin: 15px 0px;
  font-size: 2.4rem;
}
.p-shop__body {
  margin: 15px 0px 30px;
}
/*********************************
会社概要
*********************************/
.p-access__block {
  margin-bottom: 20px;
}
.p-company__block {
  margin-bottom: 40px;
}
@media only screen and (min-width: 560px) {
  .p-company__block {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 0px;
  }
}
.p-access__table {
  text-align: left;
  width: 100%;
}

.p-access__table tr {
  display: flex;
  margin-bottom: 19px;
  border-bottom: 1px solid rgb(194, 194, 194);
  padding-bottom: 19px;
}

.p-access__table tr th {
  flex: 0 0 30%;
  max-width: 30%;
}
@media only screen and (min-width: 560px) {
	.p-access__table tr th {
  flex: 0 0 25%;
  max-width: 25%;
}
}
.p-access__table tr td {
  flex: 0 0 70%;
  max-width: 70%;
}
.p-access__table a {
  color: #00ad5c;
  font-weight: bold;
}
.p-access__table a i {
  vertical-align: bottom;
}
.p-company__body {
  margin: 0rem 0px 4rem;
}
.p-map__block {
  margin-top: 80px;
}
/*********************************
ブログ
*********************************/
#news,
#contact {
  position: relative;
}
#news::after,
#contact::before {
  content: "News";
  font-family: "Poppins", sans-serif;
  left: 0px;
  top: 0px;
  position: absolute;
  font-size: 17vw;
  color: #00ad5c;
  z-index: 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
}
@media only screen and (min-width: 560px) {
  #news::after,
  #contact::before {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 14vw;
  }
}
#contact::before {
  content: "Contact";
}
.blog-content {
  margin-bottom: 12rem;
}
.p-blog__inner {
  position: relative;
  margin-top: 6rem;
}

.p-blog__inner::before {
  content: "";
  background: url("/wp-content/themes/PEP/images/blog-bg.jpg");
  max-width: 80%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -50px;
  z-index: -1;
  right: 0px;
}
.p-works__list {
  margin-bottom: 6rem;
}
@media only screen and (min-width: 560px) {
  .p-works__list {
    flex: 0 0 31.25%;
    max-width: 31.25%;
    margin-bottom: 0rem;
  }
}
@media only screen and (min-width: 560px) {
  .p-title__block {
    flex: 0 0 35%;
    max-width: 35%;
  }
}
.p-block__content {
  padding-top: 9rem;
}
@media only screen and (min-width: 560px) {
  .p-block__content {
    position: relative;
    padding-top: 0rem;
  }
}
.p-blog__inner .p-common__inner {
  position: relative;
  z-index: 1;
  margin-bottom: 4.5rem;
}
@media only screen and (min-width: 560px) {
  .blog-content .p-common__inner::after,
  .p-blog__inner .p-common__inner::after {
    content: "";
    flex: 0 0 31.25%;
    max-width: 31.25%;
    display: block;
  }
}
.p-blog__image img {
  object-fit: cover;
  height: 288px;
  border-radius: 12px;
  width: 100%;
}

@media only screen and (min-width: 560px) {
  .p-blog__image img {
    height: 247px;
  }
}

.p-link__block {
  display: inline-block;
}
.p-blog__date {
  color: #999;
  font-size: 1.2rem;
}

.p-blog__headline {
  margin-top: 0.5rem;
}

.p-blog__link {
  display: block;
  border-bottom: 1px solid #eee;
  position: relative;
}
.blog-image img {
  object-fit: cover;
  height: 200px;
  width: 100%;
}
@media only screen and (min-width: 560px) {
  .blog-image img {
    height: 30vw;
  }
}
@media only screen and (min-width: 960px) {
  .blog-image img {
    height: 390px;
  }
}
@media only screen and (min-width: 560px) {
  .p-blog__link::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    margin: 0px 0;
    left: 0;
    background-color: #00ad5c;
    transition: all 0.3s ease-in 0s;
  }
  .p-blog__link:hover::before {
    width: 100%;
  }
}
.p-news__body {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
.p-blog__block {
  padding: 0px 0px 16px;
}
.works-content {
  padding: 10rem 0px 8rem;
}
.works-content .wrap {
  max-width: 800px;
  margin: 0 auto 8rem;
}
.blog-common-ttl {
  font-size: 2.4rem;
  border-bottom: 4px solid #00ad5c;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.blog-date {
  color: #999;
  font-size: 1.3rem;
  text-align: right;
  margin-bottom: 4rem;
}
.common-btn {
  background-color: #00ad5c;
  max-width: 500px;
  color: #fff;
  margin: 0 auto;
  height: 64px;
  line-height: 64px;
  border-radius: 4px;
  text-align: center;
  margin: 4rem auto 8rem;
}
.common-btn:hover {
  opacity: 0.8;
}
/****************************************
パンくずリスト
*****************************************/
#breadcrumb {
  margin-left: auto;
  padding-left: 0;
  margin-right: auto;
  margin-bottom: 6rem;
}

#breadcrumb li {
  display: inline;
  list-style: none;
}

#breadcrumb li:after {
  content: ">";
  padding: 0 10px;
}

#breadcrumb li:last-child:after {
  content: "";
}

#breadcrumb li a {
  text-decoration: none;
  display: inline-block;
}

#breadcrumb li:first-child a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f015";
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  font-size: 1.3rem;
  color: #333;
  padding-right: 5px;
}

#breadcrumb li a:hover {
  opacity: 0.5;
}
/*********************************
ブログ
*********************************/
.p-common__title {
  font-family: "Josefin Sans", sans-serif;
  padding-top: 80px;
  padding-bottom: 100px;
  padding-left: 15px;
  margin: 0 auto 40px;
  background-color: #eee;
  font-size: 4rem;
}
@media only screen and (min-width: 560px) {
  .p-common__title {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 960px) {
  .p-common__title {
    padding-left: 100px;
  }
}
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi span.current {
  border: 1px #1c1c1c solid;
  background: #efe8e2;
}
.pages {
  width: 100px !important;
}
.wp-pagenavi a,
.wp-pagenavi span {
  background: #fff;
  border: 1px #1c1c1c dashed;
  border-radius: 50px;
  padding: 10px 14px;
  margin: 0 5px !important;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 50px;
  height: 50px;
  justify-content: center;
  display: flex;
  align-items: center;
}
/*********************************
お問い合わせ
*********************************/
.p-contact__inner {
  position: relative;
}
.p-contact__tel {
  background: #fff;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  max-width: 500px;
  margin: 1.5rem auto 8rem;
  padding: 20px;
  border: 4px solid #96da83;
  color: #96da83;
}
.p-contact__link {
  font-size: 3.2rem;
  font-family: "Oswald", sans-serif;
  line-height: 1.1;
}
.swiper-pagination-bullet {
  width: 30px !important;
  height: 4px !important;
  background: #fff !important;
  border-radius: 0px !important;
  margin: 0 6px !important;
}
.swiper-pagination-bullet-active {
  background: #de0029;
}
.cform tr {
  display: block;
  margin-bottom: 4.8rem;
}

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

.cform th {
  display: block;
  margin-bottom: 1rem;
  text-align: left;
}

@media screen and (min-width: 560px) {
  .cform th {
    margin-bottom: 0;
    margin-right: 1rem;
    max-width: 20rem;
    width: 100%;
    align-self: flex-start;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 560px) {
  .cform td {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    width: 100%;
    display: block;
  }
}
.mw_wp_form {
  margin: 8rem auto 0;
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
}
@media screen and (min-width: 560px) {
  .mw_wp_form {
    max-width: 960px;
  }
}

.mw_wp_form table {
  width: 100%;
  text-align: left;
}
.mw_wp_form table tr {
  margin-bottom: 20px;
}
.mw_wp_form option,
.mw_wp_form textarea,
.mw_wp_form input[type="text"],
mw_wp_form select,
.mw_wp_form input[type="email"],
.mw_wp_form input[type="search"],
.mw_wp_form input[type="url"] {
  background-color: #fff;
  border: 1px solid #c3d4e0;
  padding: 5px 10px;
  margin-bottom: 5px;
  width: 100%;
  border-radius: 4px;
}

@media screen and (min-width: 560px) {
  .mw_wp_form option,
  .mw_wp_form textarea,
  .mw_wp_form input[type="text"],
  .mw_wp_form select,
  .mw_wp_form input[type="email"],
  .mw_wp_form input[type="search"],
  .mw_wp_form input[type="url"] {
    width: 100%;
  }
}

.mw_wp_form textarea {
  min-height: 300px;
}

.required-srt {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 5px 0.5em;
  font-size: 1.1rem;
  margin-left: 1rem;
  line-height: 1;
}

@media screen and (min-width: 560px) {
  .required-srt {
    margin-left: 0;
    display: flex;
    align-items: center;
    padding: 0 0.2em;
    height: 28px;
  }
}

.mw_wp_form input[type="submit"] {
  cursor: pointer;
  background: #fff;
  padding: 12px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
  font-size: 18px;
  margin: 0 auto 60px;
  display: block;
  position: relative;
  transition: 0.3s;
  font-weight: 600;
  border: none;
  max-width: 500px;
  border: 4px solid #000;
  color: #000;
}

.mw_wp_form input[type="submit"]:hover {
  opacity: 0.8;
}

.submit-btn input:hover {
  background: #fff;
  color: #00142c;
}

.form-btn__inner {
  margin-top: 4rem;
}

.p-contact__body {
  text-align: center;
  font-weight: bold;
}

select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

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

.submit-btn {
  cursor: pointer;
  max-width: 280px;
  background-color: #ed6d00;
  padding: 24px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  display: block;
  letter-spacing: 0.25rem;
  position: relative;
  transition: 0.3s;
  font-weight: 600;
  border: none;
}

.submit-btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0) 25%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 75%
  );
  -webkit-animation: shine 2s infinite;
  animation: shine 2s infinite;
}

#wpcf7-modify {
  cursor: pointer;
  max-width: 280px;
  background-color: #fff;
  padding: 24px 32px;
  color: #ff9103 !important;
  border: 1px solid #ff9103 !important;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  display: block;
  letter-spacing: 0.25rem;
  position: relative;
  transition: 0.3s;
  font-weight: 600;
  border: none;
}

.submit-btn:hover {
  opacity: 0.6;
}

.thanks-block {
  margin-bottom: 16rem;
  text-align: left;
}

.thanks-block h3 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 560px) {
  .thanks-block {
    text-align: center;
  }
}

.thanks-text {
  line-height: 2.4;
  max-width: 960px;
  margin: 0 auto;
}

.caption {
  color: #999;
  margin-top: 2rem;
  display: block;
}

.contact-agreement__body {
  text-align: center;
  margin: 2rem 0;
}

.contact-agreement__body a {
  display: inline-block;
  text-decoration: underline;
}

@media screen and (min-width: 560px) {
  .contact-agreement__body a {
    margin-bottom: 4rem;
  }
}

.privacy-policy__wrap {
  max-width: 960px;
  margin: 0 auto 14rem;
}

.privacy-policy__block {
  margin-bottom: 4rem;
}

div.wpcf7-mail-sent-ok {
  border: 2px solid #ffffff !important;
  background: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 2px solid #ffffff !important;
  background: #fff;
}

.contact-headline {
  font-size: 2rem;
  margin-bottom: 4rem;
}

.wpcf7-mail-sent-ok {
  display: none !important;
}

/*********************************
footer
*********************************/
footer {
  background: #f9f8f4;
  padding: 100px 0px 0px;
  text-align: center;
}
footer h2 {
  font-size: 4rem;
  margin: 0 auto 1.5rem;
}
footer p {
  font-size: 12px;
}
copyright {
  margin-top: 100px;
  background-color: #000;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 1.2rem;
  padding: 15px 10px;
}

.p-footer__logo {
  text-align: center;
  max-width: 150px;
  margin: 0 auto 3rem;
}
.btn__container {
  max-width: 220px;
  margin: 4rem auto;
}
.btn {
  min-width: 110px;
  background-color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #c71e7e;
  display: flex;
  transition: all 0.2s ease-in-out;
  margin-right: 10px;
}
.btn i {
  color: #df3796;
  font-size: 20px;
  padding-right: 10px;
  transition: all 0.3s ease-in-out;
  padding-top: 5px;
}
.btn span {
  font-family: "Roboto", sans-serif;
  align-self: center;
  transform: translateX(0px);
  transition: all 0.1s ease-in-out;
  opacity: 1;
}
.c-pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.c-pagetop__button {
  background-color: #f5ff00;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  width: 40px;
  height: 140px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 560px) {
  .c-pagetop__button {
    width: 60px;
    height: 150px;
  }
}

.c-pagetop__button:hover {
  opacity: 0.7;
}

.p-footer__link {
  text-align: center;
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 30px;
}

.p-footer__link a:hover {
  color: #ed6d00;
}
.insta_btn2 {
  /*ボタンの下地*/
  color: #fff; /*文字・アイコン色*/
  border-radius: 7px; /*角丸に*/
  position: relative;
  display: inline-block;
  margin: 0 auto 10rem;
  height: 50px; /*高さ*/
  width: 190px; /*幅*/
  text-align: center; /*中身を中央寄せ*/
  font-size: 18px; /*文字のサイズ*/
  line-height: 50px; /*高さと合わせる*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat; /*グラデーション①*/
  overflow: hidden; /*はみ出た部分を隠す*/
  text-decoration: none; /*下線は消す*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.insta_btn2:before {
  /*グラデーション②*/
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /*全体を覆う*/
  height: 100%; /*全体を覆う*/
  background: -webkit-linear-gradient(
      15deg,
      #ffdb2c,
      rgb(249, 118, 76) 25%,
      rgba(255, 77, 64, 0) 50%
    )
    no-repeat;
  background: linear-gradient(
      15deg,
      #ffdb2c,
      rgb(249, 118, 76) 25%,
      rgba(255, 77, 64, 0) 50%
    )
    no-repeat;
}

.insta_btn2 .fa-instagram {
  /*アイコン*/
  font-size: 35px; /*アイコンサイズ*/
  position: relative;
}

.insta_btn2 span {
  /*テキスト*/
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.insta_btn2:hover span {
  /*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}
.mwform-radio-field-text {
  vertical-align: sub;
}
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  background: linear-gradient(
    45deg,
    #b3b284,
    #008b4b,
    #44dfea
  ); /*グラデーションを定義*/
  background-size: 200% 200%; /*サイズを大きくひきのばす*/
  animation: bggradient 20s ease infinite;
  z-index: 9999999;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#splash_logo {
  font-size: 32px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
}
#splash_logo img{
	max-width:250px;
	margin:0 auto;
}
@media only screen and (min-width: 560px) {
	#splash_logo img{
	max-width:100%;
}
}
/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/*上に消えるエリア*/
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  bottom: 50%;
  left: 0;
  transform: scaleY(1);
  background-color: #f9f8f4;
}

@keyframes PageAnime {
  0% {
    transform-origin: top;
    transform: scaleY(1);
  }

  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}

/*下に消えるエリア*/
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 0;
  transform: scaleY(1);
  background-color: #f9f8f4;
  /*伸びる背景色の設定*/
}

@keyframes PageAnime2 {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
  }

  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
  /*はじめは透過0に*/
  position: relative;
  z-index: 1;
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
