@charset "UTF-8";
/*================================
# mixin
================================*/
/*================================
# 初期設定
================================*/
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media (min-width: 1200px) {
  .is-sp {
    display: none;
  }
}
body {
  font-size: 16px;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
}

/*================================
# 共通クラス
================================*/
.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: inherit;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 18px;
  }
}

section {
  padding: 100px 120px;
}
@media (max-width: 767px) {
  section {
    padding: 50px 30px 60px;
    margin-bottom: 100px;
  }
}

.section_title {
  font-size: 40px;
  font-weight: 700;
  padding-top: 80px;
  color: #000000;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 100px;
  position: relative;
}
@media (max-width: 767px) {
  .section_title {
    font-size: 24px;
    padding-top: 65px;
    padding-bottom: 50px;
    margin-bottom: 50px;
    color: #000000;
    font-weight: 700;
  }
}
.section_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #ffdc46;
}
@media (max-width: 767px) {
  .section_title::after {
    bottom: 35px;
    width: 28px;
  }
}

.util_button {
  display: block;
  padding: 5px 20px;
  text-align: center;
  text-decoration: none;
  width: 160px;
  height: 40px;
  background: #fff; /*ボタン色*/
  color: #ffdc46;
  border-radius: 30px;
  -webkit-box-shadow: 0px 12px 24px rgba(255, 208, 0, 0.38);
          box-shadow: 0px 12px 24px rgba(255, 208, 0, 0.38);
}
.util_button:hover {
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.util_button:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px); /*下に動く*/
  border-bottom: none; /*線を消す*/
}

/*================================
# header
================================*/
.header {
  background: #ffdc46;
  height: 80px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  font-size: 35px;
  font-weight: bold;
  color: #000000;
}
@media (max-width: 767px) {
  .header__logo {
    font-size: 28px;
  }
}

.header_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.header_nav_list li:not(:first-child) {
  margin-left: 44px;
}
.header_nav_list a {
  color: #000000;
  text-decoration: none;
}
@media (max-width: 767px) {
  .header_nav_list {
    display: none;
  }
}

.header_button {
  margin-left: 44px;
}
@media (max-width: 767px) {
  .header_button {
    display: none;
  }
}

.contact_button {
  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;
}

/*================================
# drawer
================================*/
.drawer-icon {
  position: fixed;
  top: 20px;
  right: 25px;
  z-index: 300;
  display: none;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}

.drawer-icon-bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 27px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  background: #ffdc46;
  width: 100%;
  height: 80%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 299;
  -webkit-transform: translateY(-105%);
          transform: translateY(-105%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.drawer-content.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content-nav {
  margin: 90px 0 80px;
}

.drawer-content-nav-menu {
  text-align: center;
  margin-top: 30px;
}
.drawer-content-nav-menu a {
  font-weight: 700;
  display: block;
  color: #fff;
  padding-top: 25px;
  position: relative;
}
.drawer-content-nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #52d0d5;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*================================
# top
================================*/
.top {
  margin-top: 80px;
  padding: 80px 0 120px;
}
@media (max-width: 767px) {
  .top {
    margin-top: 60px;
  }
}

.top_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .top_content {
    display: block;
  }
}

@media (max-width: 767px) {
  .top_title_img img {
    width: 300px;
    display: block;
    margin: auto;
  }
}

.top_text {
  font-size: 35px;
  font-weight: 700;
  margin-left: 36px;
}
@media (max-width: 767px) {
  .top_text {
    font-size: 24px;
    text-align: center;
    margin-left: 0;
    font-weight: 700;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .top_right {
    text-align: center;
  }
}
.top_right img {
  width: 580px;
}
@media (max-width: 767px) {
  .top_right img {
    width: 430px;
    margin-top: 35px;
  }
}

.top_button {
  margin-top: 32px;
  margin-left: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .top_button {
    display: block;
    margin-top: 0;
    margin-left: 0;
  }
}

.plan_button {
  background: #ffdc46;
  color: #fff;
  width: 160px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.plan_button:hover {
  background: #fff;
  color: #ffdc46;
  border: solid 2px #ffdc46;
}
@media (max-width: 767px) {
  .plan_button {
    margin: auto;
    width: 295px;
  }
}

.contact_button01 {
  border: solid 2px #ffdc46;
  width: 295px;
  margin-left: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact_button01:hover {
  background: #ffdc46;
  color: #fff;
  border: none;
}
@media (max-width: 767px) {
  .contact_button01 {
    margin: auto;
    margin-top: 20px;
  }
}

/*================================
# about
================================*/
.about {
  background: #fafad2;
  height: 740px;
}
@media (max-width: 767px) {
  .about {
    height: 565px;
  }
}

.about_text {
  text-align: center;
  padding: 50px 0 30px;
}
@media (max-width: 767px) {
  .about_text br {
    display: none;
  }
}

/*================================
# service
================================*/
.service_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 30px 0;
}
.service_box:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: 0;
}
@media (max-width: 767px) {
  .service_box {
    display: block;
  }
}

.service_img_top {
  margin: 0 40px 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media (max-width: 767px) {
  .service_img_top {
    margin: 30px 0 0 0;
  }
}

.service_img_under {
  margin: 0 0 0 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media (max-width: 767px) {
  .service_img_under {
    margin: 65px 0 0 0;
  }
}

.service_title {
  font-size: 28px;
  font-weight: 700;
  padding: 100px 0 15px 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service_title {
    font-size: 26px;
    padding: 20px 0 15px 0;
  }
}
@media (max-width: 767px) {
  .service_title {
    font-size: 20px;
    padding: 18px 0 15px 0;
  }
}

@media (max-width: 767px) {
  .service_text {
    margin-bottom: 30px;
  }
  .service_text br {
    display: none;
  }
}

/*================================
# price
================================*/
.price {
  background: #fafad2;
}

@media (max-width: 767px) {
  .price_content {
    margin-bottom: 60px;
  }
}

.card_items {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .card_items {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.card_item {
  width: calc(30% - 38px);
  height: 430px;
  background: #fff;
  border: 1px solid #d0d0d0;
  padding-left: 25px;
}
.card_item:not(:nth-child(3n+1)) {
  margin-left: 57px;
}
@media (max-width: 767px) {
  .card_item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .card_item {
    width: 100%;
    margin-top: 30px;
    padding: 0 50px;
    height: 370px;
  }
}

.card_title {
  font-size: 20px;
  padding: 37px 0 27px 0;
}

.card_price {
  font-size: 16px;
  padding-bottom: 40px;
}
.card_price span {
  font-size: 40px;
  font-weight: 700;
  padding-left: 5px;
}

.card_text {
  padding-left: 24px;
  padding-bottom: 20px;
  position: relative;
}

.card_text:before,
.card_text:after {
  content: "";
  display: block;
  position: absolute;
}

.card_text:before {
  width: 16px;
  height: 16px;
  background: #696969;
  border: 1px solid #696969;
  border-radius: 50%;
  left: 0;
  top: 2px;
}

.card_text:after {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 6px;
  height: 3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 5px;
  top: 7px;
}

.table {
  width: 90%;
  margin-top: 27px;
  border-collapse: collapse;
  border: 1px solid #000000;
  background: #fff;
  font-size: 20px;
  margin: auto;
  margin-top: 42px;
}
@media (max-width: 767px) {
  .table {
    width: 100%;
  }
}

.table th,
.table td {
  border: 1px solid #d0d0d0;
  text-align: center;
  height: 77px;
  vertical-align: middle;
}
.table td {
  width: 333px;
}
@media (max-width: 767px) {
  .table td {
    width: 190px;
  }
}

.price_text_box {
  margin-top: 20px;
}

.price_text {
  padding-top: 52px;
  padding-left: 53px;
}
.price_text:not(:nth-child(2n)) {
  padding-top: 10px;
}
@media (max-width: 767px) {
  .price_text:not(:nth-child(2n)) {
    padding-top: 0px;
  }
}
@media (max-width: 767px) {
  .price_text {
    font-size: 10px;
    padding-left: 0;
    padding-top: 0;
  }
}

/*================================
# flow
================================*/
@media (max-width: 767px) {
  .flow {
    margin-bottom: 55px;
  }
}

.flow_chart {
  padding-top: 75px;
}

.flow_items {
  padding-left: 0;
}

.flow_items > li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flow_items > li:not(:last-child) {
  margin: 0 0 70px;
}

.flow_items > li .flow_icon {
  width: 90px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 10px 10px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background: #52d0d5;
  border-radius: 5px 5px 0 0;
  position: relative;
  line-height: 125%;
  margin: 0;
}

.flow_items > li .flow_icon::after {
  content: " ";
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 20px solid #52d0d5;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.flow_items > li dl {
  padding: 0 0 0 30px;
  width: calc(100% - 115px);
}

.flow_items > li dl dt {
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
}

.flow_items > li dl dt::after {
  content: "";
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #52d0d5;
}

.flow_items > li dl dd {
  margin: 0;
}

/*================================
# contact_box
================================*/
@media (max-width: 767px) {
  .contact {
    background: #ffdc46;
  }
}

.contact_title {
  color: #fff;
  text-align: center;
  font-size: 30px;
  padding-top: 40px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .contact_title {
    padding-top: 20px;
  }
}

.contact_box {
  width: 965px;
  height: 300px;
  background: #ffdc46;
  margin: auto;
}
@media (max-width: 767px) {
  .contact_box {
    width: 100%;
    background: transparent;
  }
}

.contact_text {
  text-align: center;
  font-size: 20px;
  color: #fff;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .contact_text {
    font-size: 18px;
  }
}

.contact_box_button {
  margin-top: 40px;
}

.contact_button02 {
  width: 495px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*================================
# work
================================*/
.work_text {
  text-align: center;
}

/*================================
# Q&A
================================*/
.qa {
  background: #fafad2;
}
@media (max-width: 767px) {
  .qa {
    height: 800px;
  }
}

.qa_item {
  width: 900px;
  max-width: 100%;
  margin-bottom: 5px;
  border-bottom: 1px solid #d0d0d0;
  margin-left: auto;
  margin-right: auto;
}

.qa_item summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 30px 32px 16px 48px;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}

.qa_item summary::before,
.qa_item p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}

.qa_item summary::before {
  color: #52d0d5;
  content: "Q";
}

.qa_item summary::after {
  -webkit-transform: translateY(-25%) rotate(45deg);
          transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.qa_item[open] summary::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.qa_item p {
  position: relative;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 12px 48px 20px;
  color: #333;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.qa_item[open] p {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.qa_item p::before {
  color: #ff8d8d;
  line-height: 1.2;
  content: "A";
}

/*================================
# form
================================*/
.form {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .form {
    margin-bottom: 80px;
  }
}

.form_text {
  text-align: center;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .form_text {
    padding-top: 0;
    font-size: 14px;
  }
}

.form_list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.form_item_title {
  padding-top: 75px;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .form_item_title {
    padding-top: 45px;
    padding-left: 15px;
  }
}

.form_item_inline {
  display: inline-block;
  font-size: 13px;
  text-align: center;
  background: #ffdc46;
  border-radius: 6px;
  padding: 2px 5px;
  margin-right: 8px;
  width: 40px;
}

.form_item_input [type=text] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 10px 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50px;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 770px;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .form_item_input [type=text] {
    width: 270px;
    margin-top: 10px;
  }
}
.form_item_input [type=email] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 10px 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50px;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 770px;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .form_item_input [type=email] {
    width: 270px;
    margin-top: 10px;
  }
}
.form_item_input [type=tel] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 10px 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50px;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 770px;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .form_item_input [type=tel] {
    width: 270px;
    margin-top: 10px;
  }
}
.form_item_input select {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff url(../img/caret-down.png) no-repeat right 20px center/17px 14px;
  padding: 14px 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50px;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 770px;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .form_item_input select {
    width: 270px;
  }
}

.form_select {
  margin: 50px auto 0;
  position: relative;
  width: 100px;
}

.form_item_input textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 20px 25px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50px;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 770px;
  height: 290px;
  margin-top: 18px;
  resize: none;
}
@media (max-width: 767px) {
  .form_item_input textarea {
    width: 270px;
    height: 250px;
    margin-top: 10px;
  }
}

.form_footer_submit {
  margin-top: 100px;
  text-align: center;
}

.form_button {
  background: #ffdc46;
  width: 300px;
  display: inline-block;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  padding: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .form_button {
    width: 270px;
  }
}

.form_button[disabled] {
  background: #fff;
  color: #ffdc46;
  border: 3px solid #ffdc46;
  cursor: not-allowed;
}
.form_button[disabled]:hover {
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.form_message {
  text-align: center;
  margin-top: 60px;
  display: none;
}
.form_message.-error {
  color: #f00;
}

/*================================
# footer
================================*/
.footer {
  background: #ffdc46;
}

.footer_logo {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
}

.footer_copyright {
  text-align: center;
  font-size: 14px;
}