@charset "UTF-8";
/* Color */
/* Background */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  box-sizing: border-box;
  font-family: sans-serif;
}

main {
  display: block;
}

h1,
h2,
h3,
dl,
ol,
ul {
  font-size: 1em;
  margin: 0;
  padding: 0;
}

a {
  background-color: transparent;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

code,
kbd,
samp,
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  line-height: inherit;
  border: 1px solid currentColor;
}

button {
  overflow: visible;
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  padding: 1px 6px;
}

input {
  overflow: visible;
}

input,
textarea {
  padding: 1px;
}

fieldset {
  border: 1px solid currentColor;
  margin: 0 2px;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

select {
  text-transform: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=color] {
  background: inherit;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

::-webkit-search-decoration,
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::-moz-focus-inner {
  border: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  color: inherit;
  overflow: visible;
}

ol ol,
ol ul,
ol dl,
ul ol,
ul ul,
ul dl,
dl ol,
dl ul,
dl dl {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  text-indent: 0;
  border-color: inherit;
}

details {
  display: block;
}

dialog {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  word-break: break-all;
  word-wrap: break-word;
  background: #FEF3EE;
}
@media screen and (min-width: 960px) {
  body {
  font-size: 16px;
  }
}

a {
  text-decoration: none;
  color: #111;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

input, textarea, select {
  border: 1px solid #C3C3C3;
  width: 100%;
  border-radius: 3px;
  padding: 10px;
  resize: none;
  -webkit-appearance: none;
  font-size: 14px;
  background: #fff;
  color: #111;
}
@media screen and (min-width: 600px) {
  input, textarea, select {
  font-size: 16px;
  }
}
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 1px 0 rgb(0, 0, 0);
  outline: 0;
  background: #fff;
}

/* placeholder */
input::placeholder,
textarea::placeholder {
  color: #cccccc;
}

/* IE */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #cccccc;
}

/* Edge */
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #cccccc;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

ul {
  list-style-type: none;
}

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

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

.grecaptcha-badge {
  visibility: hidden;
}

/* --------------------------------------------
  z-index
-------------------------------------------- */
#p-hamburger__icon {
  z-index: 100;
}

.p-overlay {
  z-index: 10001;
}

.p-screen__visual {
  z-index: -1;
}

@media screen and (min-width: 600px) {
  .l-header {
  z-index: -1;
  }
  .l-header.is-fixed {
  z-index: 100;
  }
}
/* --------------------------------------------
  gradation
-------------------------------------------- */
@keyframes overlayHidden {
  0% {
  opacity: 1;
  }
  100% {
  opacity: 0;
  z-index: -100;
  }
}
@keyframes overlayShow {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}
@keyframes screenTxtFadeIn {
  0% {
  opacity: 0;
  transform: translate(0, 5px);
  }
  100% {
  opacity: 1;
  transform: translate(0, 0);
  }
}
@keyframes screenImgFadeIn {
  0% {
  opacity: 0;
  transform: translate(5px, 0);
  }
  100% {
  opacity: 1;
  transform: translate(0, 0);
  }
}
.l-footer {
  padding: 8px 0;
}
.l-footer p {
  color: #575757;
  font-size: 12px;
  text-align: center;
}

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 4px 0;
  background: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 599px) {
  .l-header {
  z-index: 100;
  }
}
@media screen and (min-width: 600px) {
  .l-header {
  opacity: 0;
  transition: all 0.2s ease;
  padding: 16px 0;
  }
}
@media screen and (min-width: 600px) {
  .l-header.is-fixed {
  opacity: 1;
  display: block;
  }
}
.l-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}
.l-header__left {
  width: 100px;
  font-size: 0;
}
@media screen and (max-width: 599px) {
  .l-header__left {
  width: 80px;
  }
}
.l-header__left .txt-ja {
  font-size: 10px;
  color: #AFAFAF;
  white-space: nowrap;
}

.l-wrap {
  padding: 0 16px;
}
@media screen and (min-width: 960px) {
  .l-wrap {
  width: 1052px;
  margin: auto;
  }
}
@media screen and (min-width: 960px) {
  .l-wrap__short {
  width: 700px;
  margin: auto;
  }
}

.l-content {
  padding: 146px 0 126px;
}
@media screen and (max-width: 959px) {
  .l-content {
  padding: 100px 0 80px;
  }
}
@media screen and (min-width: 600px) {
  .l-content__teacher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  }
  .l-content__teacher__box {
  width: 50%;
  }
}

.l-screen {
  position: relative;
  padding: 144px 0 120px;
}
@media screen and (max-width: 599px) {
  .l-screen {
  padding: 88px 0 60px;
  }
}

/* Project - componentの集まり */
.p-cta {
  text-align: center;
}
.p-cta__img {
  margin-bottom: 60px;
  text-align: center;
}
.p-cta__img img {
  width: 400px;
}
@media screen and (max-width: 599px) {
  .p-cta__img img {
  width: 320px;
  }
}
.p-cta__btn a {
  width: 360px;
  padding: 20px 0;
}
@media screen and (max-width: 599px) {
  .p-cta__btn a {
  width: 280px;
  }
}

@media screen and (max-width: 959px) {
  .p-nav {
  padding-top: 60px;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .p-nav__list {
  padding: 0 120px;
  }
}
@media screen and (min-width: 960px) {
  .p-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  }
}
@media screen and (min-width: 960px) {
  .p-nav__item:not(:last-child) {
  margin-right: 6px;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .p-nav__item:last-child {
  text-align: center;
  }
  .p-nav__item .c-button {
  width: 300px;
  }
}
@media screen and (max-width: 959px) {
  .p-nav__item:last-child {
  padding: 16px;
  }
}
@media screen and (min-width: 960px) {
  .p-nav__item:last-child {
  margin-left: 20px;
  }
}
.p-nav__item:not(:last-child) .p-nav__link:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #E09C9C;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
.p-nav__item:not(:last-child) .p-nav__link:hover .txt-en {
  color: #E09C9C;
}
.p-nav__item:not(:last-child) .p-nav__link:hover:before {
  transform: scale(1, 1);
}
.p-nav__item .p-nav__link {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
}
@media screen and (min-width: 960px) {
  .p-nav__item .p-nav__link {
  display: block;
  padding: 4px 10px;
  }
}
.p-nav__item .txt-ja,
.p-nav__item .txt-en {
  color: #111;
}
@media screen and (min-width: 960px) {
  .p-nav__item .txt-ja,
  .p-nav__item .txt-en {
  text-align: center;
  }
}
.p-nav__item .txt-ja {
  font-size: 14px;
  color: #111;
  font-weight: 700;
}
@media screen and (max-width: 959px) {
  .p-nav__item .txt-ja {
  font-size: 16px;
  }
}
.p-nav__item .txt-en {
  font-size: 10px;
  margin-bottom: 1px;
  color: #575757;
  transition: all 0.3s;
}
.p-nav__button {
  width: 200px;
  padding: 16px 0;
}

#p-hamburger__checkbox {
  display: none;
}
@media screen and (max-width: 959px) {
  #p-hamburger__checkbox:checked ~ #p-hamburger__icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
  }
  #p-hamburger__checkbox:checked ~ #p-hamburger__icon span:nth-child(2) {
  display: none;
  }
  #p-hamburger__checkbox:checked ~ #p-hamburger__icon span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 14px;
  }
  #p-hamburger__checkbox:checked ~ #p-hamburger__content {
  transform: translateX(0);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
  }
  #p-hamburger__checkbox:checked ~ #p-hamburger__close {
  visibility: visible;
  opacity: 0.7;
  }
}
@media screen and (max-width: 959px) {
  #p-hamburger__icon {
  position: relative;
  display: block;
  width: 35px;
  height: 30px;
  padding: 5px;
  }
  #p-hamburger__icon span {
  transition: 0.3s all;
  position: absolute;
  display: block;
  height: 2px;
  background: #AFAFAF;
  width: 25px;
  }
  #p-hamburger__icon span:nth-child(1) {
  top: 7px;
  }
  #p-hamburger__icon span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  }
  #p-hamburger__icon span:nth-child(3) {
  bottom: 7px;
  }
}
@media screen and (max-width: 959px) {
  #p-hamburger__close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  }
}
@media screen and (max-width: 959px) {
  #p-hamburger__content {
  display: block;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(100%);
  }
}

.p-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  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: #fff;
  animation-name: overlayHidden;
  animation-duration: 1s;
  animation-delay: 2.7s;
  animation-fill-mode: both;
  opacity: 1;
}
.p-overlay__img {
  animation-name: overlayShow;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: both;
  opacity: 0;
}
.p-overlay__img img {
  width: 500px;
  height: auto;
}
@media screen and (max-width: 599px) {
  .p-overlay__img img {
  width: 240px;
  }
}

.p-screen__fadeIn {
  animation-name: screenTxtFadeIn;
  animation-delay: 4.8s;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.p-screen__head {
  margin-bottom: 40px;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .p-screen__head {
  margin-bottom: 24px;
  }
}
.p-screen__head__txt {
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .p-screen__head__txt {
  text-align: center;
  }
}
.p-screen__head__list {
  font-size: 0;
}
@media screen and (max-width: 599px) {
  .p-screen__head__list {
  text-align: center;
  }
}
.p-screen__head__item {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 30px;
  background: #fff;
  color: #A38A86;
  font-weight: 700;
  font-size: 14px;
}
.p-screen__head__item:not(:last-child) {
  margin-right: 8px;
}
.p-screen__ttl {
  line-height: 1.6;
  font-weight: 700;
  font-size: 0;
  margin-bottom: 16px;
}
@media screen and (min-width: 600px) {
  .p-screen__ttl {
  margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .p-screen__ttl {
  text-align: center;
  }
}
.p-screen__ttl span {
  font-size: 24px;
}
@media screen and (min-width: 600px) {
  .p-screen__ttl span {
  font-size: 36px;
  }
}
.p-screen__visual {
  animation-name: screenImgFadeIn;
  animation-delay: 4.8s;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media screen and (min-width: 600px) {
  .p-screen__visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .p-screen__visual {
  margin-bottom: 16px;
  }
}
.p-screen__usp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  opacity: 0;
}
.p-screen__usp__item {
  width: 32%;
  padding: 24px 0;
}
.p-screen__usp__item:nth-child(1) {
  background: center/contain no-repeat url(assets/images/screen-usp-bg1.png);
}
.p-screen__usp__item:nth-child(2) {
  background: center/contain no-repeat url(assets/images/screen-usp-bg2.png);
}
.p-screen__usp__item:nth-child(3) {
  background: center/contain no-repeat url(assets/images/screen-usp-bg3.png);
}
@media screen and (min-width: 600px) {
  .p-screen__usp__item {
  width: 180px;
  }
}
@media screen and (max-width: 599px) {
  .p-screen__usp__item:not(:last-child) {
  margin-right: 2%;
  }
}
.p-screen__usp__ttl, .p-screen__usp__result {
  text-align: center;
  font-weight: 700;
}
.p-screen__usp__ttl {
  color: #A38A86;
  margin-bottom: 16px;
}
@media screen and (max-width: 599px) {
  .p-screen__usp__ttl {
  font-size: 12px;
  }
}
.p-screen__usp__result {
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  .p-screen__usp__result {
  font-size: 14px;
  }
}

.p-headline {
  position: relative;
  font-weight: 700;
  margin-bottom: 53px;
}
@media screen and (max-width: 599px) {
  .p-headline {
  margin-bottom: 40px;
  }
}
.p-headline .txt-en {
  position: relative;
  z-index: 1;
  color: #A38A86;
  font-size: 14px;
  margin-bottom: 8px;
}
.p-headline .txt-ja {
  position: relative;
  z-index: 1;
  font-size: 28px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .p-headline .txt-ja {
  font-size: 22px;
  }
}
.p-headline .txt-desc {
  margin-top: 24px;
  color: #575757;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 400;
}
.p-headline:before {
  content: "";
  width: 291px;
  height: 184px;
  background: center/contain no-repeat url(assets/images/headline-bg-pink.png);
  transform: translate(-50%, -50%);
  position: absolute;
}
@media screen and (max-width: 599px) {
  .p-headline:before {
  width: 200px;
  height: 135px;
  transform: translate(-40px, -30%);
  }
}

.u-bg__white .p-headline:before {
  background: center/contain no-repeat url(assets/images/headline-bg-blue.png);
}
.u-bg__white .p-headline .txt-en {
  color: #8CBBDE;
}

@media screen and (min-width: 600px) {
  .p-mission__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  }
}
@media screen and (min-width: 600px) {
  .p-mission__ttl {
  margin-bottom: 0;
  }
}
@media screen and (min-width: 600px) {
  .p-mission__txt {
  width: 50%;
  margin-right: 0;
  margin-left: auto;
  }
}
.p-mission__txt p {
  margin-bottom: 1em;
  font-size: 14px;
  color: #575757;
  line-height: 1.6;
}

.p-result__item {
  background: #fff;
  border-radius: 4px;
}
@media screen and (min-width: 600px) {
  .p-result__item {
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  }
}
.p-result__item:not(:last-child) {
  margin-bottom: 8px;
}
.p-result__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .p-result__num {
  border-right: 2px solid #FEF3EE;
  width: 280px;
  height: 100%;
  padding: 0 24px;
  }
}
@media screen and (max-width: 599px) {
  .p-result__num {
  padding: 16px;
  border-bottom: 1px solid #FEF3EE;
  }
}
.p-result__num__ttl {
  color: #A38A86;
  font-weight: 400;
  margin-bottom: 8px;
  font-size: 14px;
}
.p-result__num__detail {
  font-size: 26px;
  font-weight: 700;
}
.p-result__txt {
  flex: 1;
  height: 100%;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.8;
  color: #575757;
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .p-result__txt {
  padding: 16px;
  }
}

@media screen and (min-width: 600px) {
  .p-voice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  }
}
.p-voice__item {
  background: #F7F7F7;
  padding: 24px 16px;
  border-radius: 8px;
}
@media screen and (min-width: 600px) {
  .p-voice__item {
  width: 32%;
  padding: 40px 24px;
  }
  .p-voice__item:not(:nth-child(3n)) {
  margin-right: 2%;
  }
}
@media screen and (max-width: 599px) {
  .p-voice__item:not(:last-child) {
  margin-bottom: 16px;
  }
}
.p-voice__item__person {
  margin-bottom: 24px;
  text-align: center;
}
.p-voice__item__person img {
  width: 130px;
  height: auto;
}
.p-voice__item__business {
  margin-bottom: 16px;
  text-align: center;
  padding: 8px 16px;
  color: #A38A86;
  font-size: 14px;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #A38A86;
}
.p-voice__item__comment {
  line-height: 1.6;
  font-size: 14px;
  color: #575757;
}

.p-teacher__list {
  margin-top: 32px;
  display: flex;
}
@media screen and (max-width: 599px) {
  .p-teacher__list {
  justify-content: center;
  }
}
.p-teacher__item {
  width: 100px;
}
.p-teacher__item:not(:last-child) {
  margin-right: 4px;
}

.p-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.p-content__item {
  background: #F7F7F7;
  padding: 16px 8px;
  width: 49.5%;
}
.p-content__item:not(:nth-child(2n)) {
  margin-right: 1%;
}
.p-content__item:not(:nth-last-of-type(-n+2)) {
  margin-bottom: 1%;
}
@media screen and (min-width: 600px) {
  .p-content__item {
  padding: 16px;
  }
}
@media screen and (min-width: 600px) {
  .p-content__num {
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  }
}
@media screen and (max-width: 599px) {
  .p-content__num {
  margin-bottom: 8px;
  text-align: center;
  }
}
.p-content__num span {
  display: inline-block;
  width: 90px;
  font-size: 12px;
  margin-bottom: 8px;
  padding: 4px 0;
  text-align: center;
  background: #fff;
  color: #A38A86;
  border-radius: 4px;
}
@media screen and (min-width: 600px) {
  .p-content__txt {
  flex: 1;
  }
}
.p-content__ttl {
  margin-bottom: 16px;
  font-size: 18px;
}
@media screen and (max-width: 599px) {
  .p-content__ttl {
  text-align: center;
  font-size: 16px;
  }
}
.p-content__desc {
  line-height: 1.6;
  color: #575757;
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .p-content__desc {
  line-height: 1.4;
  font-size: 13px;
  }
}

.p-detail__section:not(:last-child) {
  margin-bottom: 40px;
}
.p-detail__headline {
  padding: 8px 16px;
  font-size: 22px;
  margin-bottom: 24px;
  border-left: 3px solid #A38A86;
}
@media screen and (max-width: 599px) {
  .p-detail__headline {
  font-size: 20px;
  }
}
@media screen and (min-width: 600px) {
  .p-detail__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: stretch;
  }
}
.p-detail__price__box {
  background: #fff;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .p-detail__price__box {
  padding: 8px 16px;
  width: 49%;
  margin-bottom: 2%;
  }
  .p-detail__price__box:not(:nth-of-type(2)) {
  margin-right: 2%;
  }
}
@media screen and (max-width: 599px) {
  .p-detail__price__box:not(:last-child) {
  margin-bottom: 2%;
  }
}
.p-detail__price__ttl {
  font-size: 16px;
  font-weight: 700;
  width: 112px;
  height: 100px;
  line-height: 100px;
}
@media screen and (max-width: 599px) {
  .p-detail__price__ttl {
  line-height: 90px;
  height: 90px;
  }
}
.p-detail__price__icon {
  display: flex;
  flex: 1;
  height: 100px;
}
.p-detail__price__icon__item {
  background: #F7F7F7;
  border-radius: 16px;
  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;
  text-align: center;
  flex-flow: column;
}
.p-detail__price__icon__item.one-item {
  width: 100%;
}
.p-detail__price__icon__item.two-item {
  width: 49%;
}
.p-detail__price__icon__item.two-item:not(:last-child) {
  margin-right: 2%;
}
.p-detail__price__icon__item p {
  font-weight: 700;
  font-size: 14px;
}
.p-detail__price__icon__item img {
  width: 31px;
  margin-top: 8px;
}
.p-detail__schedule__box {
  background: #fff;
  padding: 40px 24px;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .p-detail__schedule__box {
  width: 32%;
  }
  .p-detail__schedule__box:not(:last-child) {
  margin-right: 2%;
  }
}
@media screen and (max-width: 599px) {
  .p-detail__schedule__box:not(:last-child) {
  margin-bottom: 2%;
  }
}
.p-detail__schedule__ttl {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
.p-detail__schedule__content {
  border-radius: 16px;
  background: #F7F7F7;
  padding: 16px;
}
.p-detail__schedule__content:not(:last-child) {
  margin-bottom: 16px;
}
.p-detail__schedule__content .schedule-ttl {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.p-detail__schedule__content .schedule-ttl:before {
  content: "";
  display: block;
  margin-right: 4px;
}
.p-detail__schedule__content .schedule-ttl.icon-date:before {
  width: 26px;
  height: 26px;
  background: center/contain no-repeat url(assets/images/icon-shop-dark-pink.png);
}
.p-detail__schedule__content .schedule-ttl.icon-schedule:before {
  width: 23px;
  height: 23px;
  background: center/contain no-repeat url(assets/images/icon-schedule-dark-pink.png);
}
.p-detail__schedule__content .schedule-txt {
  font-size: 13px;
  color: #575757;
  line-height: 1.4;
}
.p-detail__schedule__content .schedule-txt.is-done {
  text-decoration: line-through;
  color: #AFAFAF;
}
.p-detail__schedule__content .schedule-list li:not(:last-child) {
  margin-bottom: 8px;
}

.p-faq__item {
  background: #F7F7F7;
  border-radius: 4px;
  cursor: pointer;
  padding: 24px;
  transition: 0.3s all;
}
@media screen and (max-width: 599px) {
  .p-faq__item {
  padding: 16px 48px 16px 16px;
  }
}
.p-faq__item:hover {
  background: #F4EFEF;
}
.p-faq__item:not(:last-child) {
  margin-bottom: 8px;
}
.p-faq__item__question {
  position: relative;
}
.p-faq__item__question:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .p-faq__item__question:before {
  right: -37px;
  width: 30px;
  height: 30px;
  }
}
.p-faq__item__question:after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 14px;
  background: center/contain no-repeat url(assets/images/icon-arrow-right-pink.png);
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .p-faq__item__question:after {
  right: -26px;
  width: 6px;
  height: 12px;
  }
}
.p-faq__item__answer {
  display: none !important;
  margin-top: 24px;
}
.p-faq__item.open-item .p-faq__item__answer {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.p-faq__item.open-item .p-faq__item__question:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.p-faq__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-faq__box:last-child {
  padding-top: 0;
}
.p-faq__box .faq-icon {
  margin-right: 16px;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  border-radius: 4px;
}
.p-faq__box .faq-icon-q {
  background: #E09C9C;
}
.p-faq__box .faq-icon-a {
  background: #8CBBDE;
}
.p-faq__box .faq-txt {
  flex: 1;
  color: #575757;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Component - 最小単位 */
.c-button {
  display: inline-block;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background: #E09C9C;
  box-shadow: 0 4px 0 #771E1E;
  transition: 0.3s all;
}
.c-button:hover {
  opacity: 0.5;
}

/* Utility */
.u-txt__num {
  font-size: 30px;
}
@media screen and (min-width: 600px) {
  .u-txt__num {
  font-size: 40px;
  }
}
.u-txt__center {
  text-align: center;
}

.u-pt10 {
  padding-top: 10px;
}

.u-bg__white {
  background: #fff;
}

.u-color__pink {
  color: #E09C9C;
}

/* テキストアニメーション
-------------------------------------------------*/
.u-ani__bgtext {
  z-index: 1;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.u-ani__bgtext span.bg {
  display: inline-block;
  overflow: hidden;
  position: relative;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.u-ani__bgtext span.bg:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #fff;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.u-ani__bgtext.isShow span.bg {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.u-ani__bgtext.isShow span.bg:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.u-bg__white .u-ani__bgtext span.bg:before {
  background-color: #FEF3EE;
}

/* フェードイン
-------------------------------------------------*/
.fadeIn {
  opacity: 0;
  transition: all 1s;
}
@media screen and (min-width: 600px) {
  .fadeIn:nth-child(2) {
  transition-delay: 0.2s;
  }
  .fadeIn:nth-child(3) {
  transition-delay: 0.4s;
  }
}
.fadeIn.fadeInLeft {
  transform: translate(15px, 0);
}
.fadeIn.fadeInUp {
  transform: translate(0, 15px);
}
.fadeIn.fadeInRight {
  transform: translate(-15px, 0);
}
.fadeIn.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.u-disp__block {
  display: block;
}

.u-mb4 {
  margin-bottom: 4px;
}
.u-mb10 {
  margin-bottom: 10px;
}
.u-mb1em {
  margin-bottom: 1em;
}

/*# sourceMappingURL=style.css.map */
