@charset "UTF-8";
/* ----- Import ----- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Crimson+Pro:wght@300&family=Crimson+Pro:wght@300&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
	v2.0 | 20110126
	License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

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

/* ----- Break Points ----- */
/* ----- BG ----- */
/* bg main */
@keyframes GradietionAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* bg mv */
/* point color */
/* ----- COLOR ----- */
/* ----- FONT ----- */
/* fade in */
.text-fade-in {
  opacity: 0;
  animation: fade-in 2s ease-in forwards;
}

@keyframes fade-in {
  from {
    opacity: 0; /* 不透明度を0から開始 */
  }
  to {
    opacity: 1; /* 不透明度を1まで徐々に上げる */
  }
}
/* ----- LINK ----- */
a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
  transition: 0.5s;
  opacity: 0.7;
}

/* ----- Body ----- */
body {
  font-family: "Noto Sans JP", sans-serif, "メイリオ", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  letter-spacing: 0.1em;
  color: #333;
  line-height: 1.8;
  position: relative;
  background: linear-gradient(-45deg, #e7f3e1, #f0f5f2, #deebf5, #D3D4F3) fixed;
  background-size: 100% 100%;
  animation: GradietionAnimation 6s ease infinite;
}

/* ----- Layout ----- */
/* header */
header {
  width: 95%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 599px) {
  header {
    width: 100%;
  }
}

/* mv */
.mv {
  width: 100%;
}

/* tokui,proce */
.tokui .inner,
.works .inner,
.price .inner,
.flow .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .tokui .inner,
  .works .inner,
  .price .inner,
  .flow .inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .tokui .inner,
  .works .inner,
  .price .inner,
  .flow .inner {
    width: 90%;
    margin: 0 auto;
  }
}
.tokui .inner .titleBox,
.works .inner .titleBox,
.price .inner .titleBox,
.flow .inner .titleBox {
  width: 40%;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .tokui .inner .titleBox,
  .works .inner .titleBox,
  .price .inner .titleBox,
  .flow .inner .titleBox {
    width: 40%;
  }
}
@media screen and (max-width: 599px) {
  .tokui .inner .titleBox,
  .works .inner .titleBox,
  .price .inner .titleBox,
  .flow .inner .titleBox {
    width: 100%;
  }
}
.tokui .inner .cont,
.works .inner .cont,
.price .inner .cont,
.flow .inner .cont {
  width: 50%;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .tokui .inner .cont,
  .works .inner .cont,
  .price .inner .cont,
  .flow .inner .cont {
    width: 55%;
  }
}
@media screen and (max-width: 599px) {
  .tokui .inner .cont,
  .works .inner .cont,
  .price .inner .cont,
  .flow .inner .cont {
    width: 100%;
  }
}

/* contact */
section.contact {
  background: linear-gradient(45deg, #AE9CD9, #5C92CE);
}

/* ----- Styles ----- */
/* header */
header {
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 599px) {
  header {
    padding: 15px;
    display: block;
    background: linear-gradient(-45deg, #e7f3e1, #f0f5f2, #deebf5, #D3D4F3) fixed;
    background-size: 100% 100%;
    animation: GradietionAnimation 6s ease infinite;
    background-size: 100% 100%;
    box-sizing: border-box;
  }
}
header h1 {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  header h1 {
    width: 40%;
    margin: 0 auto 30px;
    position: relative;
    top: 10px;
  }
}
@media screen and (max-width: 599px) {
  header h1 {
    width: 55%;
    margin: 0;
    position: relative;
    top: 5px;
  }
}
header nav {
  width: 56%;
}
@media screen and (max-width: 1024px) {
  header nav {
    width: 96%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  header nav {
    width: 100%;
    margin: 0 auto;
  }
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  header nav ul {
    font-size: 14px;
    justify-content: space-around;
  }
}
header nav ul li {
  margin-top: 10px;
}
header nav ul li a {
  position: relative;
  text-decoration: none;
}
header nav ul li a::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
  background-color: #9A9AD6;
  opacity: 0;
  transition: opacity 0.3s;
}
header nav ul li a:hover::after {
  opacity: 1;
}
@media screen and (max-width: 599px) {
  header nav ul li.contact {
    position: absolute;
    top: 0;
    right: 15px;
  }
}
header nav ul li.contact a {
  padding: 15px 50px;
  border-radius: 100px;
  color: #fff;
  background: linear-gradient(45deg, #AE9CD9, #5C92CE);
}
@media screen and (max-width: 1024px) {
  header nav ul li.contact a {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 599px) {
  header nav ul li.contact a {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 100px;
    display: block;
    animation: fukidashinimation 2s infinite ease-in-out;
  }
}
header nav ul li.contact a::after {
  content: none;
}
header nav ul li.contact a:hover {
  opacity: 0.7;
  transition: 0.5s;
}
header nav ul li.contact a span.sp {
  display: none;
}
@media screen and (max-width: 599px) {
  header nav ul li.contact a span.pc {
    display: none;
  }
  header nav ul li.contact a span.sp {
    width: 56px;
    height: 56px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header nav ul li.contact a span.sp img {
    width: 40%;
    height: auto;
  }
}

/* mv */
.mv {
  padding: 120px 0 200px;
  text-align: center;
  position: relative;
  background-image: linear-gradient(-45deg, #e7f3e1, #f0f5f2, #deebf5, #D3D4F3), url(../img/kokeshi_kao.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-blend-mode: hard-light;
}
@media screen and (max-width: 1024px) {
  .mv {
    padding: 70px 0 120px;
  }
}
@media screen and (max-width: 599px) {
  .mv {
    padding: 40px 0 120px;
    text-align: left;
  }
}
.mv h2 {
  margin-bottom: 65px;
  font-size: 40px;
  color: #4C83C1;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .mv h2 {
    margin-left: 20px;
    margin-bottom: 50px;
    font-size: 34px;
    line-height: 1.9;
  }
}
@media screen and (max-width: 599px) {
  .mv h2 {
    margin-left: 20px;
    margin-bottom: 30px;
    font-size: 26px;
    line-height: 1.9;
  }
}
.mv h2 span {
  padding: 0 5px 0 10px;
  background: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 599px) {
  .mv h2 span {
    padding: 0 0 0 5px;
  }
}
.mv p {
  line-height: 2.4;
}
@media screen and (max-width: 599px) {
  .mv p {
    width: 84%;
    margin: 0 auto;
    line-height: 2;
  }
}

/* tokui */
section.tokui,
section.works,
section.price {
  background: #fff;
}

.inner {
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .inner {
    padding: 60px 0;
  }
}
@media screen and (max-width: 599px) {
  .inner {
    padding: 50px 0;
  }
}
.inner .titleBox .contTitle {
  margin-bottom: 100px;
  font-size: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .inner .titleBox .contTitle {
    margin-bottom: 40px;
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  .inner .titleBox .contTitle {
    margin-bottom: 40px;
    font-size: 30px;
  }
}
.inner .titleBox .contTitle::after {
  padding-top: 10px;
  font-size: 16px;
  color: #9EC0E5;
  display: block;
}
@media screen and (max-width: 599px) {
  .inner .titleBox .contTitle::after {
    font-size: 14px;
  }
}
.inner .titleBox .contTitle.tokui::after {
  content: "DEKIRU KOTO";
}
.inner .titleBox .contTitle.works::after {
  content: "WORKS";
}
.inner .titleBox .contTitle.price::after {
  content: "PRICE";
}
.inner .titleBox .contTitle.flow::after {
  content: "FLOW";
}
.inner .titleBox p {
  margin-bottom: 30px;
  color: #4C83C1;
}

section.tokui .inner .cont {
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  section.tokui .inner .cont {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  section.tokui .inner .cont {
    margin-top: 20px;
  }
}
section.tokui .inner .cont ul li {
  padding: 25px 0 30px;
  border-bottom: 1px solid #A1C2E8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  section.tokui .inner .cont ul li {
    padding: 15px 0 20px;
    border-top: 1px solid #A1C2E8;
    border-bottom: 0;
    display: block;
    text-align: center;
  }
}
section.tokui .inner .cont ul li:first-of-type {
  padding-top: 0;
}
section.tokui .inner .cont ul li .icon {
  width: 15%;
  max-width: 100%;
  margin-right: 40px;
  fill: #9A9AD6;
}
@media screen and (max-width: 1024px) {
  section.tokui .inner .cont ul li .icon {
    width: 10%;
    margin: 0 0 -10px;
  }
}
@media screen and (max-width: 599px) {
  section.tokui .inner .cont ul li .icon {
    width: 10%;
    margin: 0 auto -10px;
  }
}
section.tokui .inner .cont ul li h3 {
  margin-bottom: 15px;
  font-size: 24px;
}
@media screen and (max-width: 599px) {
  section.tokui .inner .cont ul li h3 {
    margin-bottom: 15px;
    font-size: 23px;
    text-align: center;
  }
}
section.tokui .inner .cont ul li div {
  width: 90%;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  section.tokui .inner .cont ul li div {
    width: 85%;
  }
}
@media screen and (max-width: 599px) {
  section.tokui .inner .cont ul li div {
    width: 100%;
    margin: 0 auto;
  }
}
section.tokui .inner .cont ul li div p {
  width: 92%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  section.tokui .inner .cont ul li div p {
    width: 100%;
  }
}

/* works */
section.works .inner {
  padding-bottom: 0;
}
section.works .worksList {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  section.works .worksList {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  section.works .worksList {
    width: 90%;
  }
}
section.works .worksList ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  section.works .worksList ul {
    display: block;
  }
}
section.works .worksList ul::after {
  content: "";
  display: block;
  width: 380px;
}
section.works .worksList ul li {
  width: 380px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  section.works .worksList ul li {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  section.works .worksList ul li {
    width: 100%;
    margin-bottom: 50px;
  }
  section.works .worksList ul li:last-of-type {
    margin-bottom: 0;
  }
}
section.works .worksList ul li img {
  width: 380px;
  height: 300px;
  margin-bottom: 12px;
  background: #EFEFEF;
}
@media screen and (max-width: 599px) {
  section.works .worksList ul li img {
    width: 100%;
    height: auto;
    margin: 0 auto 15px;
  }
}
section.works .worksList ul li .youtube {
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
section.works .worksList ul li .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.works .worksList ul li .worksIcon {
  margin-bottom: 10px;
  display: flex;
  justify-content: left;
}
section.works .worksList ul li .worksIcon li {
  width: auto;
  margin-right: 10px;
  margin-bottom: 0;
  padding: 0 5px;
  color: #4C83C1;
  font-size: 14px;
  border: 1px solid #4C83C1;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  section.works .worksList ul li .worksIcon li {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  section.works .worksList ul li .worksIcon li {
    margin-bottom: 0;
  }
}
section.works .worksList ul li h3 {
  margin-bottom: 15px;
  font-size: 18px;
}
@media screen and (max-width: 599px) {
  section.works .worksList ul li h3 {
    font-size: 16px;
    text-align: left;
  }
}
section.works .worksList ul li p {
  margin-bottom: 15px;
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  section.works .worksList ul li p {
    text-align: left;
  }
}
section.works .worksList ul li .voice {
  padding: 20px 20px 10px;
  background: #ECF3F8;
  border-radius: 10px;
  position: relative;
}
section.works .worksList ul li .voice::before {
  padding: 3px 5px;
  content: " お客様の声 ";
  font-size: 13px;
  color: #fff;
  background: #4C83C1;
  border-radius: 5px;
  position: relative;
  top: -5px;
}

/* price */
section.price {
  border-top: 40px solid #EEF5F7;
}
@media screen and (max-width: 599px) {
  section.price {
    border-top: 20px solid #EEF5F7;
  }
}
section.price .inner .cont {
  margin-top: 50px;
}
@media screen and (max-width: 599px) {
  section.price .inner .cont {
    margin-top: 20px;
  }
}
section.price .inner .cont .priceList_hp .priceList_item_hp {
  margin-bottom: 20px;
  border: 5px solid #dedef1;
  border-radius: 50px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  section.price .inner .cont .priceList_hp .priceList_item_hp {
    border-radius: 30px;
    border: 4px solid #dedef1;
  }
}
section.price .inner .cont .priceList_hp .priceList_item_hp .specDetail_target {
  margin: 25px 0 30px;
  padding: 5px 40px;
  line-height: 1.6;
  background: #9A9AD6;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  position: relative;
  animation: fukidashinimation 2s infinite ease-in-out;
}
@keyframes fukidashinimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1024px) {
  section.price .inner .cont .priceList_hp .priceList_item_hp .specDetail_target {
    margin: 15px 0 10px;
    padding: 5px 15px;
  }
}
@media screen and (max-width: 599px) {
  section.price .inner .cont .priceList_hp .priceList_item_hp .specDetail_target {
    margin: 15px 0;
    padding: 5px 15px;
  }
}
section.price .inner .cont .priceList_hp .priceList_item_hp .specDetail_target::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 8px solid transparent;
  border-top: 10px solid #9A9AD6;
}
section.price .inner .cont .priceList_hp .priceList_item_hp .priceList_wrap {
  margin-bottom: 30px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  section.price .inner .cont .priceList_hp .priceList_item_hp .priceList_wrap {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  section.price .inner .cont .priceList_hp .priceList_item_hp .priceList_wrap {
    padding: 0 20px;
    display: block;
  }
}
section.price .inner .cont .priceList_hp .priceList_item_hp .title {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  section.price .inner .cont .priceList_hp .priceList_item_hp .title {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  section.price .inner .cont .priceList_hp .priceList_item_hp .title {
    width: 100%;
  }
}
section.price .inner .cont .priceList_hp .priceList_item_hp .title h3 {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  section.price .inner .cont .priceList_hp .priceList_item_hp .title h3 {
    line-height: 1.4;
  }
}
section.price .inner .cont .priceList_hp .priceList_item_hp .title .price_hp {
  font-size: 18px;
  font-weight: bold;
  color: #D5406E;
}
@media screen and (max-width: 1024px) {
  section.price .inner .cont .priceList_hp .priceList_item_hp .title .price_hp {
    width: 90%;
    margin: 0 auto 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #9A9AD6;
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 599px) {
  section.price .inner .cont .priceList_hp .priceList_item_hp .title .price_hp {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #9A9AD6;
    font-size: 24px;
  }
}
section.price .inner .cont .priceList_hp .priceList_item_hp .specDetail {
  width: 55%;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  section.price .inner .cont .priceList_hp .priceList_item_hp .specDetail {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  section.price .inner .cont .priceList_hp .priceList_item_hp .specDetail {
    width: 100%;
  }
}
section.price .inner .cont .priceList_hp .priceList_item_hp .specDetail .specDetail_item .cap {
  margin-bottom: 5px;
  font-size: 12px;
  color: #666;
  font-weight: bold;
  display: inline-block;
}
section.price .inner .cont .priceList_hp .priceList_item_hp .specDetail .specDetail_item ul {
  margin-bottom: 15px;
}
section.price .inner .cont .priceList_hp .priceList_item_hp .specDetail .specDetail_item ul li::before {
  padding-right: 10px;
  content: " ● ";
  font-size: 6px;
  color: #dedef1;
  display: inline-block;
  vertical-align: middle;
}
section.price .inner .cont .priceList_hp .priceList_item_hp .specDetail .specDetail_item ul li span {
  display: block;
  font-size: 14px;
  color: #666;
}
section.price .inner .cont .priceList_hp .priceList_item_hp .specDetail .specDetail_item ul li strong {
  font-weight: bold;
  color: #D5406E;
}

/* flow */
.flow .inner .cont ul li {
  margin-bottom: 35px;
  padding: 25px 30px 35px;
  background: #fff;
  border-radius: 30px;
  counter-increment: item-counter;
  position: relative;
  box-shadow: 0 0 10px rgba(76, 131, 193, 0.2);
}
@media screen and (max-width: 599px) {
  .flow .inner .cont ul li {
    margin-bottom: 20px;
    padding: 15px 20px 20px;
    background: #fff;
    border-radius: 20px;
  }
}
.flow .inner .cont ul li::before {
  content: counter(item-counter);
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 28px;
  color: #4C83C1;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .flow .inner .cont ul li::before {
    top: 11px;
    left: 20px;
    font-size: 20px;
  }
}
.flow .inner .cont ul li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 14px solid #A1C2E8;
}
@media screen and (max-width: 599px) {
  .flow .inner .cont ul li::after {
    border: 8px solid transparent;
    border-top: 10px solid #A1C2E8;
  }
}
@media screen and (max-width: 599px) {
  .flow .inner .cont ul li p {
    font-size: 14px;
  }
}
.flow .inner .cont ul li p:first-child {
  margin: 0 0 15px 35px;
  font-size: 24px;
  color: #4C83C1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .flow .inner .cont ul li p:first-child {
    margin: 0 0 15px 20px;
    font-size: 20px;
    line-height: 1.4;
  }
}
.flow .inner .cont ul li p:first-child span {
  margin-right: 5px;
  padding: 2px 5px;
  background: #9A9AD6;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 599px) {
  .flow .inner .cont ul li p:first-child span {
    font-size: 12px;
  }
}
.flow .inner .cont ul li p:first-child span.kokeshi {
  background: #A1C2E8;
}
.flow .inner .cont ul li p:first-child span:first-of-type {
  margin-left: 15px;
}
@media screen and (max-width: 599px) {
  .flow .inner .cont ul li p:first-child span:first-of-type {
    margin-left: 10px;
  }
}
.flow .inner .cont ul li:last-of-type::after {
  content: none;
}

/* contact */
.contact .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 599px) {
  .contact .inner {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0 30px;
    display: block;
  }
}
.contact .inner .text {
  width: 40%;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .contact .inner .text {
    width: 100%;
  }
}
.contact .inner .text h2 {
  margin-bottom: 30px;
  font-size: 40px;
}
@media screen and (max-width: 1024px) {
  .contact .inner .text h2 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1;
  }
}
@media screen and (max-width: 599px) {
  .contact .inner .text h2 {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 1;
  }
}
.contact .inner .btn {
  text-align: center;
  color: #fff;
}
.contact .inner .btn a {
  padding: 15px 40px;
  display: block;
  border-radius: 100px;
  background: #fff;
  font-size: 20px;
  color: #4C83C1;
  font-weight: bold;
  box-shadow: 0 0 10px rgb(90, 139, 191);
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .contact .inner .btn a {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 599px) {
  .contact .inner .btn a {
    width: 86%;
    margin: 30px auto 10px;
    padding: 10px;
    font-size: 18px;
  }
}
.contact .inner .btn a:hover {
  opacity: 0.7;
  transition: 0.5s;
}
.contact .inner .btn p {
  font-size: 14px;
}

/* about */
.about .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .about .inner {
    width: 94%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .about .inner {
    display: block;
  }
}
.about .inner .member {
  width: 62%;
  max-width: 100%;
  padding: 60px 50px;
  background: #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .about .inner .member {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 599px) {
  .about .inner .member {
    width: 92%;
    margin: 0 auto 30px;
    padding: 40px 25px 30px;
    border-radius: 30px;
    box-sizing: border-box;
  }
}
.about .inner .member h2 {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  font-size: 40px;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .about .inner .member h2 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .about .inner .member h2 {
    margin-bottom: 30px;
    display: block;
    text-align: center;
    font-size: 26px;
    line-height: 1.4;
  }
  .about .inner .member h2 span {
    display: block;
  }
}
.about .inner .member h2 img {
  width: 45%;
  height: auto;
}
@media screen and (max-width: 599px) {
  .about .inner .member h2 img {
    width: 65%;
  }
}
.about .inner .member p {
  margin-bottom: 15px;
}
.about .inner .member .memberList {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .about .inner .member .memberList {
    margin-top: 40px;
  }
}
.about .inner .member .memberList li {
  width: 96%;
  margin: 0 auto 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .about .inner .member .memberList li {
    width: 96%;
    margin: 0 auto 25px;
  }
}
.about .inner .member .memberList li .icon {
  width: 16%;
  max-width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .about .inner .member .memberList li .icon {
    width: 25%;
    font-size: 10px;
  }
  .about .inner .member .memberList li .icon img {
    width: 80%;
    height: auto;
    margin: 0 auto 5px;
    display: block;
  }
}
.about .inner .member .memberList li .profile {
  width: 76%;
  max-width: 100%;
  padding-bottom: 0;
  background: none;
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .about .inner .member .memberList li .profile {
    width: 70%;
    line-height: 1.6;
  }
}
.about .inner .member .memberList li .profile ul li {
  margin-left: 0;
  display: inherit;
}
.about .inner .member .memberList li .profile ul li::before {
  padding-right: 10px;
  content: url(../img/icon_insta.svg);
  vertical-align: middle;
  display: inline-block;
}
.about .inner .member .qualifications {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #A1C2E8;
}
.about .inner .member .qualifications li::before {
  padding-right: 10px;
  content: " ● ";
  color: #4C83C1;
  vertical-align: middle;
  display: inline-block;
}
.about .inner .aboutKokeshi {
  width: 35%;
  padding: 40px;
  max-width: 100%;
  background: #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .about .inner .aboutKokeshi {
    padding: 30px 25px;
  }
}
@media screen and (max-width: 599px) {
  .about .inner .aboutKokeshi {
    width: 92%;
    margin: 0 auto;
    padding: 30px;
  }
}
.about .inner .aboutKokeshi img {
  margin-bottom: 20px;
  border-radius: 150px;
}
.about .inner .aboutKokeshi p {
  font-size: 15px;
}
.about .inner .aboutKokeshi p.title {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 18px;
}
.about .inner .aboutKokeshi .kokeshiImg {
  margin-top: 60px;
  text-align: center;
}
.about .inner .aboutKokeshi .kokeshiImg img {
  width: 45%;
  height: auto;
  border-radius: 0;
  animation: floatAnimation 3s infinite ease-in-out;
}
@media screen and (max-width: 599px) {
  .about .inner .aboutKokeshi .kokeshiImg img {
    width: 25%;
  }
}
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* footer */
footer {
  padding: 15px 0;
  text-align: center;
}

/* pagetop */
.pagetop {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 10px;
  right: 10px;
  text-decoration: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.pagetop.show {
  opacity: 0.8;
  visibility: visible;
}

/* BR */
br.pc {
  display: inline;
}
@media screen and (max-width: 599px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}
@media screen and (max-width: 599px) {
  br.sp {
    display: inline;
  }
}

/* ----- Sub Page ----- */
/* common */
.pageTitle {
  padding: 60px 0 180px;
  text-align: center;
  position: relative;
  background-image: linear-gradient(-45deg, #e7f3e1, #f0f5f2, #deebf5, #D3D4F3), url(../img/kokeshi_kao.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-blend-mode: hard-light;
}
@media screen and (max-width: 599px) {
  .pageTitle {
    padding: 50px 0;
  }
}
.pageTitle h2 {
  font-size: 40px;
}
@media screen and (max-width: 599px) {
  .pageTitle h2 {
    font-size: 24px;
  }
}

.content {
  background: #fff;
}
.content .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .content .inner {
    width: 90%;
    margin: 0 auto;
  }
}
.content .inner p {
  margin-bottom: 30px;
}
.content .inner p:last-of-type {
  margin-bottom: 50px;
}
.content .inner ul {
  margin-bottom: 50px;
  padding-left: 20px;
  list-style-position: outside;
}
@media screen and (max-width: 599px) {
  .content .inner ul {
    padding-left: 0;
  }
}
.content .inner ul li {
  display: flex;
  align-items: flex-start;
}
.content .inner ul li::before {
  content: "・";
  display: inline-block;
  color: #666;
  margin-right: 5px;
  flex-shrink: 0;
}

.caution {
  margin: 10px 0;
  font-size: 14px;
}
.caution:last-of-type {
  margin-bottom: 20px;
}

/* お問い合わせページ */
.form {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
.form dl dt {
  margin-bottom: 10px;
  font-weight: bold;
  color: #4C83C1;
}
.form dl dt span {
  margin-left: 10px;
  padding: 2px 8px;
  background: #4C83C1;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
}
.form dl dd {
  margin-bottom: 30px;
}
.form dl dd input {
  height: 40px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 16px !important;
}
.form dl dd input:focus {
  outline: none;
  border: 2px solid #4C83C1;
}
.form dl dd textarea {
  height: 200px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 16px !important;
}
.form dl dd textarea:focus {
  outline: none;
  border: 2px solid #4C83C1;
}
.form dl dd .sizeS {
  width: 300px;
  max-width: 30%;
}
.form dl dd .sizeM {
  width: 500px;
  max-width: 60%;
}
.form dl dd .sizeL {
  width: 800px;
  max-width: 100%;
}
.form .privacy {
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
}
.form .formBtn {
  text-align: center;
}
.form .formBtn input {
  width: 300px;
  padding: 15px 50px;
  border-radius: 100px;
  color: #fff;
  background: #4C83C1;
  border: 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.form .formBtn input:hover {
  opacity: 0.7;
  transition: 0.5s;
  cursor: pointer;
}

/* プライバシーポリシー */
.policy .inner h3 {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  .policy .inner h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */