@charset "UTF-8";
/*-- メディアクエリ --*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  .is-sp {
    display: none;
  }
}
/*------------------------------
global > color
------------------------------*/
:root {
  --c-white: #fff;
  --c-text: #21120E;
  --c-accent: #D9051B;
  --c-theme: #FFDB01;
}

/*------------------------------
global > font
------------------------------*/
:root {
  --font-ja: "Noto Sans JP", sans-serif;
  --font-ja02: "Dela Gothic One", sans-serif;
  --font-en: "Barlow", sans-serif;
}

/*------------------------------
component > title
------------------------------*/
.c-title {
  font-size: clamp(16px, 1.6vw, 2.4rem);
  letter-spacing: 0.08em;
  color: var(--c-accent);
  font-weight: bold;
  font-family: var(--font-en);
}
.c-title .c-title-ja {
  display: block;
  color: var(--c-text);
  font-size: clamp(28px, 4.66vw, 4.8rem);
  font-family: var(--font-ja);
  letter-spacing: 0.01em;
  line-height: 1;
  font-weight: bold;
}

/*------------------------------
component > text
------------------------------*/
.c-text-m {
  font-size: clamp(16px, 1.333vw, 1.8rem);
  line-height: 1.8;
}

/*------------------------------
component > js-marker
------------------------------*/
.c-js-marker {
  background: linear-gradient(transparent 70%, #FFDB01 30%);
  display: inline;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  transition: background-size 1.5s;
}

/* マーカーが引かれる際に付与するクラス */
.c-js-marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}

/*------------------------------
component > box
------------------------------*/
.c-box-two-bw {
  justify-content: space-between;
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-box-two-bw {
    display: block;
  }
}

.c-box-three {
  display: flex;
  gap: 2.4rem 2.4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-box-three {
    flex-direction: column;
    gap: 3.2rem 3.2rem;
  }
}

/*------------------------------
component > button
------------------------------*/
.c-button {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.c-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: 0.9em 2em;
  border: 1px solid var(--c-white);
  border-radius: 5px;
  background-color: var(--c-theme);
  color: var(--c-white);
  font-weight: bold;
  font-size: 1em;
  transition: box-shadow 0.4s ease;
  filter: drop-shadow(0px 0px 20px rgba(69, 59, 0, 0.16));
}

.c-button a:hover {
  box-shadow: inset var(--c-white) 0 0 0 2em;
  color: var(--c-theme);
}

/*------------------------------
foundation > base
------------------------------*/
html {
  font-size: 62.5%;
  font-family: var(--font-ja);
}

body {
  font-size: 1.6rem;
  color: var(--c-text);
  line-height: 1.7;
}

img {
  width: 100%;
  height: auto;
}

/*------------------------------
layout > header
------------------------------*/
.header-logo {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .header-logo {
    top: 1rem;
  }
}
.header-logo img {
  width: 19.4rem;
}
@media screen and (max-width: 767px) {
  .header-logo img {
    width: 14rem;
  }
}

.contact-button a {
  display: block;
  position: absolute;
  right: 2rem;
  top: 2rem;
  background: var(--c-accent);
  color: var(--c-white);
  z-index: 4;
  font-size: clamp(15px, 2vw, 2rem);
  font-weight: 500;
  padding: 0.4rem 2rem;
  border-radius: 2.8rem;
  transition: 0.3s;
  border: solid 0.1rem var(--c-accent);
}
.contact-button a:hover {
  background: var(--c-white);
  color: var(--c-accent);
}

/*------------------------------
layout > footer
------------------------------*/
.footer {
  position: absolute;
  width: 100%;
  background: #1d1900;
  padding: 6rem 0;
  color: var(--c-white);
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 5rem 0 10rem;
  }
}
.footer .l-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .l-container {
    display: block;
  }
}
.footer h2 {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .footer h2 {
    text-align: left;
    font-size: 1.2rem;
  }
}
.footer h2:hover {
  opacity: 0.7;
}

.footer-logo {
  max-width: 20rem;
  padding: 0.3rem 1rem;
  background: var(--c-white);
}
@media screen and (max-width: 767px) {
  .footer-logo {
    max-width: 14rem;
    padding: 0 1rem;
  }
}

.footer-nav-lists {
  display: flex;
  gap: 3rem 3rem;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .footer-nav-lists {
    gap: 2.2rem 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-lists {
    gap: 1.2rem 2.4rem;
    margin-top: 5rem;
  }
}
.footer-nav-lists a {
  transition: 0.3s;
}
.footer-nav-lists a:hover {
  opacity: 0.7;
}

.footer-kiyaku {
  margin-top: 2rem;
}

.footer-kiyaku-lists {
  display: flex;
  gap: 3rem 3rem;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .footer-kiyaku-lists {
    gap: 2.2rem 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-kiyaku-lists {
    gap: 1.2rem 2.4rem;
    margin-top: 2.4rem;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.footer-kiyaku-lists a {
  transition: 0.3s;
}
.footer-kiyaku-lists a:hover {
  opacity: 0.7;
}

.copyright {
  text-align: center;
  font-size: 1rem;
  margin-top: 4.8rem;
  font-weight: 400;
  color: #787878;
}

/*------------------------------
layout > container
------------------------------*/
.l-container {
  max-width: 104rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/*------------------------------
layout > section
------------------------------*/
.l-section {
  padding: 8rem 0;
}

.l-section-bg {
  padding: 4rem 0;
  background: #F5F5F2;
  position: relative;
}
.l-section-bg:after {
  content: "";
  position: absolute;
  bottom: -14.3rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 14.3rem;
  background: url(../../assets/img/wave/under.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
@media screen and (max-width: 767px) {
  .l-section-bg:after {
    height: 5rem;
    bottom: -5rem;
  }
}

/*------------------------------
page > lp > lp
------------------------------*/
.mv {
  position: relative;
  height: 58vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../../assets/img/mv.jpg) top left/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 165vw;
    padding-left: 2rem;
    padding-right: 2rem;
    background: url(../../assets/img/mv-sp.jpg) top left/cover no-repeat;
    max-height: 68rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .mv {
    height: 185vw;
  }
}
.mv:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 16.87vw;
  max-width: 24.3rem;
  max-height: 40.4rem;
  height: 28vw;
  background: url(../../assets/img/mv-ashirai.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
}

.mv-copy {
  background: rgba(255, 255, 255, 0.95);
  padding: 6rem 2.4rem 5rem;
  border-radius: 3rem;
  text-align: center;
  position: relative;
  filter: drop-shadow(0px 0px 20px rgba(69, 59, 0, 0.16));
}
@media screen and (max-width: 767px) {
  .mv-copy {
    padding: 4.6rem 1.4rem 4rem;
  }
}
.mv-copy:before {
  content: "";
  position: absolute;
  top: -3.5rem;
  width: 24.3vw;
  max-width: 35rem;
  max-height: 8rem;
  height: 5.55vw;
  background: url(../../assets/img/copy-ashirai.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .mv-copy:before {
    width: 38.3vw;
    height: 9.55vw;
    top: -2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .mv-copy:before {
    width: 74%;
    height: 100%;
    top: -2rem;
  }
}
.mv-copy h1 {
  text-align: center;
}
.mv-copy h1 img {
  max-width: 47.6rem;
  width: 33.19vw;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .mv-copy h1 img {
    width: 48vw;
  }
}
@media screen and (max-width: 767px) {
  .mv-copy h1 img {
    width: 100%;
  }
}
.mv-copy p:first-of-type {
  padding: 3rem 0;
  line-height: 1.7;
  font-size: clamp(15px, 2vw, 1.8rem);
}
.mv-copy p:last-of-type span {
  line-height: 1.7;
  font-size: clamp(17px, 2.8vw, 2.4rem);
  font-weight: bold;
}

.mv-copy::after {
  content: "";
  position: absolute;
  right: -25rem;
  bottom: -14rem;
  width: 20vw;
  max-width: 32rem;
  height: 20vw;
  max-height: 30rem;
  background: url(../../assets/img/mr.kitamura.png);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation-name: fuwafuwa;
          animation-name: fuwafuwa;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  z-index: 5;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .mv-copy::after {
    right: -12rem;
    bottom: -10rem;
    height: 22vw;
    width: 22vw;
  }
}
@media screen and (max-width: 767px) {
  .mv-copy::after {
    right: 0;
    bottom: -12rem;
    height: 40vw;
    width: 40vw;
    max-width: 20rem;
    max-height: 20rem;
  }
}
@media screen and (max-width: 767px) and (min-width: 420px) and (max-width: 767px) {
  .mv-copy::after {
    bottom: -15rem;
  }
}

@-webkit-keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ===============================================
 映像講座
=============================================== */
.movie-section {
  padding-top: 8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .movie-section {
    padding-top: 5rem;
    background: linear-gradient(#fff 30%, #FFDB01 30%, #FFDB01 100%);
  }
}
.movie-section::after {
  position: absolute;
  content: "";
  right: 0;
  width: 12.7rem;
  height: 21.5rem;
  background: url(../../assets/img/dot-right.png);
  top: 2rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.movie-lists {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 6rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .movie-lists {
    padding-left: 0;
    padding-right: 0;
    background: none;
  }
}

@media screen and (max-width: 767px) {
  .movie-list {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
  }
}

@media screen and (max-width: 767px) {
  .movie-list iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.logo {
  text-align: center;
  margin-bottom: 1.2rem;
}
.logo img {
  max-width: 24rem;
}

/* ===============================================
 悩み
=============================================== */
.worries-section {
  padding-top: 6rem;
  overflow: hidden;
}
.worries-section .l-container {
  padding-bottom: 2.4rem;
}
.worries-section p {
  margin-top: 4rem;
}

.worries-container {
  position: relative;
  background: #F5F5F2;
  padding-top: 6rem;
}
.worries-container::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18rem;
  height: 32rem;
  background: url(../../assets/img/ashirai/left.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .worries-container::before {
    width: 15rem;
    height: 24rem;
  }
}
@media screen and (max-width: 767px) {
  .worries-container::before {
    top: 0;
    width: 10rem;
    height: 22rem;
  }
}

.worries-title {
  text-align: center;
  font-size: clamp(15px, 2.2vw, 2.4rem);
}
.worries-title span {
  font-size: clamp(20px, 3vw, 3.2rem);
  font-weight: bold;
}

.worries-band {
  padding: 2.3rem 1.5rem;
  background: #362F00;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .worries-band {
    padding: 1.4rem 2rem;
  }
}
.worries-band img {
  max-width: 69rem;
}

.worries-lists {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.4rem;
  position: relative;
}
.worries-lists::after {
  position: absolute;
  content: "";
  right: -11rem;
  width: 9.6rem;
  height: 13.7rem;
  background: url(../../assets/img/people.png);
  bottom: -2.4rem;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .worries-lists::after {
    display: none;
  }
}

.worries-list {
  padding-left: 2.8rem;
  font-size: clamp(15px, 2vw, 1.8rem);
  line-height: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .worries-list {
    padding-left: 2.2rem;
  }
}
.worries-list:before {
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  content: "";
  background: url(../../assets/img/icon-check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .worries-list:before {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* ===============================================
 About
=============================================== */
.about-section .c-button {
  margin-top: 6.4rem;
}
.about-section .c-box-two-bw {
  align-items: center;
}

.about-image {
  flex: 0 0 35.2rem;
  margin-right: 3.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .about-image {
    flex: 0 0 28rem;
  }
}
@media screen and (max-width: 767px) {
  .about-image {
    margin-right: 0;
    width: 18rem;
  }
}

.about-body {
  font-size: clamp(15px, 1.8vw, 1.8rem);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .about-body {
    margin-top: 2.4rem;
  }
}
.about-body p:nth-child(n+2) {
  margin-top: 2rem;
}

/* ===============================================
 メディア掲載
=============================================== */
.media-section {
  padding: 10rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .media-section {
    padding: 5rem 0;
  }
}
.media-section::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12.5rem;
  width: 18rem;
  height: 32rem;
  background: url(../../assets/img/ashirai/right.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .media-section::before {
    width: 14rem;
    height: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .media-section::before {
    width: 10rem;
    height: 25rem;
    bottom: -15rem;
  }
}

.media-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem 2.4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .media-lists {
    gap: 4rem 4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.media-name {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  background: var(--c-accent);
  color: var(--c-white);
  padding: 0.2rem 1rem;
  margin-top: 1.6rem;
}

.media-logo-lists {
  justify-content: center;
  align-items: center;
}

.media-list a {
  transition: 0.3s;
}
.media-list a:hover {
  filter: brightness(1.12);
}
.media-list h3 {
  font-weight: 500;
  font-size: clamp(15px, 1.7vw, 2rem);
  margin-top: 1rem;
}

.media-logo-list a {
  transition: 0.3s;
}
.media-logo-list a:hover {
  filter: brightness(1.12);
}
.media-logo-list img {
  max-height: 7rem;
  width: auto;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .media-logo-list img {
    max-height: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .media-logo-list img {
    max-height: 4rem;
  }
}

/* ===============================================
 書籍
=============================================== */
.book-section {
  background: #F5F5F2;
}
.book-section .c-box-two-bw {
  align-items: flex-end;
}
.book-section .c-button {
  margin-top: 6rem;
}
.book-section .c-button a {
  display: block;
}

.book-body {
  margin-right: 4rem;
}
@media screen and (max-width: 767px) {
  .book-body {
    margin-right: 0;
  }
}
.book-body h3 {
  font-weight: bold;
  margin-top: 4.8rem;
  font-size: clamp(17px, 2vw, 2.4rem);
}
.book-body h3 span {
  font-size: 1.5rem;
  color: var(--c-accent);
}
@media screen and (max-width: 767px) {
  .book-body h3 span {
    display: block;
    text-align: right;
    margin-top: 0.5rem;
  }
}

.book-desc {
  margin-top: 3.2rem;
}
.book-desc p:nth-child(n+2) {
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .book-image {
    margin-top: 2.4rem;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ===============================================
 プロフィール
=============================================== */
.profile-section {
  padding: 18rem 0 8rem;
  background: linear-gradient(transparent 50%, var(--c-theme) 50%, var(--c-theme) 100%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .profile-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(transparent 22%, var(--c-theme) 22%, var(--c-theme) 100%);
  }
}
.profile-section::after {
  position: absolute;
  content: "";
  left: 0;
  width: 17.6rem;
  height: 30rem;
  background: url(../../assets/img/dot-left.png);
  top: -7rem;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .profile-section::after {
    height: 22rem;
  }
}
@media screen and (max-width: 767px) {
  .profile-section::after {
    height: 14rem;
    top: -2rem;
  }
}
.profile-section .c-box-two-bw {
  gap: 4rem 4rem;
}
@media screen and (max-width: 767px) {
  .profile-section .c-title-ja {
    color: var(--c-text);
  }
}

.profile-image {
  flex: 0 0 28rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .profile-image {
    flex: 0 0 22rem;
  }
}
@media screen and (max-width: 767px) {
  .profile-image {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }
  .profile-image img {
    display: block;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.profile-image h3 {
  margin-top: 1rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.profile-image h3 span {
  font-weight: 400;
  font-family: var(--font-en);
  font-size: 1.4rem;
  margin-left: 1.2rem;
  color: var(--c-accent);
  letter-spacing: 0.06em;
}
.profile-image p {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-top: 0.8rem;
  color: #3a3a3a;
}
.profile-image small {
  font-size: 1.1rem;
  line-height: 1.4;
  display: block;
  margin-top: 0.4rem;
  color: #3a3a3a;
}

.profile-desc {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .profile-desc {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
}
.profile-desc p:nth-child(n+2) {
  margin-top: 2rem;
}

.blog-kittan {
  display: block;
  margin-top: 3.2rem;
}
.blog-kittan img {
  max-width: 30rem;
  transition: 0.3s;
}
.blog-kittan img:hover {
  filter: brightness(1.08);
}

@media screen and (max-width: 767px) {
  .profile-body {
    margin-top: 2.4rem;
  }
}
/* ===============================================
 追従ボタン
=============================================== */
.entry-button {
  position: fixed;
  z-index: 5;
  bottom: 4rem;
  right: 4rem;
  transition: 0.3s;
  -webkit-animation: yurayura 2s linear infinite;
          animation: yurayura 2s linear infinite;
}
@media screen and (max-width: 767px) {
  .entry-button {
    right: 2rem;
    bottom: 1rem;
  }
}
.entry-button img {
  width: min(13.88vw, 20rem);
  filter: drop-shadow(0px 0px 20px rgba(69, 59, 0, 0.16));
}
@media screen and (max-width: 767px) {
  .entry-button img {
    width: 24vw;
  }
}
.entry-button:hover {
  filter: brightness(1.1);
}

@-webkit-keyframes yurayura {
  0%, 100% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}

@keyframes yurayura {
  0%, 100% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}
/*=================================================
  フォーム
===================================================*/
.form {
  margin-top: 3.2rem;
}

.contact-message {
  margin-top: 4rem;
}

input,
button,
textarea,
select {
  /* デフォルトスタイルをリセット */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* font-familyを継承しないので、継承させる */
  font-family: inherit;
  /* iOSの角丸をリセット */
  border-radius: 0;
  /* box-size */
  box-sizing: border-box;
  /* 文字の大きさ iOSでズームさせないために16px以上を指定 */
  font-size: 16px;
  /* 文字色を親から継承 */
  color: inherit;
}

label {
  /* iOSでのlabelとinput,select,textareaの関連付け */
  cursor: pointer;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* スピンボタン非表示 chrome,safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=month]::-webkit-outer-spin-button,
input[type=month]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=week]::-webkit-outer-spin-button,
input[type=week]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button {
  /*-webkit-appearance: none;
  margin: 0;*/
  display: none;
}

/* スピンボタン非表示(firefox) */
input[type=number],
input[type=month],
input[type=datetime-local],
input[type=week],
input[type=time],
input[type=date] {
  -moz-appearance: textfield;
}

/* クリアボタン非表示 */
input[type=date]::-webkit-clear-button,
input[type=month]::-webkit-clear-button,
input[type=datetime-local]::-webkit-clear-button,
input[type=time]::-webkit-clear-button,
input[type=week]::-webkit-clear-button {
  -webkit-appearance: none;
}

/* input */
input {
  /* inputの枠線を消す */
  border: 1px solid transparent;
  transition: border 0.2s ease-out;
  /*inputのフォーカス時の枠線を消す*/
  outline: 0;
}

select {
  /* 右端の▼を消す */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  /*inputのフォーカス時の枠線を消す*/
  outline: 0;
  border: 1px solid #959595 !important;
}

.form-item {
  padding-top: 1.8rem;
  padding-bottom: 1.2rem;
  width: 100%;
}
.form-item select {
  width: 100%;
  height: 5rem;
}

.form-item-label {
  width: 100%;
  letter-spacing: 0.04em;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0.4rem;
}

.form-item-label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.form-label-required {
  margin-left: 0.5rem;
  font-size: 14px;
  font-weight: 500;
  padding: 0.1rem 0.5rem;
  color: var(--c-white);
  background: var(--c-accent);
}

.form-item-input {
  border: 1px solid #959595;
  padding: 1rem 1.5rem;
  height: 5rem;
  flex: 1;
  width: 100%;
  background: #fff;
}

.form-item-textarea {
  border: 1px solid #959595;
  padding: 1rem 1.5rem;
  height: 216px !important;
  flex: 1;
  width: 100% !important;
  background: #fff;
  margin-top: 1rem;
}

.submit-button {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
  padding: 1.2rem 0;
  max-width: 32rem;
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  background-color: var(--c-theme);
  transition: 0.3s;
  width: 100%;
}

.submit-button:hover {
  text-decoration: none;
  filter: brightness(1.04);
}

::-moz-placeholder {
  color: #c8c8c8;
  font-size: 1.8rem;
}

::placeholder {
  color: #c8c8c8;
  font-size: 1.8rem;
}

.form select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
  border: solid 1px;
  padding: 0.5rem 1rem;
}

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

#mfp_overlay_background,
#mfp_loading_screen,
#mfp_hidden {
  display: none !important;
}

/*--------------------------------
ページトップへ戻るボタン
--------------------------------*/
.js-scroll-fadein {
  transition: opacity 1s;
  visibility: hidden;
  opacity: 0;
}

.js-scroll-fadein.is-fadein {
  visibility: visible;
  opacity: 1;
}

/* ===============================================
 サンクスページ
=============================================== */
.thanks-section {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .thanks-section {
    padding: 15rem 0 6rem;
  }
}
.thanks-section h1 {
  text-align: center;
  font-weight: bold;
  font-size: clamp(18px, 2vw, 2.4rem);
}
.thanks-section p {
  margin-top: 4rem;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .thanks-section p {
    font-size: 1.6rem;
  }
}

.thanks-message {
  text-align: center;
}

/* ===============================================
 アニメーション
=============================================== */
/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0.3s;
  /* フェード開始を0.5秒遅らせる */
}

/*------------------------------
page > privacy > privacy
------------------------------*/
.privacy-section {
  padding: 15rem 0 10rem;
}
.privacy-section h1 {
  text-align: center;
  font-weight: bold;
  font-size: clamp(18px, 2vw, 2.4rem);
}
.privacy-section p {
  font-size: 1.5rem;
  line-height: 2;
}

.privacy-message {
  margin-top: 4rem;
}

.privacy-list {
  margin-top: 3rem;
}
.privacy-list h2 span {
  font-weight: bold;
  border-bottom: 0.2rem solid var(--c-accent);
}
.privacy-list p {
  line-height: 1.7;
  margin-top: 1rem;
}

.privacy-list > ul {
  font-size: 1.4rem;
  margin-top: 0.6rem;
}
.privacy-list > ul li {
  padding-left: 1.4rem;
  position: relative;
}
.privacy-list > ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/*------------------------------
utility > utility
------------------------------*/
.u-bold {
  font-weight: bold;
}

.u-accent {
  color: var(--c-accent);
}

.u-center {
  text-align: center;
}