@charset "utf-8";


/* ---------------------------------------------------------------------------------------------

　   Common

--------------------------------------------------------------------------------------------- */

.page_mv {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page_mv_bg {
  position: absolute;
  inset: 0;
}
.page_mv_bg,
.page_mv_bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.page_mv_bg img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.page_mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 28, 57, 0.55);
  z-index: 1;
}
.page_mv_inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.page_mv_head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page_mv_tit {
  margin: 0;
  line-height: 1;
  letter-spacing: .15em;
}
.page_mv_label {
  margin: 0;
  line-height: 1;
}
.page_mv_char {
  display: inline-block;
  line-height: 1;
}

@media only screen and ( max-width : 767px ) {
  .page_mv_inner {
    min-height: 22rem;
  }
  .page_mv_head {
    gap: .8rem;
  }
  .page_mv_tit {
    font-size: 1.5rem;
  }
  .page_mv_label {
    font-size: 5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .page_mv_inner {
    min-height: 44rem;
  }
  .page_mv_head {
    gap: 1rem;
  }
  .page_mv_tit {
    font-size: 2.2rem;
  }
  .page_mv_label {
    font-size: 10rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   Service

--------------------------------------------------------------------------------------------- */

#service.section {
  position: relative;
  padding: 0;
  color: #fff;
  background-color: var(--black);
}

#service .container {
  position: relative;
  z-index: 1;
}
#service .page_head {
  margin-bottom: 4rem;
  color: #fff;
}
#service .page_head_line {
  background: #fff;
}

.service_group {
  display: grid;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.service_group:last-of-type {
  border-bottom: none;
}
.service_group_tit {
  margin: 0;
  line-height: 1.8;
  letter-spacing: .1em;
}
.service_items {
  margin: 0;
}
.service_item {
  margin: 0;
}
.service_item_tit {
  margin: 0;
  font-weight: 700;
  letter-spacing: .05em;
}
.service_item_txt {
  margin: 0;
  line-height: 2;
  letter-spacing: .05em;
}

@media only screen and ( max-width : 767px ) {
  #service .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .service_group {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding: 3.2rem 0;
  }
  .service_item + .service_item {
    margin-top: 2.4rem;
  }
  .service_group_tit {
    font-size: 1.8rem;
  }
  .service_item_tit {
    font-size: 1.5rem;
    margin-bottom: .6rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #service .container {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  #service .page_head {
    margin-bottom: 7rem;
  }
  .service_group {
    grid-template-columns: minmax(0, 38rem) minmax(0, 1fr);
    gap: 4rem 6rem;
    padding: 5rem 0;
  }
  .service_item + .service_item {
    margin-top: 3.2rem;
  }
  .service_group_tit {
    font-size: 2.2rem;
  }
  .service_item_tit {
    font-size: 1.8rem;
    margin-bottom: .8rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   Flow

--------------------------------------------------------------------------------------------- */

#flow.section {
  padding: 0;
  background: #fff;
  overflow: visible;
}
#flow .page_head {
  margin-bottom: 4rem;
}
.flow_body {
  display: flex;
  flex-direction: column;
}
.flow_row {
  position: relative;
}
.flow_row + .flow_row {
  margin-top: 4rem;
}
.flow_row_line {
  display: none;
}
.flow_steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow_step_num {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #BE911E 0%, #FAD983 100%);
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.flow_step_tit {
  margin: 0;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--black);
}
.flow_step_txt {
  margin: 0;
  line-height: 2;
  letter-spacing: .05em;
  color: var(--black);
}

@media only screen and ( max-width : 767px ) {
  #flow .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .flow_row + .flow_row {
    margin-top: 3.2rem;
  }
  .flow_steps {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
  .flow_step {
    --flow-num-size: 7rem;
    display: grid;
    grid-template-columns: var(--flow-num-size) 1fr;
    grid-template-rows: auto auto;
    column-gap: 1.2rem;
    row-gap: .8rem;
    text-align: left;
    position: relative;
  }
  .flow_step_num {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    align-self: center;
    flex-shrink: 0;
    width: var(--flow-num-size);
    height: var(--flow-num-size);
    font-size: 3.2rem;
  }
  .flow_step_tit {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-size: 1.6rem;
  }
  .flow_step_txt {
    grid-column: 2;
    grid-row: 2;
  }
  .flow_step:not(:last-child)::after,
  .flow_row:first-child .flow_step:last-child::after {
    content: "";
    position: absolute;
    left: calc(var(--flow-num-size) / 2);
    top: var(--flow-num-size);
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #BE911E 0%, #FAD983 100%);
    z-index: 0;
  }
  .flow_step:not(:last-child)::after {
    height: calc(100% - var(--flow-num-size) + 3.2rem);
  }
  .flow_row:first-child .flow_step:last-child::after {
    height: calc(100% - var(--flow-num-size) + 3.2rem);
  }
  .flow_row:last-child .flow_step:last-child::after {
    content: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  #flow .container {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  #flow .page_head {
    margin-bottom: 7rem;
  }
  .flow_row + .flow_row {
    margin-top: 6rem;
  }
  .flow_row_line {
    display: block;
    position: absolute;
    top: 4.5rem;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 1px;
    background: var(--mainColor);
    z-index: 0;
    pointer-events: none;
  }
  .flow_row_line::before,
  .flow_row_line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    background: var(--mainColor);
    transform: translate(-50%, -50%);
  }
  .flow_row_line::before {
    left: 25%;
  }
  .flow_row_line::after {
    left: 75%;
  }
  .flow_row:first-child::after {
    content: "";
    position: absolute;
    top: 4.5rem;
    left: calc(100% * 5 / 6);
    right: calc(50% - 50vw);
    height: 1px;
    transform: translateY(-50%);
    background: var(--mainColor);
    z-index: 0;
    pointer-events: none;
  }
  .flow_row:last-child::before {
    content: "";
    position: absolute;
    top: 4.5rem;
    left: calc(50% - 50vw);
    right: calc(100% * 5 / 6);
    height: 1px;
    transform: translateY(-50%);
    background: var(--mainColor);
    z-index: 0;
    pointer-events: none;
  }
  .flow_steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem 4rem;
  }
  .flow_step {
    text-align: center;
  }
  .flow_step_num {
    width: 9rem;
    height: 9rem;
    margin: 0 auto 2.4rem;
    font-size: 4.4rem;
  }
  .flow_step_tit {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .flow_step_txt {
    text-align: left;
  }
}


/* ---------------------------------------------------------------------------------------------

　   Price

--------------------------------------------------------------------------------------------- */

#price.section {
  padding: 0;
  background: var(--subColor);
}
.price_lead {
  margin: 0 0 4rem;
  line-height: 2;
  letter-spacing: .05em;
  text-align: center;
  color: var(--black);
}
.price_table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price_table {
  width: 100%;
  min-width: 64rem;
  border-collapse: collapse;
  border: 1px solid var(--black);
  background: #fff;
  color: var(--black);
}
.price_table thead th {
  padding: 1.4rem 1.2rem;
  background: var(--black);
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: .05em;
  border: 1px solid #fff;
}
.price_table thead th:first-child {
  border-left-color: var(--black);
}
.price_table thead th:last-child {
  border-right-color: var(--black);
}
.price_table tbody th,
.price_table tbody td {
  padding: 1.4rem 1.2rem;
  border: 1px solid var(--black);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .05em;
  vertical-align: middle;
}
.price_table tbody th[scope="row"] {
  font-weight: 700;
  text-align: center;
}
.price_table_cat {
  width: 12%;
  font-weight: 700;
  text-align: center;
  background: #fff;
}
.price_table_price {
  text-align: center;
  white-space: nowrap;
}
.price_table_note {
  text-align: left;
}
.price_note {
  margin: 1.6rem 0 0;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: .05em;
  text-align: right;
  color: var(--black);
}

@media only screen and ( max-width : 767px ) {
  #price .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  #price .page_head {
    margin-bottom: 3.2rem;
  }
  .price_lead {
    margin-bottom: 3.2rem;
    font-size: 1.4rem;
    text-align: left;
  }
  .price_table thead th,
  .price_table tbody th,
  .price_table tbody td {
    padding: 1.2rem 1rem;
    font-size: 1.3rem;
  }
  .price_note {
    font-size: 1.2rem;
    text-align: left;
  }
}
@media print, screen and ( min-width : 768px ) {
  #price .container {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  #price .page_head {
    margin-bottom: 4rem;
  }
  .price_lead {
    margin-bottom: 5rem;
  }
  .price_table thead th,
  .price_table tbody th,
  .price_table tbody td {
    padding: 1.6rem 1.4rem;
  }
  .price_note {
    margin-top: 2rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   About

--------------------------------------------------------------------------------------------- */

#about.section {
  padding: 0;
  background: #fff;
}
.about_table {
  width: 100%;
  border-collapse: collapse;
  color: var(--black);
}
.about_table th,
.about_table td {
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--black);
  line-height: 1.8;
  letter-spacing: .05em;
  vertical-align: top;
  text-align: left;
}
.about_table th {
  width: 22%;
  padding-right: 3rem;
  font-weight: 700;
  white-space: nowrap;
}
.about_license_list,
.about_contact_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about_license_row + .about_license_row {
  margin-top: 1.2rem;
}
.about_license_row {
  display: grid;
  grid-template-columns: minmax(0, 14rem) minmax(0, 18rem) minmax(0, 1fr);
  gap: 1rem 2rem;
}
.about_license_item {
  display: block;
}
.about_contact_item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about_contact_item + .about_contact_item {
  margin-top: 1rem;
}
.about_contact_ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
}
.about_contact_ico img {
  display: block;
  width: 1.6rem;
  height: auto;
}
.about_contact_ico--mail {
  color: var(--black);
}
.about_contact_ico--mail svg {
  display: block;
  width: 2rem;
  height: auto;
}
.about_contact_link {
  color: var(--black);
}
.about_contact_link:hover {
  opacity: .8;
}
.about_map {
  margin-top: 4rem;
}
.about_map_iframe {
  display: block;
  width: 100%;
  height: 32rem;
  border: 0;
}

@media only screen and ( max-width : 767px ) {
  #about .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  #about .page_head {
    margin-bottom: 3.2rem;
  }
  .about_table th,
  .about_table td {
    display: block;
    width: 100%;
  }
  .about_table th {
    padding: 1.2rem 0 0.4rem;
    border-bottom: none;
  }
  .about_table td {
    padding: 0.4rem 0 1.6rem;
  }
  .about_license_row {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.2rem;
    padding-bottom: 1.6rem;
  }
  .about_license_item:first-child {
    grid-column: 1 / -1;
  }
  .about_license_row + .about_license_row {
    margin-top: 0;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(7, 46, 92, 0.2);
  }
  .about_license_row:last-child {
    padding-bottom: 0;
  }
  .about_map {
    margin-top: 3.2rem;
  }
  .about_map_iframe {
    height: 20rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #about .container {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  #about .page_head {
    margin-bottom: 5rem;
  }
  .about_table th,
  .about_table td {
    padding: 2.8rem 0;
  }
  .about_map {
    margin-top: 5rem;
  }
  .about_map_iframe {
    height: 45rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   Greeting

--------------------------------------------------------------------------------------------- */

#greeting.section {
  padding: 0;
  background: #fff;
}
.greeting_body {
  display: flex;
  align-items: flex-start;
  color: var(--black);
}
.greeting_img {
  flex-shrink: 0;
}
.greeting_img picture,
.greeting_img img {
  display: block;
  width: 100%;
  height: auto;
}
.greeting_txt {
  flex: 1;
  min-width: 0;
}
.greeting_txt p {
  margin: 0;
  line-height: 2;
  letter-spacing: .05em;
}
.greeting_txt p + p {
  margin-top: 1.6rem;
}

.profile {
  background: var(--subColor);
  color: var(--black);
}
.profile_inner {
  display: grid;
}
.profile_label {
  margin: 0;
  line-height: 1;
  color: var(--mainColor);
}
.profile_name {
  margin: 0;
  font-weight: 700;
}
.profile_name_ruby {
  font-weight: 700;
}
.profile_list {
  display: grid;
  margin: 0;
}
.profile_list dt {
  margin: 0;
  font-weight: 700;
}
.profile_list dd {
  margin: 0;
}

@media only screen and ( max-width : 767px ) {
  #greeting .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  #greeting .page_head {
    margin-bottom: 3.2rem;
  }
  .greeting_body {
    flex-direction: column;
    gap: 3.2rem;
  }
  .greeting_img {
    width: 100%;
    max-width: 32rem;
    margin: 0 auto;
  }
  .profile {
    margin-top: 4rem;
    padding: 3.2rem 2.4rem;
  }
  .profile_inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .profile_body {
    padding-top: .8rem;
  }
  .profile_label {
    font-size: 3.2rem;
  }
  .profile_name {
    margin-bottom: 4rem;
    font-size: 1.6rem;
  }
  .profile_name_ruby {
    font-size: 1.3rem;
  }
  .profile_list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .profile_list dt {
    padding-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .profile_list dt:first-of-type {
    padding-top: 0;
  }
  .profile_list dd {
    padding-top: 0.4rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(7, 46, 92, 0.2);
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .profile_list dd:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  #greeting .container {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  #greeting .page_head {
    margin-bottom: 5rem;
  }
  .greeting_body {
    flex-direction: row;
    gap: 5rem 6rem;
  }
  .greeting_img {
    width: 46rem;
  }
  .profile {
    margin-top: 6rem;
    padding: 4rem 5rem 8rem;
  }
  .profile_inner {
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
    align-items: start;
    gap: 4rem 7rem;
  }
  .profile_label {
    font-size: 4.4rem;
  }
  .profile_body {
    padding-top: 2.4rem;
  }
  .profile_name {
    margin-bottom: 5rem;
    font-size: 1.8rem;
    letter-spacing: .1em;
  }
  .profile_name_ruby {
    font-size: 1.5rem;
  }
  .profile_list {
    grid-template-columns: minmax(0, 16rem) minmax(0, 1fr);
    gap: 1.2rem 3rem;
  }
  .profile_list dt,
  .profile_list dd {
    letter-spacing: .05em;
    line-height: 1.8;
  }
}

