/*============================================================
common
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #222;
  letter-spacing: 0.05rem;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

input, button, textarea, select {
  border: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
a:link, a:visited, a:active {
  color: #222;
}

.sp {
  display: inherit;
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: inherit;
  }
}

.en {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
}

.en_serif {
  font-family: "Crimson Text", serif;
}

.center {
  text-align: center;
}

.bg-gray {
  background-color: #f5f5f5;
}

.clr_red {
  color: #e60012;
}

.clr_gold {
  color: #8d7225;
}

.underline {
  text-decoration: underline;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.flex_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: normal;
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  align-items: normal;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex_wrap_between {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex_wrap_center {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex_wrap_middle {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: normal;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex_reverse {
  flex-direction: row-reverse;
}

.sec {
  padding: 50px 0;
}
@media (min-width: 769px) {
  .sec {
    padding: 80px 0;
  }
}

.inner {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media (min-width: 769px) {
  .inner {
    max-width: 1040px;
  }
}

.head_ttl {
  text-align: center;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
.head_ttl span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 769px) {
  .head_ttl {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.btn_wrap {
  gap: 10px;
}

.btn {
  display: inline-block;
  position: relative;
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  background: #222;
  background-clip: padding-box;
  border-radius: 100vh;
  padding: 14px 68px;
  transition: all 0.3s ease-in-out 0s;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  bottom: auto;
  left: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -4px;
}
.btn:link, .btn:visited, .btn:active {
  color: #fff;
}
.btn:hover {
  opacity: 0.5;
}
@media (min-width: 769px) {
  .btn {
    width: 280px;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 18px 20px;
  }
}

.contact_btn {
  background: #231815;
}

.download_btn {
  background: #e60012;
}

/*============================================================
header
==============================================================*/
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
}
header .header_inner {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  padding: 10px 15px;
}
header .header_logo {
  width: 124px;
  height: auto;
}
header .navi ul {
  font-weight: 700;
}
header .link_area {
  display: flex;
  display: -ms-flexbox;
  justify-content: normal;
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  align-items: flex-end;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 4px;
  margin-left: 1rem;
}
header .personal {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  margin-top: 10px;
}
header .personal a {
  font-size: 13px;
  font-size: 0.8125rem;
  text-decoration: underline;
  padding: 0 !important;
}
header .btn_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
}
header .btn::after {
  display: none;
}
header #sp-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.3s;
}
header #sp-nav ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header #sp-nav li {
  list-style: none;
  text-align: center;
}
header #sp-nav li a {
  font-size: 15px;
  font-size: 0.9375rem;
  display: block;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
header #sp-nav li .btn {
  width: 240px;
  padding: 12px 20px 12px 20px;
  margin-top: 10px;
}
header #sp-nav li .btn::after {
  right: 20px;
  margin-top: -13px;
}
header #sp-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
header #sp-nav.panelactive ul {
  display: block;
}
header .openbtn {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #231815;
  border-radius: 0 0 4px 4px;
}
header .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
header .openbtn span:nth-of-type(1) {
  top: 15px;
}
header .openbtn span:nth-of-type(2) {
  top: 23px;
}
header .openbtn span:nth-of-type(3) {
  top: 31px;
}
header .openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
header .openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media (min-width: 769px) {
  header {
    position: fixed;
    z-index: 100;
  }
  header .header_inner {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-wrap: wrap;
    padding: 5px 20px;
  }
  header .navi ul {
    font-size: 14px;
    font-size: 0.875rem;
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    gap: 14px;
  }
  header .link_area {
    margin-left: 2rem;
  }
  header .personal {
    margin-top: 0;
  }
  header .btn {
    width: auto;
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 8px 20px;
    margin: 0;
  }
}
@media (min-width: 1280px) {
  header .header_inner {
    height: 70px;
  }
  header .navi ul {
    gap: 24px;
  }
  header .btn {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

/*============================================================
cta
==============================================================*/
.cta {
  text-align: center;
  color: #fff;
  background: url(../img/cta_bg.jpg) no-repeat center/cover;
  padding: 40px 0 60px;
}
.cta h2 {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.cta h2 span {
  font-size: 12px;
  font-size: 0.75rem;
}
.cta .contact_btn, .cta .download_btn {
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 14px 20px;
}

.cta_icon_list {
  gap: 12px;
  margin: 30px 0;
}

.cta_icon {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}
.cta_icon img {
  width: 80px;
  height: auto;
  margin-bottom: 5px;
}

.cta_list {
  gap: 40px;
}

.cta_item {
  text-align: left;
  color: #222;
  background-color: #fff;
  padding: 20px 20px 30px;
  border-radius: 5px;
}
.cta_item h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
.cta_item h3 span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
}
.cta_item .flex_wrap_between {
  margin: 6px 0;
}
.cta_item figure {
  width: 100%;
  margin-bottom: 10px;
}
.cta_item p {
  font-size: 14px;
  font-size: 0.875rem;
}

.cta_img {
  width: 180px;
  height: 120px;
}

@media (min-width: 769px) {
  .cta h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .cta h2 span {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .cta .contact_btn, .cta .download_btn {
    width: 330px;
    font-size: 16px;
    font-size: 1rem;
  }
  .cta_item {
    width: 48%;
  }
  .cta_item .flex_wrap_between {
    margin: 26px 0;
  }
  .cta_item figure {
    width: auto;
    margin-bottom: 0;
  }
  .cta_item p {
    width: 56%;
  }
}
/*============================================================
kv
==============================================================*/
#kv {
  background: url(../img/kv_bg_sp.jpg) no-repeat center top/contain;
  margin-top: 50px;
}
#kv h1 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 900;
  font-style: italic;
}

.kv_inner {
  width: 90%;
  padding: 20px 10px 0;
  margin: auto;
}

.kv_logo {
  max-width: 620px;
  width: 80%;
  height: auto;
  margin: 10px 0;
}

.kv_list {
  display: inline-block;
}

.kv_item {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 15px 0;
}
.kv_item::before {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 3px;
  content: url(../img/kv_icon.svg);
  width: 22px;
  height: auto;
  vertical-align: middle;
}
.kv_item span {
  background-color: #f5f5f5;
  padding: 5px 20px 5px 32px;
  border-radius: 2px;
}

.medal_wrap {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  margin: 30px 0;
  gap: 10px;
}
.medal_wrap .en_serif {
  font-size: 28px;
  font-size: 1.75rem;
}

.medal {
  position: relative;
  text-align: center;
  padding: 0 20px;
}
.medal::before, .medal::after {
  content: "";
  position: absolute;
  width: 16px;
  height: auto;
  vertical-align: middle;
}
.medal::before {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  content: url(../img/medal_left.svg);
}
.medal::after {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  content: url(../img/medal_right.svg);
}

@media (min-width: 769px) {
  #kv {
    background: url(../img/kv_bg.jpg) no-repeat center top/cover;
    height: 690px;
    margin-top: 70px;
  }
  #kv h1 {
    font-size: 32px;
    font-size: 2rem;
  }
  .kv_inner {
    padding: 40px 20px 0;
  }
  .kv_item {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .kv_item::before {
    width: 26px;
  }
  .medal_wrap {
    font-size: 14px;
    font-size: 0.875rem;
    gap: 20px;
  }
  .medal_wrap .en_serif {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .medal {
    padding: 0 30px;
  }
  .medal::before, .medal::after {
    width: 20px;
  }
}
/*============================================================
client
==============================================================*/
.client {
  padding: 20px 0 50px;
  margin-top: 40px;
}
.client h2 {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 20px 15px;
}

.slider {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  overflow: hidden;
}

.slider_inner li {
  width: 2550px;
  height: 61px;
  background: url(../img/client_logo.png);
}

.slider_right_to_left {
  animation: infinity-scroll-left 20s infinite linear;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media (min-width: 769px) {
  #client h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
/*============================================================
case
==============================================================*/
#case .head_ttl {
  margin-bottom: 2rem;
}
#case .sub_ttl {
  position: relative;
  max-width: 800px;
  text-align: center;
  font-weight: 700;
  background: #fce5e7;
  border-radius: 4px;
  padding: 10px 48px;
  margin: 0 auto 30px;
}
#case .sub_ttl::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-top: 10px solid #fce5e7;
  border-left: 8px solid transparent;
  bottom: -10px;
  margin: auto;
}

.case_slider .case_item {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: stretch;
  flex-wrap: wrap;
}

.case_item {
  position: relative;
  padding: 20px;
  margin: 0 10px;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px #dcdddd;
  border-radius: 5px;
}

.case_slider .slick-track {
  padding-top: 30px;
}

.case_slider .slick-dots {
  bottom: -30px;
}

.case_slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.case_slider .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}

.case_slider .slick-dots li button:before {
  font-size: 10px;
  color: #b2b2b2;
  opacity: 1;
}

.case_slider .slick-dots li.slick-active button:before {
  color: #231815;
}

.case_slider {
  position: relative;
}

.case_slider .slick-prev,
.case_slider .slick-next {
  width: 40px;
  height: 40px;
  background-color: #bfc0c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  transform: translateY(-50%);
}

.case_slider .slick-prev {
  left: 10px;
}

.case_slider .slick-next {
  right: 10px;
}

.case_slider .slick-prev::before,
.case_slider .slick-next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: -2px;
  opacity: 1 !important;
}

.case_slider .slick-prev::before {
  transform: rotate(-135deg);
  margin-left: 0;
  margin-right: -2px;
}

.case_label {
  position: absolute;
  top: -15px;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: inline-table;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background-color: #e60012;
  padding: 2px 20px;
  border-radius: 100vh;
}

.case_info {
  width: 100%;
  gap: 20px;
}

.case_head .name {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 8px auto;
}
.case_head h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  border-left: solid 4px #e60012;
  padding-left: 8px;
  margin-bottom: 20px;
}
.case_head .category {
  font-size: 14px;
  font-size: 0.875rem;
}

.case_txt {
  margin-top: 20px;
}
.case_txt h4 {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: solid 1px #dcdddd;
}
.case_txt p {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  .case_slider .case_item {
    max-width: 800px;
    justify-content: space-between;
    flex-direction: row;
  }
  .case_item {
    padding: 30px;
  }
  .case_slider .slick-prev,
  .case_slider .slick-next {
    width: 50px;
    height: 50px;
  }
  .case_img {
    width: 300px;
    height: 200px;
  }
  .case_head {
    width: 56%;
  }
  .case_head .name {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .case_head .category {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .case_head h3 {
    font-size: 24px;
    font-size: 1.5rem;
    padding-left: 14px;
  }
  .case_txt h4 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .case_txt p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .case_slider .slick-prev {
    left: calc(50% - 400px - 30px);
  }
  .case_slider .slick-next {
    left: calc(50% + 400px - 20px);
  }
}
/*============================================================
product
==============================================================*/
#product h3 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}

.product_about {
  gap: 40px;
}
.product_about p {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
}
.product_about img {
  width: 500px;
  height: auto;
}

.product_number {
  padding: 30px 0;
  margin: 80px 0;
  border-top: solid 2px #e0cb8d;
  border-bottom: solid 2px #e0cb8d;
}
.product_number h3 {
  margin-top: -52px;
}
.product_number h3 span {
  background-color: #fff;
  padding: 0 30px;
}

.number_list {
  gap: 10px;
  margin-top: 35px;
}

.number_item {
  width: 235px;
  height: 161px;
  background: url(../img/product_number_bg.svg) no-repeat center top/contain;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.number_item .strong {
  display: inline-block;
  font-size: 60px;
  font-size: 3.75rem;
  margin-top: -6px;
}

.product_after_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.before_box, .after_box {
  border-radius: 5px;
}
.before_box h4, .before_box p, .after_box h4, .after_box p {
  text-align: center;
}
.before_box h4, .after_box h4 {
  color: #fff;
  padding: 6px 0;
  border-radius: 5px 5px 0 0;
}
.before_box p, .after_box p {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 20px 0;
}
.before_box ul, .after_box ul {
  padding: 10px 15px 20px;
}
.before_box li, .after_box li {
  position: relative;
  font-weight: 700;
  padding: 0 0 0 26px;
  margin: 8px 0;
}
.before_box li::before, .after_box li::before {
  content: "";
  position: absolute;
  top: 3px;
  right: auto;
  bottom: auto;
  left: 0;
  width: 20px;
  height: 20px;
  content: url(../img/check_icon.svg);
  vertical-align: middle;
}

.before_box {
  background-color: #f5f5f5;
}
.before_box h4 {
  background-color: #0058aa;
}
.before_box figure {
  padding-top: 14px;
}
.before_box li::before {
  content: url(../img/check_icon_blue.svg);
}

.before_img, .after_img {
  width: 330px;
  height: auto;
}

.after_box {
  background-color: #fef7f8;
}
.after_box h4 {
  background-color: #e60012;
}

.product_arr {
  transform: rotate(90deg);
}
.product_arr img {
  width: 40px;
  height: auto;
}

@media (min-width: 769px) {
  .product_after_wrap {
    flex-direction: row;
  }
  .before_box, .after_box {
    width: 46%;
  }
  .product_arr {
    transform: rotate(0deg);
  }
}
/*============================================================
reason
==============================================================*/
.reason_list li {
  margin: 0 0 40px;
}
.reason_list li .txt {
  margin-bottom: 5px;
}
.reason_list h3 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.reason_list h3 span {
  display: block;
  font-style: italic;
  font-size: 120px;
  font-size: 7.5rem;
  color: #f0d4d5;
  margin-bottom: -80px;
}
.reason_list .desc {
  line-height: 1.8;
}

.reason_item img {
  width: 400px;
  height: 270px;
}

@media (min-width: 769px) {
  .reason_list h3 {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .reason_list li { /* Safari */
    flex-wrap: nowrap;
  }
  .reason_list li .txt {
    width: 60%;
    margin-bottom: 0;
  }
}
/*============================================================
person
==============================================================*/
#person {
  background: url(../img/person_bg.jpg) no-repeat center top/cover;
}

.person_list {
  gap: 30px;
  margin-top: 80px;
}

.person_item {
  background-color: #fff;
  padding: 0 20px 0;
  border: solid 1px #dcdddd;
  border-radius: 5px;
}
.person_item figure {
  margin-top: -50px;
  margin-bottom: 10px;
}
.person_item img {
  width: 100px;
  height: 100px;
}
.person_item h3 {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  min-height: 74px;
}
.person_item dl {
  font-size: 14px;
  font-size: 0.875rem;
}
.person_item dt {
  font-weight: 700;
  background-color: #efefef;
  padding: 1px 5px;
  margin-bottom: 5px;
}
.person_item dd {
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  .person_item {
    width: 30%;
  }
}
/*============================================================
price
==============================================================*/
.price_list {
  gap: 20px;
  margin: 60px 0 0;
}

.price_item {
  background-color: #fff;
  padding: 0 16px 16px;
  margin-bottom: 20px;
  border-radius: 5px;
}
.price_item img {
  width: 200px;
  height: 85px;
}
.price_item h3 {
  max-width: 180px;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  background-color: #3e3a39;
  padding: 3px;
  margin: -15px auto 8px;
  border-radius: 100vh;
}
.price_item p {
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
  border-top: solid 1px #dcdddd;
  margin-top: 16px;
  padding-top: 16px;
}

.price_btn {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  color: #231815;
  background-color: #fff;
  border: solid 2px #231815;
  padding: 14px 20px;
}
.price_btn:link, .price_btn:visited, .price_btn:active {
  color: #231815;
}
.price_btn::after {
  border-top: 2px solid #231815;
  border-right: 2px solid #231815;
}

@media (min-width: 769px) {
  .price_list {
    margin: 60px 0 40px;
  }
  .price_item {
    width: 24%;
    margin-bottom: 0;
  }
  .price_btn {
    width: 330px;
  }
}
/*============================================================
flow
==============================================================*/
.flow_list {
  max-width: 730px;
  margin: 40px auto 0;
}

.flow_item {
  position: relative;
  flex-wrap: nowrap;
  gap: 30px;
  margin-bottom: 50px;
}
.flow_item::after {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  left: 0;
  bottom: -26px;
  right: 0;
  margin: 0 auto;
  border-right: 10px solid transparent;
  border-top: 12px solid #231815;
  border-left: 10px solid transparent;
}
.flow_item:last-child {
  margin-bottom: 0;
}
.flow_item:last-child::after {
  display: none;
}
.flow_item img {
  width: 130px;
  height: auto;
}
.flow_item h3 {
  font-weight: 700;
}
.flow_item h3 span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
}
.flow_item p {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 15px 0;
}
.flow_item .contact_btn {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 8px 50px;
  margin: 0;
}

@media (min-width: 769px) {
  .flow_item::after {
    left: 55px;
    bottom: -28px;
    margin: 0;
  }
  .flow_item p {
    font-size: 16px;
    font-size: 1rem;
  }
  .flow_item .contact_btn {
    max-width: 200px;
    padding: 8px 20px;
  }
}
/*============================================================
faq
==============================================================*/
.faq_box {
  width: 96%;
  max-width: 800px;
  margin: auto;
}

.accordion {
  margin-bottom: 15px;
}

.toggle {
  display: none;
}

.accordion_ttl {
  display: block;
  position: relative;
  text-align: left;
  color: #222;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4rem;
  background: #fff;
  padding: 10px 50px 10px 20px;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  border-bottom: solid 1px #bfc0c0;
}
.accordion_ttl p {
  display: flex;
  align-items: center;
}
.accordion_ttl span {
  flex-shrink: 0;
  display: inline-block;
  text-align: center;
  color: #222;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 4rem;
  font-family: "Poppins", sans-serif;
  margin-right: 20px;
  margin-top: 10px;
}
.accordion_ttl::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #222;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.accordion_ttl::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #222;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.accordion_ttl,
.accordion_txt {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion_txt {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.accordion_txt .answer {
  flex-shrink: 0;
  display: inline-block;
  text-align: center;
  color: #e60012;
  font-size: 36px;
  font-size: 2.25rem;
  font-family: "Poppins", sans-serif;
  margin-right: 20px;
  margin-top: 10px;
}
.accordion_txt p {
  display: flex;
  align-items: center;
}

.toggle:checked + .accordion_ttl + .accordion_txt {
  height: auto;
  padding: 10px 20px;
  transition: all 0.3s;
}

.toggle:checked + .accordion_ttl::after {
  transform: translateY(-50%) rotate(0);
}

@media (min-width: 769px) {
  .accordion_ttl {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 66px 0 20px;
  }
  .accordion_txt {
    font-size: 16px;
    font-size: 1rem;
  }
}
/*============================================================
download
==============================================================*/
#download {
  background: url(../img/cta_bg.jpg) no-repeat center/cover;
}
#download .head_ttl {
  color: #fff;
}

.download_box {
  gap: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}

.download_info h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: solid 1px #bfc0c0;
  margin-bottom: 16px;
}
.download_info img {
  width: 400px;
  height: auto;
}
.download_info li {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0 0 0 26px;
  margin: 8px 0;
}
.download_info li::before {
  content: "";
  position: absolute;
  top: 3px;
  right: auto;
  bottom: auto;
  left: 0;
  width: 20px;
  height: 20px;
  content: url(../img/check_icon.svg);
  vertical-align: middle;
}

@media (min-width: 769px) {
  .download_box {
    gap: 40px;
    padding: 50px;
  }
  .download_info li {
    font-size: 16px;
    font-size: 1rem;
  }
}
/*============================================================
footer
==============================================================*/
footer {
  font-size: 14px;
  font-size: 0.875rem;
  color: #222;
  background: #fff;
  padding: 40px 0;
}
footer .inner {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
footer .footer_info {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
footer .footer_info figure {
  margin-bottom: 20px;
}
footer .footer_info .name {
  font-weight: 600;
  margin-bottom: 10px;
}
footer .copy {
  font-size: 10px;
  font-size: 0.625rem;
}

@media (min-width: 769px) {
  footer .inner {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    flex-wrap: wrap;
  }
  footer .footer_info {
    margin-bottom: 0;
  }
  footer .footer_info figure {
    margin-right: 30px;
    margin-bottom: 0;
  }
  footer .copy {
    text-align: right;
  }
}/*# sourceMappingURL=style.css.map */