@charset "UTF-8";

/* アニメーション */
.animation {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

.keyframe1 {
  animation-name: anim_v;
}

@keyframes anim_v {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, 15px);
  }
}

/* フォント */
.font-geom {
  font-family: "Geom", sans-serif;
}

.center {
  text-align: center;
}

/* マーク */
span.mark-orange,
span.mark-purple {
  position: relative;
}

span.mark-orange::before,
span.mark-purple::before {
  content: "●";
  font-size: 1.2rem;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

span.mark-orange::before {
  color: #fc822c;
}

span.mark-purple::before {
  color: #a94997;
}

@media screen and (max-width: 565px) {
  span.mark-orange::before {
    top: -7px;
    font-size: 8px;
  }

  span.mark-purple::before {
    font-size: 5px;
  }
}

/* 共通
====================================== */
.l-contener {
  max-width: 1580px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* 部品 */
.grid-contents {
  display: grid;
}

.flex-contents {
  display: flex;
}

.f-bold {
  font-weight: 800;
}

/* ボタン */
.btn-wrap {
  padding-left: 15px;
  padding-right: 15px;
}

.btn-cta {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  padding: 15px 30px;
  color: #fff;
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(
    147deg,
    rgba(250, 196, 91, 1) 0%,
    rgba(213, 55, 116, 1) 50%,
    rgba(125, 91, 185, 1) 100%
  );
  border-radius: 100vh;
}

.btn-cta span {
  display: block;
  font-size: 2.5rem;
  font-weight: 400;
}

/* 背景固定 */
.background-attachment {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.background-attachment.bg-background {
  background-image: url("../images/bg-ackground.png");
}

@media screen and (max-width: 991px) {
  .btn-cta {
    font-size: clamp(3rem, 4vw, 4rem);
  }
  .btn-cta span {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
}
@media screen and (max-width: 565px) {
  .btn-cta {
    font-size: 2rem;
  }
  .btn-cta span {
    font-size: 1.4rem;
  }
}
/* レイアウト
-------------------------------------- */
.l-kv {
}

.l-about {
  padding-left: 15px;
  padding-right: 15px;
}
.l-point,
.l-flow,
.l-faq {
  padding-top: 60px;
  padding-bottom: 100px;
}

.l-worries {
  padding-top: 160px;
}

.l-whats {
  padding-top: 100px;
}

.l-background {
  padding-top: 150px;
  padding-bottom: 150px;
}

.l-voice {
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  z-index: 3;
}

.l-about {
  padding-top: 250px;
  padding-bottom: 100px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.inline-block {
  display: inline-block;
}

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

  .sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .l-worries,
  .l-whats {
    padding-top: 60px;
  }
  .l-background {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .l-voice {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .l-faq {
    padding-bottom: 60px;
  }
}
/* タイトル
-------------------------------------- */
.ttl-main,
.ttl-main-reverse {
  display: flex;
  flex-direction: column;
  line-height: 2;
}

.ttl-main.ttl-center,
.ttl-main-reverse.ttl-center {
  align-items: center;
}

/* 上段英語 下線付き */
.ttl-main span.en {
  position: relative;
  font-family: "Geom", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.ttl-main.ttl-center span.en::before,
.ttl-main span.en::before {
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  border-radius: 100vh;
  background: #00214c;
}

.ttl-main.ttl-center span.en::before {
  right: 0;
  margin: 0 auto;
}

.ttl-main span.ja {
  font-size: clamp(3.5rem, 4vw, 5rem);
  font-weight: 900;
}

/* 上段英語 下線無し */
.ttl-main-reverse span.en {
  position: relative;
  font-family: "Geom", sans-serif;
  font-size: clamp(3.5rem, 4vw, 6rem);
  font-weight: 700;
}

.ttl-main-reverse span.ja {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: bold;
}

@media screen and (max-width: 565px) {
  .ttl-main-reverse {
    line-height: 1.5;
  }

  .ttl-main span.ja {
    font-size: 2.5rem;
    line-height: 1.5;
  }

  .ttl-main span.en {
    font-size: 1.6rem;
  }

  .ttl-main-reverse span.en {
    font-size: 3rem;
  }

  .ttl-main-reverse span.ja {
    font-size: 1.8rem;
  }
}

/* フローティング
====================================== */
.floating-wrap {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
  width: 100%;
}

.floating-wrap ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fac45b;
  background: linear-gradient(
    147deg,
    rgba(250, 196, 91, 1) 0%,
    rgba(213, 55, 116, 1) 50%,
    rgba(125, 91, 185, 1) 100%
  );
  color: #fff;
  font-size: clamp(2.2rem, 2.6vw, 3rem);
  font-weight: 700;
  padding: 15px 30px;
}

.floating-wrap ul li a:hover {
  background: #b0a18b;
  background: linear-gradient(
    147deg,
    rgba(125, 91, 185, 1) 0%,
    rgba(213, 55, 116, 1) 50%,
    rgba(250, 196, 91, 1) 100%
  );
}

/* PAGE TOP
====================================== */
.pagetop {
  position: fixed;
  bottom: 1rem;
  right: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  font-family: "Geom", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  background-color: #fff;
  border: 3px dotted #a94997;
  border-radius: 100%;
  cursor: pointer;
  z-index: 999;
}
@media screen and (max-width: 565px) {
  .pagetop {
    display: none;
  }
}

/* 下層コンテンツ
====================================== */
/*KV
-------------------------------------- */
.main-kv--img {
  position: relative;
}

.main-kv-slider {
  width: 100%;
  margin: 0 auto;
}

.main-kv-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.main-kv-slider img {
  width: 100%;
}

/* こんな経験ありませんか？
-------------------------------------- */
/* タイトル下のオレンジ囲い */
.worries-catch {
  text-align: center;
}

.worries-catch span {
  display: inline-block;
  margin: 0 auto;
  padding: 0 25px;
  background: #fc822c;
  border-radius: 100vh;
  color: #fff;
  font-size: 1.8rem;
}

/* 悩みコンテンツ */
.worries-wrap {
  max-width: 1080px;
  margin: 100px auto 200px;
}

.worries-wrap-left,
.worries-wrap-right {
  position: relative;
}

.worries-wrap-left li {
  width: calc(100% - 280px);
}

.worries-wrap-right li {
  width: calc(100% - 280px);
  margin-left: 280px;
}

.worries-wrap ul li {
  margin-bottom: 30px;
  padding: 20px 15px;
  font-size: 2rem;
  background: #f5f5f5;
  border-radius: 10px;
}

.shape-worries01,
.shape-worries02,
.shape-worries03,
.shape-worries04 {
  position: absolute;
  z-index: 1;
  width: 250px;
}

.shape-worries01 {
  top: -100px;
  right: 0;
}

.shape-worries02 {
  top: 25%;
  left: 10px;
}

.shape-worries03 {
  top: 25%;
  right: 0;
}

.shape-worries04 {
  top: 0;
  left: 10px;
}

.shape-worries05 {
  display: none;
}

@media screen and (max-width: 767px) {
  .worries-wrap {
    margin: 60px auto 100px;
  }
  .worries-wrap-left li {
    width: calc(100% - 180px);
  }

  .worries-wrap-right li {
    width: calc(100% - 180px);
    margin-left: 180px;
  }

  .shape-worries01,
  .shape-worries02,
  .shape-worries03,
  .shape-worries04 {
    width: 150px;
  }

  .shape-worries01 {
    top: 25%;
    right: 0;
  }

  .shape-worries04 {
    top: 25%;
    left: 10px;
  }
}

@media screen and (max-width: 565px) {
  .worries-catch span {
    font-size: 1.6rem;
  }
  .worries-wrap-left li {
    width: 100%;
  }

  .worries-wrap-right li {
    width: 100%;
    margin-left: 0;
  }

  .worries-wrap ul li {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
  .shape-worries01,
  .shape-worries02,
  .shape-worries03,
  .shape-worries04 {
    display: none;
  }

  .shape-worries05 {
    display: block;
    text-align: right;
  }
}

/* 根本解決 */
.p-solution-wrap {
}

.p-solution h3 {
  padding: 15px;
  font-size: clamp(3.5rem, 4vw, 5rem);
  font-weight: 900;
  text-align: center;
  color: #fff;
  background: #43433d;
}

.p-solution--inner {
  padding: 60px 15px;
  text-align: center;
  background: #f5f5f5;
}

.p-solution--inner h4 {
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 800;
  color: #000;
}

.p-solution--inner p {
  font-size: 2rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-solution--inner {
    padding: 30px 15px 60px;
  }
}
@media screen and (max-width: 565px) {
  .p-solution h3 {
    font-size: 2.2rem;
  }
  .p-solution--inner {
    padding: 0 15px 60px;
  }

  .p-solution--inner h4 {
    font-size: 2.2rem;
  }

  .p-solution--inner p {
    font-size: 1.6rem;
    text-align: left;
  }
}

/* インスタキャンパスとは!
-------------------------------------- */
.l-whats {
  position: relative;
}

.l-whats-wrap {
  background-image: url("../images/bg-whats.png");
  background-size: contain;
  background-position: right 3% bottom;
  padding-bottom: 60px;
}

.whats-inner {
  width: 70%;
  margin-right: 30%;
}

.whats-inner p {
  padding-top: 60px;
  font-size: 2rem;
  line-height: 2;
}

.img-design img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .whats-inner p {
    padding-top: 30px;
  }

  .img-design img {
    max-width: 80%;
  }
}
@media screen and (max-width: 565px) {
  .whats-inner p {
    font-size: 1.6rem;
  }
  .whats-inner p br {
    display: none;
  }
}

/* 目指す形 */
.l-future {
  padding: 80px 15px 40px;
  text-align: center;
}

.future-catch {
  text-align: center;
}

.future-catch span {
  display: inline-block;
  margin: 0 auto 20px;
  padding: 5px 45px;
  background: #43433d;
  border-radius: 100vh;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
}

.l-future h2 {
  font-size: clamp(3rem, 4vw, 6rem);
  font-weight: 800;
  line-height: 2;
}

.l-future h3 {
  font-size: 2.8rem;
  font-weight: 600;
}

.stroke-orange {
  color: #fff;
  -webkit-text-stroke: 5px #ff9e0c;
  text-stroke: 5px #ff9e0c;
  paint-order: stroke;
}

.stroke-purple {
  color: #fff;
  -webkit-text-stroke: 5px #a94997;
  text-stroke: 5px #a94997;
  paint-order: stroke;
}

@media screen and (max-width: 1480px) {
  .l-whats-wrap {
    background-size: 350px;
  }
}

@media screen and (max-width: 1180px) {
  .l-whats-wrap {
    background-size: 250px;
  }
}

@media screen and (max-width: 767px) {
  .l-whats-wrap {
    background-size: 180px;
    padding-bottom: 130px;
  }

  .whats-inner {
    width: 100%;
    margin-right: 0;
  }

  .future-catch span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 565px) {
  .l-future h2 {
    font-size: 2.5rem;
  }
  .l-future h3 {
    font-size: 2rem;
  }
}
/* BACKGROUND
-------------------------------------- */
.l-background {
  position: relative;
}

.shape-background {
  position: absolute;
  right: 0;
  bottom: 0;
}

.background-inner {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  padding: 60px;
  background: rgba(255, 255, 255, 0.8);
}

.background-text {
  position: relative;
  z-index: 9;
  padding-top: 60px;
  font-size: 1.8rem;
  line-height: 2;
}

.company-name {
  padding-top: 25px;
  text-align: right;
  font-size: 1.6rem;
}

.company-name.boss {
  padding-top: 0;
  text-align: right;
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 1400px) {
  .background-inner {
    width: 96%;
  }
}

@media screen and (max-width: 767px) {
  .background-inner {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 565px) {
  .background-text {
    font-size: 1.6rem;
  }
}
/* 選ばれる3つの理由
-------------------------------------- */
.l-point {
  position: relative;
  max-width: 1480px;
  margin: 100px auto 100px;
  background: rgba(230, 225, 221, 0.34);
}

.shape-point {
  position: absolute;
  bottom: 0;
  right: -40px;
}

.point-wrap {
  padding: 60px 15px 0;
}

.point-wrap h3 {
  margin-bottom: 50px;
  font-size: 3rem;
  font-weight: 900;
}

.point-wrap h3::before {
  position: relative;
  top: -5px;
  content: "●";
  padding-right: 10px;
  font-size: 1.8rem;
}

.point-inner {
  max-width: 1080px;
  margin: 0 auto 60px;
  padding: 60px;
  background: #fff;
  border-radius: 30px;
}

.point-item.flex-contents {
  justify-content: space-around;
  align-items: center;
}

.point-item.flex-contents .point-text {
  font-size: 1.8rem;
  line-height: 2;
}

.point-text .disc {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
}

.point-text .disc li {
  position: relative;
  padding-left: 30px;
}

.point-text .disc li::before {
  position: absolute;
  top: 12px;
  left: 10px;
  content: ""; /* 空の要素作成 */
  width: 8px; /* 幅指定 */
  height: 8px; /* 高さ指定 */
  display: inline-block; /* インラインブロックにする */
  background-color: #00214c; /* 背景色指定 */
  border-radius: 50%; /* 要素を丸くする */
}

@media screen and (max-width: 1500px) {
  .l-point {
    width: 96%;
  }
  .shape-point {
    right: 10px;
  }
}

@media screen and (max-width: 1080px) {
  .shape-point img {
    width: 180px;
  }
}

@media screen and (max-width: 767px) {
  .point-inner {
    padding: 60px 15px;
  }
  .point-item.flex-contents {
    display: block;
  }

  .point-item.flex-contents .point-img {
    text-align: center;
  }
}

@media screen and (max-width: 565px) {
  .point-wrap h3 {
    font-size: 2rem;
  }
  .point-item.flex-contents .point-text {
    font-size: 1.6rem;
  }
  .point-text .disc {
    padding-left: 0;
  }
}

/* CUSTOMER VOICE
-------------------------------------- */
.l-voice {
  background-image: linear-gradient(90deg, #ce12b4, #fe9a1c);
}

.l-voice .ttl-main-reverse {
  color: #fff;
}

.slide-voice {
  max-width: 1180px;
  padding-top: 60px;
}

/* スライダーの中のコンテンツ */
.voice--list-wrap {
  padding-left: 15px;
  padding-right: 15px;
}

.voice--list-inner {
  display: flex;
  align-items: center;
  height: auto;
  width: 100%;
  padding: 45px 25px;
  background-color: #fff;
  border-radius: 30px;
}

.voice--list-text {
  height: 480px;
  line-height: 2;
}

.voice--list-wrap h3.voice-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
}

.voice--list-wrap h3.voice-title span.voice-title-01,
.voice--list-wrap h3.voice-title span.voice-title-02 {
  display: block;
  line-height: 1.5;
}

.voice--list-wrap h3.voice-title span.voice-title-02 {
  margin-left: 100px;
}

.voice--list-text-inner {
  padding: 30px 15px 15px;
}

@media screen and (max-width: 565px) {
  .voice--list-wrap h3.voice-title {
    font-size: 2rem;
  }
}

/* dots */
.dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dots-wrap li {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
  background: #826a3e;
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.shape-voice {
  position: absolute;
  top: 60px;
  left: 10%;
}

@media screen and (max-width: 767px) {
  .shape-voice {
    left: 0;
  }
  .shape-voice img {
    width: 150px;
  }
}
@media screen and (max-width: 565px) {
  .shape-voice img {
    width: 100px;
  }
  .voice--list-inner {
    padding: 45px 15px;
  }
}

/* スクロールバー */
.scroller {
  overflow-y: scroll;
}
.scroller::-webkit-scrollbar {
  width: 8px;
  background-color: #de94bf;
  border-radius: 5px;
}
.scroller::-webkit-scrollbar-thumb {
  background: #cecece;
  width: 6px;
  border-radius: 5px;
}

/* FAQ
-------------------------------------- */
ul.acd {
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

ul.acd li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #858580;
}

ul.acd li::before {
  content: "";
  display: inline-block;
  background: url(../images/icon-faq-Q.png);
  background-size: cover;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 21px;
  left: 10px;
  z-index: 8;
}

.acd-title {
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
  padding: 25px 30px 25px 60px;
  background: rgba(230, 225, 221, 0.34);
  font-weight: 600;
  border-radius: 100vh;
}

.acd-title::before,
.acd-title::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 2px;
  background-color: #00214c;
}

.acd-title::before {
  top: 48%;
  right: 50px;
  transform: rotate(0deg);
}

.acd-title::after {
  top: 48%;
  right: 50px;
  transform: rotate(90deg);
}

/* openというクラスがついたら形状変化 */
.acd-title::before,
.acd-title.open::before {
  transform: rotate(0deg);
}

.acd-title.open::after {
  transform: rotate(-45deg);
  display: none;
}

/* 表示OPENのコンテンツ装飾 */
.acd-title.open {
  background: rgba(230, 225, 221, 1);
}

.acd-title.open::before {
  background-color: #00214c;
}
/*アコーディオンで現れるエリア*/
.acd-box {
  position: relative;
  display: none;
  /*はじめは非表示*/
  padding: 15px 30px 60px 60px;
}

.acd-box::before {
  content: "";
  display: inline-block;
  background: url(../images/icon-faq-A.png);
  background-size: cover;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 25px;
  left: 10px;
  z-index: 8;
}

@media screen and (max-width: 767px) {
  .acd-title::before {
    right: 25px;
  }

  .acd-title::after {
    right: 25px;
  }
}

@media screen and (max-width: 565px) {
  ul.acd {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .acd-title::before,
  .acd-title::after {
    content: none;
  }
  .acd-title {
    padding: 15px 15px 15px 60px;
  }
  .acd-box {
    padding: 15px 15px 60px 60px;
  }
}
/* CONTACT
-------------------------------------- */
.l-contact {
  padding-left: 15px;
  padding-right: 15px;
}

.contact-wrap {
  max-width: 1260px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  background: rgba(230, 225, 221, 0.35);
  border-radius: 30px;
}

/* 流れる画像 */
.scroll-infinity {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__list--right {
  animation: infinity-scroll-right 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 1);
}
.scroll-infinity__item > img {
  width: 100%;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}

@media screen and (max-width: 767px) {
  .scroll-infinity__item > img {
    width: auto;
    height: 120px;
    object-fit: cover;
  }
}

/* 運営会社情報
-------------------------------------- */
.l-about {
  position: relative;
  overflow: hidden;
}

.about-company {
  max-width: 985px;
  margin: 0 auto;
  padding-top: 60px;
}

.about-company .company-list {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #ccc;
}

.about-company .company-list dt {
  width: 150px;
  padding: 15px;
}

.about-company .company-list dd {
  flex: 1;
  padding: 15px;
}

@media screen and (max-width: 565px) {
  .about-company .company-list {
    display: block;
  }

  .about-company .company-list dt {
    padding: 15px 15px 0;
  }

  .about-company .company-list dd {
    padding: 5px 15px 15px;
  }
}

/* 流れるテキスト */
.flowing-text {
  position: absolute;
  top: 0;
  display: flex;
  animation: loop-text 10s linear infinite;
}
.double-content {
  display: inline-block;
  font-size: 6rem;
  white-space: nowrap;
  transform: rotate(-15deg);
}
@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* お問い合わせ
====================================== */
.contact-form {
  max-width: 850px;
  margin: 0 auto 100px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.screen-reader-response,
fieldset {
  display: none;
}

.wpcf7-not-valid-tip {
  font-size: 1.2rem;
  font-weight: bold;
  color: #9b0000;
}

form p {
  position: relative;
}

form p label {
  display: flex;
  margin-bottom: 40px;
}

form p label .form-item {
  width: 250px;
  position: relative;
  font-weight: 600;
}

form p label span span {
  position: absolute;
  bottom: 10px;
  left: 0;
}

.required {
  position: relative;
}

.required::after {
  content: "※";
  font-size: 1.2rem;
  color: #9b0000;
}

input.custom-form-text,
textarea.custom-form-text {
  width: 580px;
  padding: 15px 30px;
  border: 1px solid #fc822c;
}

textarea.custom-form-text {
  border-radius: 10px;
  height: 200px;
}

input.customform-text {
  width: 580px;
  padding: 15px 30px;
  border: 1px solid #fc822c;
}

.btn-custom-submit {
  display: block;
  padding: 15px 30px;
  margin: 0 auto;
  border-radius: 5px;
  background: #fc822c;
  color: #fff;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  input.custom-form-text,
  textarea.custom-form-text {
    width: 450px;
  }
}

@media screen and (max-width: 767px) {
  form p label {
    display: block;
  }
  input.custom-form-text,
  textarea.custom-form-text {
    width: 100%;
    margin-top: 15px;
  }
}

/* コンタクトフォームのエラー表示 */
.wpcf7-not-valid-tip {
    color: #910f0f;
    position: absolute;
    bottom: auto;
    left: 20px;
} 

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #9b0000;
    background: #9b0000;
    color: #fff;
}

.wpcf7 form .wpcf7-response-output {
    border: 5px solid #00a0d2;
}



/* サンクス
-------------------------------------- */
.l-thanks {
  padding-top: 150px;
  padding-bottom: 150px;
}
.p-thanks {
  max-width: 850px;
  margin: 0 auto;
}

.p-thanks-inner {
  text-align: center;
}

.p-thanks-inner p {
  padding-top: 60px;
  line-height: 3;
}

.btn-top {
  margin-top: 45px;
}

.btn-top a {
  padding: 10px 25px;
  background: #000;
  color: #fff;
}

.btn-top a:hover {
  opacity: 0.65;
}