@charset "UTF-8";
/* CSS Document */

html {
  font-size: 62.5%;
}

body {
  color: #2e2e2e;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

.bc_darkgray {
  background-color: #eaeaea;
}

h2 {
  font-size: 8rem;
  font-weight: bold;
}

h3 {
  font-size: 3rem;
  font-weight: bold;
}
/*--------------------------------------------------
 err404
--------------------------------------------------*/
.section-outer_404 {
  /*	padding-top: 60px;*/
}
.section-inner_404 {
  padding: 40px 20px;
}
.section-titile_404 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.section-text_404 {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {
  .section-outer_404 {
    display: flex;
  }

  .img-404 {
    width: 50%;
    height: 100vh;
  }

  .section-inner_404 {
    padding: 45vh 40px 0;
  }

  .side-menu_text.err404 {
    top: 60px;
  }
}

/*--------------------------------------------------
 loading
--------------------------------------------------*/
.loading {
  display: none;
  /*	display: block;*/
  z-index: 500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgb(234, 234, 234);
}
#circleG {
  width: 146px;
  padding-top: 45vh;
  margin: 0 auto;
}

.circleG {
  background-color: rgb(234, 234, 234);
  float: left;
  height: 31px;
  margin-left: 17px;
  width: 31px;
  animation-name: bounce_circleG;
  -o-animation-name: bounce_circleG;
  -ms-animation-name: bounce_circleG;
  -webkit-animation-name: bounce_circleG;
  -moz-animation-name: bounce_circleG;
  animation-duration: 2.24s;
  -o-animation-duration: 2.24s;
  -ms-animation-duration: 2.24s;
  -webkit-animation-duration: 2.24s;
  -moz-animation-duration: 2.24s;
  animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-direction: normal;
  -o-animation-direction: normal;
  -ms-animation-direction: normal;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
  border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
}

#circleG_1 {
  animation-delay: 0.45s;
  -o-animation-delay: 0.45s;
  -ms-animation-delay: 0.45s;
  -webkit-animation-delay: 0.45s;
  -moz-animation-delay: 0.45s;
}

#circleG_2 {
  animation-delay: 1.05s;
  -o-animation-delay: 1.05s;
  -ms-animation-delay: 1.05s;
  -webkit-animation-delay: 1.05s;
  -moz-animation-delay: 1.05s;
}

#circleG_3 {
  animation-delay: 1.35s;
  -o-animation-delay: 1.35s;
  -ms-animation-delay: 1.35s;
  -webkit-animation-delay: 1.35s;
  -moz-animation-delay: 1.35s;
}

@keyframes bounce_circleG {
  0% {
  }

  50% {
    background-color: rgb(248, 96, 30);
  }

  100% {
  }
}

@-o-keyframes bounce_circleG {
  0% {
  }

  50% {
    background-color: rgb(248, 96, 30);
  }

  100% {
  }
}

@-ms-keyframes bounce_circleG {
  0% {
  }

  50% {
    background-color: rgb(248, 96, 30);
  }

  100% {
  }
}

@-webkit-keyframes bounce_circleG {
  0% {
  }

  50% {
    background-color: rgb(248, 96, 30);
  }

  100% {
  }
}

@-moz-keyframes bounce_circleG {
  0% {
  }

  50% {
    background-color: rgb(248, 96, 30);
  }

  100% {
  }
}
/*--------------------------------------------------
 animation
--------------------------------------------------*/
/*fade-in*/
.fadein-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}
.fadein-section.visible {
  opacity: 1;
  transform: none;
}

/*--------------------------------------------------
 header
--------------------------------------------------*/
.header-inner {
  z-index: 100;
  width: 100%;
  height: 100px;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
}

.header-logo {
  z-index: 200;
  width: 80px;
  height: auto;
  padding-top: 10px;
  padding-left: 20px;
}

/*hamburger menu*/
.btn-trigger {
  z-index: 200;
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background-color: #f2761c;
}
.btn-trigger span {
  display: block;
  position: absolute;
  border-bottom: solid 6px #fff;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  left: 22px;
}
.btn-trigger span:nth-child(1) {
  top: 36px;
  width: 56px;
}
.btn-trigger span:nth-child(2) {
  top: 56px;
  width: 36px;
}
.btn-trigger.active {
  background-color: transparent;
}
.btn-trigger.active span:nth-child(1) {
  top: 50px;
  left: 20px;
  border-bottom: solid 6px #f2761c;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.btn-trigger.active span:nth-child(2) {
  top: 50px;
  left: 20px;
  width: 56px;
  border-bottom: solid 6px #f2761c;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.gnav {
  display: none;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: #eaeaea;
}
.gnav-list {
  margin-top: 120px;
  text-align: center;
}
.gnav-item {
  margin-bottom: 40px;
}
.gnav-item__en {
  position: relative;
  transition: 0.3s;
  display: inline-block;
  color: #2e2e2e;
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

.header-inner.no-active {
  background-color: transparent;
  transition: 0.3s;
}
.page-title_inner .gnav.no-active,
.header-logo.no-active {
  display: none;
}

.contact-button {
  display: inline-block;
  background-color: #f2761c;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #d24e00;
}

.header-contact {
  display: block;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .btn-trigger {
    display: none;
  }

  .btn-trigger span:nth-child(1) {
    top: 30px;
    left: 10px;
    border-bottom: solid 4px #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .btn-trigger span:nth-child(2) {
    top: 30px;
    left: 10px;
    width: 36px;
    border-bottom: solid 4px #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .btn-trigger.active {
    background-color: #f8601e;
  }

  .btn-trigger.active span:nth-child(1) {
    top: 22px;
    left: 12px;
    width: 36px;
    border-bottom: solid 4px #fff;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .btn-trigger.active span:nth-child(2) {
    top: 32px;
    left: 12px;
    width: 26px;
    border-bottom: solid 4px #fff;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .gnav {
    display: block;
    position: static;
    height: auto;
    background-color: transparent;
    padding-right: 20px;
  }

  .gnav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    gap: 4rem;
  }

  .gnav-item {
    margin: 0;
  }

  .gnav-item__en {
    font-size: 3rem;
    color: #000;
    line-height: 0.5;
  }

  .gnav-item__en:hover {
    color: #f2761c;
  }
  .gnav-item__en::after {
    position: absolute;
    top: 25px;
    right: 0;
    content: "";
    width: 0;
    height: 1px;
    background-color: #f2761c;
    transition: 0.3s;
  }
  .gnav-item__en:hover::after {
    width: 100%;
  }

  .header-logo {
    position: static;
  }
}

/*--------------------------------------------------
 footer 共通スタイル（モバイルファースト）
--------------------------------------------------*/
.fnav {
  background-color: #c7c7c7;
  padding-top: 70px;
}

.fnav-item {
  margin-bottom: 50px;
  margin-left: 50px;
}

.fnav-item > a {
  display: block;
  color: #2e2e2e;
  font-size: 1.6rem;
  font-weight: bold;
  transition: 0.3s;
  margin-bottom: 5px;
}

.fnav-item > a:hover {
  color: #fff;
}

.fnav-list-icon {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 240px;
  padding: 0;
  margin: auto;
  margin-bottom: 30px;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.icon-circle i {
  font-size: 20px;
}

.icon-circle:hover {
  background-color: #555;
  transform: scale(1.1);
}

.fnav-list2 {
  display: flex;
  flex-wrap: wrap;
}

.fnav-item2 {
  width: 50%;
  border-top: solid 1px #fff;
  box-sizing: border-box;
  padding: 20px 0;
}

.fnav-item2:first-child {
  border-right: solid 1px #fff;
}

.fnav-item2:last-child {
  width: 100%;
}

.fnav-item2 > a {
  display: block;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}

.fnav-item2 > a:hover {
  color: #2e2e2e;
}

.fnav-sitemap-1 > a {
  color: #2e2e2e;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 3;
}

.fnav-sitemap-2 {
  margin-left: 10px;
  text-align: left;
  font-size: 1.4rem;
}

.fnav-sitemap-2 > a {
  color: #707070;
  line-height: 2.5;
}

.fnav-sitemap-2::before {
  content: "∟";
  color: #707070;
  font-size: 1.2rem;
  margin-right: 5px;
}

.footer-inner {
  background-color: #f5f5f5;
  padding: 50px 20px;
}

.copyright {
  display: block;
  color: #2e2e2e;
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
  margin-top: 50px;
}

@media screen and (min-width: 1024px) {
  .fnav {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .fnav-list {
    display: flex;
    margin-bottom: 30px;
    width: 100%;
    justify-content: center;
  }

  .fnav-list2 {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .fnav-item {
    margin: 0;
    padding-left: 20px;
  }

  .fnav-item > a {
    line-height: 40px;
  }

  .fnav-item2 {
    width: auto;
    border-top: none;
    border-right: solid 1px #fff;
    padding: 15px 0;
  }

  .fnav-item2 > a {
    display: inline-block;
    text-align: left;
    white-space: nowrap;
    padding: 0 20px;
  }

  .fnav-item2:first-of-type > a {
    padding-left: 0;
  }

  .fnav-item2:last-of-type {
    border-right: none;
  }

  .fnav-sitemap-2 {
    font-size: 1.6rem;
  }

  .footer-inner {
    padding: 50px 0px;
    text-align: center;
  }

  .footer-inner img {
    width: 70%;
    max-width: 960px;
  }

  .copyright {
    font-size: 2rem;
    font-weight: 700;
  }


  /* ====================
    PAGE TOP BUTTON
  ==================== */
  .btn-pageTop {
    position: fixed;
    bottom: 5px;
    right: 5px;
    width: 60px;
    height: 60px;
    background-color: #4b4b4b;
    z-index: 1000;
    cursor: pointer;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .btn-pageTop.show {
    display: block;
    opacity: 1;
  }

  .btn-pageTop span {
    position: absolute;
    border-bottom: solid 4px #fff;
    transition-duration: 0.3s;
  }

  .btn-pageTop span:nth-child(1) {
    top: 28px;
    width: 24px;
    left: 10px;
    transform: rotate(-45deg);
  }

  .btn-pageTop span:nth-child(2) {
    top: 28px;
    width: 24px;
    left: 25px;
    transform: rotate(45deg);
  }

  .btn-pageTop:hover span {
    top: 25px;
  }
}

/*--------------------------------------------------
 common
--------------------------------------------------*/
.pc {
  display: none;
}
.pointer {
  cursor: pointer;
}
.btn-view {
  display: flex;
  align-items: center;
  width: 180px;
  height: 50px;
  color: #f2761c;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #fff;
  border: solid 4px #f2761c;
  border-radius: 25px;
  box-sizing: border-box;
  padding: 0px 20px 0px 20px;
  margin: 0 0 0 auto;
  transition: 0.3s;
}
.btn-view:after {
  content: "";
  flex-grow: 1;
  height: 2px;
  background: #f2761c;
  display: block;
  margin-left: 1em;
  transition: 0.3s;
}
.btn-view:hover {
  color: #fff;
  border: solid 4px #fff;
  background-color: #d24e00;
}
.btn-view:hover:after {
  background: #fff;
}
.btn-action {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  width: 300px;
  margin: 0 auto;
  line-height: 4rem;
  background-color: #f2761c;
  border: solid 4px #fff;
  border-radius: 25px;
  box-sizing: border-box;
  transition: 0.3s;
}
.btn-action:hover {
  color: #f2761c;
  border: solid 4px #d24e00;
  background-color: #fff;
}
#check_enable .disabled {
  background-color: #818181;
  pointer-events: none;
}

.top-pad {
  padding: 100px 40px;
}
.pdt70 {
  padding-top: 70px;
}

.page-title_inner {
  background-color: #f5f5f5;
}
.page-title_header {
  color: #f2761c;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 2;
  padding-left: 20px;
  border-bottom: solid 1px #f2761c;
}
.page-title_header > span {
  color: #2e2e2e;
}
.page-title_header > span.nomal {
  text-transform: none;
}
.page-title_header a {
  color: #f2761c;
}
.page-title {
  color: #2e2e2e;
  font-size: 3.2rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 30px 0 30px 20px;
}
.page-title.nomal {
  font-size: 2.8rem;
  text-transform: none;
}
.page-title > span {
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 10px;
}
.page-title_spacer,
.service-title_spacer {
  height: 100px;
}
.btn-readmore {
  display: inline-block;
  margin-top: 20px;
  font-size: 2rem;
  padding: 16px 40px;
  background-color: #f2761c;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
  line-height: 1.8;
}
.btn-readmore:hover {
  background-color: #d24e00;
}

.page-title_outer {
  width: 100%;
  background-color: #f2761c;
}

.page-title_inner {
  margin: 0;
  background-color: #f2761c;
}

.page-title {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
}

.page-title span {
  font-size: 4rem;
  font-weight: 300;
  margin-top: 1rem;
  margin-left: 2rem;
}

.section-text {
  color: #2e2e2e;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
}

@media screen and (min-width: 1024px) {
  .pc {
    display: block;
  }

  .br-sp {
    display: none;
  }

  .sp {
    display: none;
  }

  .bg-02 {
    background-color: #f8f8f8;
  }

  .bg-03 {
    background-color: #f2761c;
  }

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

  .page-title_inner {
    margin-right: 60px;
  }

  .section-inner_pc {
    display: flex;
  }

  .section-outer{
    display: flex;
  }

  .section-inner {
    margin: 0 auto;
  }

  .btn-view {
    margin: 0 auto 0 0;
  }

  .btn-action {
    width: 300px;
    margin: 0 auto;
  }

  .belowspc50 {
    margin-bottom: 70px;
    margin-top: 90px;
  }

  .pdt20 {
    padding-top: 20px;
  }

  .page-title {
    font-size: 10rem;
    padding-top: 100px;
  }
}


/*--------------------------------------------------
 top
--------------------------------------------------*/

/*main visual*/
.mv-inner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.mv-img {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  min-width: 100%;
  z-index: -1;
}
.mv-title {
  position: absolute;
  top: 60%;
  left: 5%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.1;
  z-index: 10;
  text-align: left;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* PC View - 960px and up */
@media screen and (min-width: 1024px) {
  .mv-title {
    font-size: 8rem;
  }
}


/* TOP PAGE STYLES */
/* ====================
  共通スタイル
==================== */
.section-headings {
  margin-bottom: 30px;
  margin-left: -20px;
}

.section-heading {
  font-size: 5rem;
  font-weight: bold;
}

.section-subheading {
  font-size: 2rem;
  padding-left: 1rem;
}

@media screen and (min-width: 1024px) {
  .section-heading {
    font-size: 8rem;
  }
}

/* ====================
  ABOUT セクション
==================== */
#top-about {
  position: relative;
  color: #000;
  padding: 0;
  background: url('../images/top/top_about.jpg') no-repeat center center/cover;
  height: 80vh;
}

#top-about .about-overlay {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 80px 40px;
  max-width: 700px;
  text-align: left;
  height: calc(100% - 160px);
}

#top-about .about-body {
  line-height: 1.8;
}

#top-about .about-feature-title {
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  #top-about .about-description {
    font-size: 2rem;
  }
}

/* ====================
  SERVICE セクション
==================== */
#top-service .service-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

#top-service .service-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: left;
}

#top-service .service-image img {
  width: 100%;
  height: auto;
  border: none;
}

#top-service .service-text {
  text-align: center;
  width: 60%;
  line-height: 1.8;
}

#top-service .service-text h3 {
  margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
  #top-service .service-wrapper {
    gap: 80px;
  }

  #top-service .service-row,
  #top-service .service-row.reverse {
    flex-direction: row;
    justify-content: space-between;
  }

  #top-service .service-row.reverse {
    flex-direction: row-reverse;
  }

  #top-service .service-image,
  #top-service .service-text {
    font-size: 2rem;
    width: 48%;
  }

  #top-service .service-text {
    text-align: left;
  }
}

/* ====================
  MESSAGE セクション
==================== */
#top-message .message-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#top-message .message-image img {
  width: 100%;
  height: auto;
}

#top-message .message-content {
  width: 100%;
  padding: 0 20px;
}

@media screen and (min-width: 1024px) {
  #top-message .message-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

  #top-message .message-image,
  #top-message .message-content {
    font-size: 2rem;
    max-width: 50%;
  }

  #top-message .message-content {
    padding-left: 20px;
  }
  #top-message .message-text {
    line-height: 1.8;
  }
}

/* ====================
  NEWS セクション
==================== */
#top-news {
  background-color: #fafafa;
}

#top-news .news-list {
  margin-left: auto; 
}

#top-news .news-item {
  padding: 40px 20px;
  margin: 10px 20px;
  background-color: #fff;
}

#top-news .news-item:last-child {
  border-bottom: none;
}

#top-news .news-item a {
  color: #000;
}

#top-news .news-date {
  font-size: 2rem;
  font-weight: bold;
  padding-right: 3rem;
}

#top-news .news-title {
  font-size: 2rem;
}

#top-news .news-more {
  margin-left: 10%; 
}

@media screen and (min-width: 1024px) {
  #top-news .news-list {
    border: none;
    font-size: 2rem;
    margin-left: auto;
    width: 70%;
    padding-top: 10px;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  #top-news .news-date {
    font-size: 3rem;
    padding-right: 5rem;
  }

  #top-news .news-title {
    font-size: 3rem;
  }
  #top-news .news-more {
    margin-left: 40%; 
  }

}



/* ====================
  COMPANY セクション
==================== */
#top-company .company-content {
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#top-company .company-left,
#top-company .company-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#top-company .company-item {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #f2761c;
}

#top-company .company-item:first-child {
  border-top: 1px solid #f2761c;
  padding-top: 20px;
}

#top-company .company-item:last-child {
  border-bottom: none;
}

#top-company .company-item .label {
  width: 30%;
}

#top-company .company-item .value {
  width: 70%;
}

#top-company .company-logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  justify-content: space-evenly;
}

#top-company .company-logo img {
  max-width: 240px;
  height: auto;
}

#top-company .withlogo {
  flex-wrap: wrap;
}

#top-company .pm-logo {
  padding-left: 40px;
}

#top-company .pm-logo img {
  max-width: 80px;
  height: auto;
}

#top-company .btn-readmore {
  margin-top: 0;
}

#top-company .sp {
  display: inline-block;
}

@media screen and (min-width: 1024px) {
  #top-company .company-content {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1440px;
    margin: auto;
  }

  #top-company .company-left,
  #top-company .company-right {
    width: 48%;
  }

  #top-company .company-item {
    font-size: 2rem;
  }

  #top-company .pm-logo img {
    max-width: 120px;
  }
}

/* ====================
  RECRUIT セクション
==================== */
#top-recruit .recruit-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin-top: 30px;
}

#top-recruit .recruit-text {
  line-height: 1.8;
}

#top-recruit .btn-readmore {
  font-size: 4rem;
  padding: 32px 30%;
  font-weight: 300;
}

#top-recruit .recruit-image img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 1024px) {
  #top-recruit .recruit-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: auto;
  }

  #top-recruit .recruit-text,
  #top-recruit .recruit-image {
    font-size: 2rem;
    width: 48%;
  }

  #top-recruit .recruit-image img {
    max-width: 100%;
    display: block;
  }
}

/* ====================
  CONTACT セクション
==================== */
#top-contact .contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

#top-contact .contact-box {
  background-color: #fafafa;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#top-contact .contact-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

#top-contact .contact-text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

#top-contact .btn-readmore {
  display: block;
  width: 80%;
  padding: 16px;
  font-weight: 300;
  color: #fff;
  margin: auto;
  margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
  #top-contact .contact-wrapper {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1440px;
    margin: auto;
  }

  #top-contact .contact-box {
    width: 48%;
  }

  #top-contact .contact-title {
    font-size: 3rem;
  }

  #top-contact .contact-text {
    font-size: 2rem;
  }
}

/* ====================
  ACCESS セクション
==================== */
#top-access .access-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

#top-access .access-left {
  flex: 1;
  margin-bottom: 20px;
}

#top-access .access-info {
  margin-bottom: 30px;
}

#top-access .access-office {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

#top-access .access-address {
  font-size: 1.6rem;
  line-height: 1.6;
}

#top-access .access-social {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

#top-access .access-social a img {
  width: 32px;
  height: 32px;
}

#top-access .access-social i {
  font-size: 32px;
  color: #000;
  transition: 0.3s;
}

#top-access .access-social i:hover {
  opacity: 0.6;
}

#top-access .access-logo {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-top: 20px;
}


#top-access .access-logo img {
  max-height: 50px;
  width: auto;
}

#top-access .access-map {
  flex: 1;
  text-align: right;
}

#top-access .access-map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

@media screen and (min-width: 1024px) {
  #top-access .access-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1440px;
    margin: auto;
  }

  #top-access .access-left,
  #top-access .access-map {
    width: 40%;
  }

  #top-access .access-left {
    padding-left: 40px;
  }

  #top-access .access-office {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 5px;
  }

  #top-access .access-address {
    font-size: 2rem;
    line-height: 1.6;
  }

  #top-access .access-logo img {
    max-height: 80px;
  }
}



/*--------------------------------------------------
 service its/ceb/drone共通 title
--------------------------------------------------*/
.service-title_outer {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
  padding-top: 120px;
}

.service-title-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
  z-index: 1;
}

.service-title_inner {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 2rem;
  margin-bottom: 10rem;
}

.service-title_en {
  font-size: 4rem;
  font-weight: 700;
}

.service-title_ja {
  font-size: 2rem;
  margin-top: 1rem;
}

.service-description_inner {
  position: relative;
  z-index: 2;
  padding: 0 5rem;
  max-width: 60%;
}

.service-description-title_main {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5rem;
}

.service-description-title_sub {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.service-description-text {
  font-size: 1.6rem;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .service-title_en {
    font-size: 10rem;
  }

  .service-title_ja {
    font-size: 2rem;
  }

  .service-description_inner {
    max-width: 60%;
  }

  .service-description-title_main {
    font-size: 4rem;
  }

  .service-description-title_sub {
    font-size: 3rem;
  }

  .service-description-text {
    font-size: 2rem;
  }
}



/*--------------------------------------------------
 service drone title
--------------------------------------------------*/
#drone .service-title_outer {
  justify-content: center;
  align-items: center;
}

#drone .service-title-img {
  filter: none;
}

#drone .service-title_inner {
  text-align: center;
  padding: 0;
  margin-bottom: 0;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 1.0);
}

#drone .service-title_en {
  font-size: 8rem;
  font-weight: 700;
}

#drone .service-title_ja {
  font-size: 3rem;
  margin-top: 2rem;
  font-weight: 700;
}



/*--------------------------------------------------
 service title its各Circle
--------------------------------------------------*/
#its .circle-wrapper {
  position: absolute;
  top: 50%;
  left: 60%;
  width: 300px;
  height: 300px;
  pointer-events: none;
}

#its .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
}

#its .circle-gray {
  width: 180px;
  height: 180px;
  background-color: #e6e6e6;
  top: -70px;
  right: -35px;
  z-index: 3;
}

#its .circle-orange {
  width: 320px;
  height: 320px;
  background-color: #f2761c;
  bottom: -30px;
  right: 0;
  z-index: 2;
}

#its .circle-yellow {
  width: 300px;
  height: 300px;
  background-color: #ffcc66;
  bottom: -135px;
  right: -200px;
  z-index: 1;
}



/*--------------------------------------------------
 service title ceb各Circle
--------------------------------------------------*/
#ceb .circle-wrapper {
  position: absolute;
  top: 70%;
  right: 0%;
  width: 300px;
  height: 300px;
  pointer-events: none;
}

#ceb .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
}

#ceb .circle-gray {
  width: 120px;
  height: 120px;
  background-color: #e6e6e6;
  bottom: -0px;
  right: 120px;
  z-index: 3;
}

#ceb .circle-orange {
  width: 200px;
  height: 200px;
  background-color: #f2761c;
  right: -120px;
  z-index: 2;
}

#ceb .circle-yellow {
  width: 170px;
  height: 170px;
  background-color: #ffcc66;
  top: 70px;
  right: 30px;
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  #ceb .circle-wrapper {
    position: absolute;
    top: 55%;
    right: 0%;
    width: 300px;
    height: 300px;
    pointer-events: none;
  }
  
  #ceb .circle-gray {
    width: 180px;
    height: 180px;
    background-color: #e6e6e6;
    bottom: -120px;
    right: 200px;
    z-index: 3;
  }

  #ceb .circle-orange {
    width: 300px;
    height: 300px;
    background-color: #f2761c;
    right: -200px;
    z-index: 2;
  }

  #ceb .circle-yellow {
    width: 280px;
    height: 280px;
    background-color: #ffcc66;
    top: 50px;
    right: 50px;
    z-index: 1;
  }
}



/*--------------------------------------------------
 service its/ceb/drone共通 field
--------------------------------------------------*/
.field {
  background-color: #fff;
  padding: 80px 20px;
}

.field-inner {
  width: 98%;
  margin: 0 auto;
}

.field-title {
  font-size: 4rem;
  font-weight: 700;
}

.field-subtitle {
  font-size: 2rem;
  margin-bottom: 40px;
}

.field-cards {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-items: center;
  max-width: 1440px;
  margin: auto;
}

.field-card {
  background-color: #f8f8f8;
  border-radius: 8px;
  width: 30%;
  max-width: 480px;
  min-width: 280px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.field-card:hover {
  transform: translateY(-5px);
}

.field-card h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem 0px;
}

.field-number {
  color: #f2761c;
  font-size: 2rem;
  font-weight: 700;
}

.field-heading {
  font-weight: bold;
}

.field-card p {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  height: 26rem;
}

.field-card img {
  width: 90%;
  height: 160px;
  border-radius: 6px;
  object-fit: cover;
  margin: 0px auto;
  margin-top: auto;
}

@media screen and (min-width: 1024px) {

  .field-title {
    font-size: 5rem;
  }

  .field-subtitle {
    font-size: 3rem;
  }

  .field-cards {
    flex-direction: row;
  }

  .field-card h3 {
    font-size: 3rem;
    padding: 3rem 0px;
  }

  .field-number {
    font-size: 3rem;
  }

  .field-card p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    height: 34rem;
  }
}

/*サービスページ内で一部レイアウト崩れが生じるため、文字サイズ変更に1クッション追加*/
@media screen and (min-width: 1280px) {
  .field-card p {
    font-size: 2rem;
  }
}



/*--------------------------------------------------
 service its achievements
--------------------------------------------------*/
.achievements {
  background-color: #fff;
  padding: 80px 20px;
}

.achievements-inner {
  width: 98%;
  margin: 0 auto;
}

.achievements-title {
  font-size: 4rem;
  font-weight: 700;
}

.achievements-subtitle {
  font-size: 2rem;
  margin-bottom: 40px;
}

.achievements-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.achievements-card {
  text-align: center;
  flex: 1 1 30%;
  max-width: 300px;
  padding-bottom: 20px;
}

.achievements-card-border {
  border-bottom: 1px dotted #999;
}

.icon-badge{
  width: 200px;
  height: 200px;
  background: #f2761c;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-badge img{
  padding-top: 16px;
  filter: brightness(0) invert(1);
}

.achievements-card img {
  width: 140px;
  height: auto;
  margin-bottom: 20px;
}

.achievements-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.achievements-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background-color: #ffdec5;
  color: #f2761c;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 1.4rem;
}

.achievements-button-wrapper {
  text-align: center;
}

.achievements-button {
  display: inline-block;
  border: 4px solid #f2761c;
  color: #f2761c;
  border-radius: 60px;
  padding: 24px 100px;
  font-size: 3rem;
  text-decoration: none;
  transition: 0.3s;
  background: #fff;
}

.achievements-button:hover {
  background-color: #f2761c;
  color: white;
}

@media screen and (min-width: 1024px) {
  .achievements-title {
    font-size: 5rem;
  }

  .achievements-subtitle {
    font-size: 3rem;
  }

  .achievements-cards {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
  }

  .achievements-card h3 {
    font-size: 2rem;
  }

  .tag {
    font-size: 1.6rem;
  }

  .achievements-button {
    font-size: 4rem;
  }
}



/*--------------------------------------------------
 service its/ceb/drone共通 achievementsモーダル
--------------------------------------------------*/
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  border-radius: 8px;
  width: 95%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.modal-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.modal-table-wrapper {
  overflow-x: auto;
}

.achievement-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
}

.achievement-table th,
.achievement-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  vertical-align: center;
}

.achievement-table th {
  text-align: center;
  font-weight: 700;
}

/* 色指定 */
.th-type { background-color: #ebebeb; }
.th-summary { background-color: #f8e4d8; }
.th-client { background-color: #ffbf91; }
.th-tech { background-color: #f9822c; }
.th-detail { background-color: #bc4f00; }

@media screen and (min-width: 1024px) {
  .modal-content {
    width: 90%;
  }
}



/*--------------------------------------------------
 service its request
--------------------------------------------------*/
.request {
  background-color: #fff;
  padding: 80px 20px;
}

.request-inner {
  width: 98%;
  margin: 0 auto;
}

.request-title {
  font-size: 4rem;
  font-weight: 700;
}

.request-subtitle {
  font-size: 2rem;
  margin-bottom: 40px;
}

.request-flow {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6rem;
  justify-content: center;
}

.request-step-outer {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.request-step {
  position: relative;
  text-align: center;
  width: 120px;
}

.request-step-number {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background-color: #f2761c;
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Icon circle */
.request-icon-circle {
  width: 100px;
  height: 100px;
  border: 2px solid #333;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.request-icon-circle img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: brightness(0) 
          saturate(100%) 
          invert(43%) 
          sepia(83%) 
          saturate(1182%) 
          hue-rotate(1deg) 
          brightness(100%) 
          contrast(96%);
}

.request-label {
  font-weight: bold;
  font-size: 2rem;
  color: #111;
}

/* PCレイアウト */
@media (min-width: 1024px) {
  .request-title {
    font-size: 5rem;
  }

  .request-subtitle {
    font-size: 3rem;
  }

  .request-step-outer {
    width: calc(25%);
  }

  .request-step {
    width: 230px;
  }

  .request-step-outer::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 70%;
    width: 60%;
    height: 3px;
    border-top: 3px dashed #999;
  }

  .request-step-outer:nth-child(4n)::after{
    display: none;
  }

  .request-step-number {
    left: 20%;
  }
}



/*--------------------------------------------------
 service ceb contactflow
--------------------------------------------------*/
.contactflow {
  padding: 80px 20px;
  background-color: #fff;
}

.contactflow-inner {
  width: 98%;
  margin: 0 auto;
}

.contactflow-title {
  font-size: 4rem;
  font-weight: 700;
}

.contactflow-subtitle {
  font-size: 2rem;
  margin-bottom: 40px;
}

.contactflow-boxes {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contactflow-box {
  border: 1px solid #000;
  width: 60%;
  min-width: 240px;
  padding: 30px 20px;
}

.contactflow-boxes .contactflow-line {
  width: 100px;
  height: 82px;
  background-color: #ccc;
}

.contactflow-content {
  display: flex;
  flex-direction: colum;
  align-items: center;
  gap: 20px;
}

.contactflow-icon {
  margin: auto 0px;
}

.contactflow-icon img {
  width: 60px;
  height: auto;
  filter: brightness(0) 
          saturate(100%) 
          invert(43%) 
          sepia(83%) 
          saturate(1182%) 
          hue-rotate(1deg) 
          brightness(100%) 
          contrast(96%);
}

.contactflow-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2e2e2e;
}

.contactflow-text p {
  font-size: 1.6rem;
  color: #2e2e2e;
  margin-bottom: 16px;
}

.contactflow-text .btn-orange {
  font-size: 1.2rem;
  padding: 16px;
  width: 120px;
  display: inline-block;
}

.contactflow-btn {
  text-align: center;
}

@media (min-width: 1024px) {
  .contactflow-title {
    font-size: 5rem;
  }

  .contactflow-subtitle {
    font-size: 3rem;
  }

  .contactflow-box {
    width: 60%;
    max-width: 860px;
    padding: 30px 20px;
  }

  .contactflow-text h3 {
    font-size: 3rem;
  }

  .contactflow-text p {
    font-size: 2rem;
  }

  .contactflow-icon img {
    width: 80px;
  }

  .contactflow-text .btn-orange {
    font-size: 2rem;
    padding: 24px;
    width: 240px;
  }

  .contactflow-btn {
    padding-right: 40px;
  }
}



/*--------------------------------------------------
 service drone basic
--------------------------------------------------*/
.dronefield {
  padding: 80px 20px;
  background-color: #fff;
}

.dronefield-outer {
  width: 98%;
  margin: 0 auto;
  text-align: center;
}

.dronefield-title {
  font-size: 4rem;
  font-weight: 700;
  padding-bottom: 20px
}

.dronefield-subtitle {
  font-size: 2rem;
  margin-bottom: 40px;
}

.dronefield-innertitle {
  font-size: 4rem;
  font-weight: 100;
  margin: 60px auto;
  padding: 20px 0;
  background-color: #f8f8f8;
}

.dronefield-cards {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-items: center;
  max-width: 1440px;
  margin: auto;
}

@media screen and (min-width: 1024px) {

  .dronefield-title {
    font-size: 5rem;
  }

  .dronefield-subtitle {
    font-size: 3rem;
  }

  .dronefield-innertitle {
    font-size: 5rem;
  }

  .dronefield-cards {
    flex-direction: row;
  }
}

/*--------------------------------------------------
 service drone attempt
--------------------------------------------------*/
.attempt-card {
  width: 30%;
  max-width: 480px;
  min-width: 280px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
}

.attempt-card-img {
  width: 60%;
  height: auto;
  margin: 0px auto;
}

.attempt-card-text h3 {
  font-size: 2rem;
  height: 4rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem 0px;
}

.attempt-card-text p {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  height: 14rem;
}

@media screen and (min-width: 1024px) {
  .attempt-card-img {
    height: 400px;
  }

  .attempt-card-text h3 {
    font-size: 3rem;
    padding: 3rem 0px;
    height: 6rem;
  }

  .attempt-card-text p {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    height: 26rem;
  }
}

/*--------------------------------------------------
 service drone video&image
--------------------------------------------------*/
.video-card{
  width: 100%;
  max-width: 560px;
  height: auto;
  position: relative;
}
.video-card::before{
  content: "";
  display: inline-block;
  padding-top: 56.25%;
}
.video-card iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.imagefield {
  max-width: 100%;
  gap: 30px;
}

.image-box {
  width: 80%;
  display: flex;
  align-items: stretch;
  gap: 10px
}

.image-one {
  width: 76%;
}

.image-one img{
  object-fit: cover;
}

.image-three {
  width:24%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.image-three img{
  object-fit: cover;
}

@media screen and (min-width: 1024px) {
  .video-card {
    width: 48%;
  }

  .imagefield {
    gap: 60px;
  }

  .image-box {
    width: 40%;
    display: flex;
    align-items: stretch;
    gap: 10px
  }
}


/*--------------------------------------------------
 service drone pilot
--------------------------------------------------*/
.pilot-card {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  box-sizing: border-box;
}

.pilot-card h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem 0px;
}

.pilot-card p {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  height: 14rem;
  text-align: center;
}

.pilot-card img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .pilot-card {
    height: 600px;
  }

  .pilot-card h3 {
    font-size: 3rem;
    padding: 3rem 0px;
  }

  .pilot-card p {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    height: 26rem;
  }
}



/*--------------------------------------------------
 service drone price
--------------------------------------------------*/
.pricefield {
  gap: 80px;
}

.price-card {
  width: 30%;
  max-width: 480px;
  min-width: 280px;
  height: 420px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  border: 1px solid #d9d9d9;
}

.price-card h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem 0px;
}

.price-price {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  padding: 40px 0;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
}

.price-color1 {
  background-color: #ffbd59;
}

.price-color2 {
  background-color: #f2761c;
}

.price-color3 {
  background-color: #bc4f00;
}

.price-tax {
  position: absolute;
  font-size: 3rem;
  font-weight: 700;
  right: 10%;
}

.price-card p {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: auto;
  padding: 0px 10px;
}

.price-card-recommendation {
  border: 5px solid #f2761c;
  height: 480px;
}

.recommendation {
  width: 100px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #f2761c;
  text-align: center;
  padding: 10px 0px;
  border: 1px solid #f2761c;
  margin-top: 20px;
  margin-left: 10px;
}

.price-supplement{
  font-size: 1.6rem;
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {
  .pricefield {
    gap: 30px;
    align-items: flex-end;
  }

  .price-card {
    width: 30%;
    max-width: 480px;
    min-width: 280px;
    height: 660px;
  }

  .price-card h3 {
    font-size: 4rem;
    padding: 3rem 0px;
  }

  .price-price {
    font-size: 5rem;
    font-weight: 700;
    padding: 60px 0;
    color: #fff;
    margin-bottom: 30px;
  }

  .price-tax {
    font-size: 4rem;
  }

  .price-card p {
    font-size: 3rem;
    line-height: 1.6;
  }

  .price-card-recommendation {
    height: 725px;
  }

  .recommendation {
    width: 120px;
    font-size: 2rem;
  }

  .price-supplement{
    font-size: 2rem;
    line-height: 1.4;
  }
}


/*--------------------------------------------------
 service drone option
--------------------------------------------------*/
.option-card {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  box-sizing: border-box;
}

.option-card-border {
  border-bottom: 5px dotted #d9d9d9;
}

.option-card-left {
  width: 30%;
  padding: 20px;
}

.option-card-left h3 {
  font-size: 2rem;
  font-weight: 700;
}

.option-card-left p {
  font-size: 2rem;
}

.option-card-right{
  width: 70%;
  padding: 20px;
}

.option-card-right p {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.option-card-bottom {
  width: 70%;
  padding: 20px 0px;
  display: flex;
  flex-direction: row;
  font-size: 1.6rem;
  text-align: left;
}

.option-card-bottom p {
  padding-right: 50px; 
}

.option-card-bottom-left {
  width: 40%;
  line-height: 1.2;
}

.option-card-bottom-right {
  width: 40%;
  line-height: 1.2;
}

.option-card-supplement{
  font-size: 1.6rem;
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {
  .optionfield {
    flex-direction: column;
  }

  .option-card-left {
    width: 45%;
  }

  .option-card-left h3 {
    font-size: 3rem;
  }

  .option-card-left p {
    font-size: 3rem;
  }

  .option-card-right {
    width: 55%;
  }

  .option-card-right p {
    font-size: 3rem;
    line-height: 1.6;
  }

  .option-card-bottom{
    width: 90%;
    font-size: 2.4rem;
  }

  .option-card-bottom-left {
    line-height: 1.4;
  }

  .option-card-bottom-right {
    line-height: 1.4;
  }

  .option-card-supplement{
    font-size: 2rem;
    line-height: 1.4;
  }
}



/*--------------------------------------------------
 service drone flow
--------------------------------------------------*/
.flowfield {
  max-width: 90%;
  flex-direction: column;
}

.flow-cards {
  max-width: 90%;
  gap: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-card h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem 0px;
}

.flow-icon-badge{
  width: 240px;
  height: 240px;
  background: #ffbd59;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  z-index: 2;
}

.flow-icon-badge img{
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  z-index: 3;
}

.flow-line {
  width: 20px;
  height: 100px;
  background-color: #ccc;
  margin: 0 auto;
  z-index: 1;
}

.flow-contact {
  position: relative;
}

.flow-btn {
  position: absolute;
  bottom: 10px;
}

.flow-btn .btn-flow {
  width: 200px;
  font-size: 1.6rem;
  padding: 1.6rem 0;
}

.flow-description {
  margin-top: 100px;
  text-align: left;
  width: 90%;
}

.flow-description h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem 0px;
}

.flow-description ul {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  list-style-type: disc;
}

.flow-description p{
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .flowfield {
    flex-direction: column;
  }

  .flow-cards {
    flex-direction: row;
    align-items: flex-start;
  }

  .flow-card h3 {
    font-size: 2.4rem;
  }

  .flow-line {
    width: 100px;
    height: 20px;
    margin: none;
    margin-top: 120px;
  }

  .flow-btn {
    position: absolute;
    bottom: -40px;
  }

  .flow-description {
    max-width: 1440px;
  }

  .flow-description h3 {
    font-size: 3rem;
    padding: 3rem 0px;
    text-align: left;
  }

  .flow-description ul {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    list-style-type: disc;
  }

  .flow-description p{
    font-size: 2rem;
  }
}


/*--------------------------------------------------
 service drone result
--------------------------------------------------*/
#photo-view .item {
    text-align: center;
    padding: 50px;
    padding-bottom: 20px;
    margin-bottom:80px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#photo-view .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.5, 1.5, 1);
}

#photo-view .owl-item img {
    transform-style: preserve-3d;
    max-width: 100%;
    margin: 0 auto 17px;
}

#photo-view .owl-dots .owl-dot.active span,
#photo-view .owl-dots .owl-dot:hover span {
    background: #f2761c;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#photo-view .owl-dots{
  display: inline-block;
  width: 100%;
  text-align: center;
}

#photo-view .owl-dots .owl-dot{
  display: inline-block;
}

#photo-view .owl-dots .owl-dot span {
    background: #f2761c;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}




/*--------------------------------------------------
 service drone faq
--------------------------------------------------*/
.faq {
  padding: 80px 20px;
  color: #fff;
  background-color: #545454;
}

.faq-outer {
  width: 98%;
  margin: 0 auto;
  text-align: center;
}


.faq-cards {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 60px auto;
}

.faq-card {
  width: 80%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  box-sizing: border-box;
}

.faq-card ul {
  font-size: 1.6rem;
  list-style-type: disc;
}

.faq-question {
  margin-top: 30px;
}

.faq-answer {
  list-style-type: none;
  margin: 10px 0;
}

.faq-none {
  display: none;
}


@media screen and (min-width: 1024px) {
  .faq-cards {
    flex-direction: row;
    justify-content: space-evenly;
    padding-left: 10%;
  }

  .faq-card {
    width: 40%;
  }

  .faq-card h3 {
    font-size: 3rem;
  }

  .faq-card p {
    font-size: 2rem;
  }
}



/*--------------------------------------------------
 service its/ceb/drone共通 ctaボタン
--------------------------------------------------*/
.btn-orange {
  display: inline-block;
  background-color: #f2761c;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  padding: 2rem 0;
  width: 60%;
  min-width: 240px;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  margin: auto;
}

.btn-orange:hover {
  background-color: #d24e00;
}

.cta-section {
  margin: 120px auto;
  text-align: center;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .btn-orange {
    font-size: 3rem;
    padding: 3rem 0;
    width: 480px;
    border-radius: 100px;
  }

  .cta-inner {
    gap: 20px;
    flex-direction: row;
  }
}



/*--------------------------------------------------
 recruit
--------------------------------------------------*/
#recruit .page-title_outer {
  width: 100%;
  background-color: #f2761c;
}

#recruit .page-title_inner {
  margin: 0;
  background-color: #f2761c;
}

#recruit .page-title {
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
}

#recruit .page-title span {
  font-size: 4rem;
  font-weight: 300;
  margin-top: 1rem;
  margin-left: 2rem;
}

#recruit .description {
  padding: 70px 20px;
  background-color: #fff;
}

#recruit .description-title_center {
  color: #2e2e2e;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

#recruit .description-text_center {
  color: #2e2e2e;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
}

#recruit .section-inner_05 {
    padding: 70px 20px;
    background-color: #fff;
    font-family: heisei-kaku-gothic-std, sans-serif;
}

#recruit .section-text_title_org {
  width: 100%;
  font-size: 1.45rem;
  font-weight: bold;
  margin-bottom: 20px;
}

#recruit .profile-item {
    color: #2e2e2e;
    font-size: 1.4rem;
    font-weight: 300;
    border-bottom: solid 1px #f8601e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    line-height: 2;
}

#recruit .profile-item:first-of-type {
    padding-top: 20px;
    border-top: solid 1px #f8601e;
}

#recruit .profile-title {
  margin-bottom: 5px;
}

#recruit .profile-detail {
}

#recruit .flow-list {
  margin-bottom: 20px;
}

#recruit .flow-item_inner01 {
  position: relative;
  width: 100%;
  background-color: #fcc0a7;
  padding: 20px;
  box-sizing: border-box;
}

#recruit .flow-item_inner02 {
  position: relative;
  width: 100%;
  background-color: #f5f5f5;
  padding: 20px;
  box-sizing: border-box;
}

#recruit .flow-item_inner01:not(:first-child):after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border-top: 30px solid #f5f5f5;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  box-sizing: border-box;
}

#recruit .flow-item_inner02::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border-top: 30px solid #fcc0a7;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  box-sizing: border-box;
}

#recruit .flow-item_step {
  color: #2e2e2e;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

#recruit .flow-item {
  color: #2e2e2e;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
}

#recruit .flow-note {
  color: #2e2e2e;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 10px;
}

#recruit .flow-note:last-of-type {
  margin-bottom: 40px;
}

#recruit .section-inner_01 {
  padding: 70px 20px;
  background-color: #fff;
}

#recruit .section-title {
  color: #2e2e2e;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 45px;
}

#recruit .section-inner_02,
#recruit .section-inner_05 {
  padding: 70px 20px;
  background-color: #fff;
}

#recruit .section-title_center {
  color: #2e2e2e;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

#recruit .section-text_center {
  color: #2e2e2e;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
}

#recruit .form-item {
  margin-bottom: 15px;
}

#recruit .form-title {
  color: #f8601e;
  font-weight: bold;
  margin-bottom: 10px;
}

#recruit .caution {
  display: inline-block;
  width: 50px;
  margin-left: 10px;
  padding: 3px 0;
  border-radius: 4px;
  background-color: #f8601e;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  vertical-align: middle;
}

#recruit .form-parts {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  border: solid 1px #e8e8e8;
  background-color: #e8e8e8;
}

#recruit .form-parts_text {
  width: 100%;
  padding: 9px 8px;
  border-radius: 4px;
  color: #2e2e2e;
  font-size: 1.6rem;
}

#recruit .form-parts_checkbox {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  margin-right: 10px;
  vertical-align: -13px;
}

#recruit .form-parts_checkbox:checked {
  background-color: #f8601e;
}

#recruit .form-item_check {
  text-align: center;
  margin-bottom: 20px;
}

#recruit .form-policy {
  color: #2e2e2e;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5;
  height: 8em;
  border-radius: 4px;
  overflow: scroll;
  border: #c7c7c7 1px solid;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

#recruit .section-text_title_org {
  width: 100%;
  font-size: 1.45rem;
  font-weight: bold;
  margin-bottom: 20px;
}

#recruit .section-text_policy {
  width: 100%;
  font-weight: bold;
  margin-bottom: 20px;
}





@media screen and (min-width: 1024px) {
  #recruit .page-title {
    font-size: 10rem;
    padding-top: 100px;
  }

  #recruit .description {
    max-width: 50%;
    min-width: 700px;
    margin: auto;
  }

  #recruit .description-title_center {
    font-size: 4rem;
  }

  #recruit .description-text_center {
    font-size: 2rem;
    font-weight: 700;
  }

  #recruit .section-inner_05 {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }

  #recruit .profile-item {
    display: flex;
    justify-content: flex-start;
  }

  #recruit .profile-title {
      width: 210px;
  }

  #recruit .profile-detail_location,
  #recruit .profile-detail_terms {
    display: flex;
    flex-direction: column;
  }

  #recruit .section-inner_flow {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
  }

  #recruit .recruit-img_inner {
    display: flex;
    flex-direction: column;
    padding: 140px 20px 0;
    box-sizing: border-box;
  }

  #recruit .recruit-img02 {
    width: auto;
    height: 290px;
    /*		width: 50%;*/
    /*		margin: 140px auto auto auto;*/
  }

  #recruit .section-inner_01,
  #recruit .section-inner_02,
  #recruit .section-outer_04,
  #recruit .section-inner_policy,
  #recruit .section-inner_news,
  #recruit .section-inner_what-we-do {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }

  #recruit .section-inner_01.recruit {
    width: 50%;
  }

  #recruit .section-inner_02.contact {
    max-width: 700px;
  }

  #recruit .form-policy {
    height: 16em;
  }
}


/*--------------------------------------------------
 contact
--------------------------------------------------*/
#contact .page-title_outer {
  width: 100%;
  background-color: #f2761c;
}

#contact .page-title_inner {
  margin: 0;
  background-color: #f2761c;
}

#contact .page-title {
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
}

#contact .page-title span {
  font-size: 4rem;
  font-weight: 300;
  margin-top: 1rem;
  margin-left: 2rem;
}

#contact .description {
  padding: 70px 20px;
}

#contact .description-title_center {
  color: #2e2e2e;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

#contact .description-text_center {
  color: #2e2e2e;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
}

#contact .description-text_left {
  color: #2e2e2e;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: left;
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 40px;
}

#contact .form-parts {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  border: solid 1px #e8e8e8;
  background-color: #e8e8e8;
}

#contact .form-parts_text {
  width: 100%;
  padding: 9px 8px;
  border-radius: 4px;
  color: #2e2e2e;
  font-size: 1.6rem;
}

#contact .form-parts_checkbox {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  margin-right: 10px;
  vertical-align: -13px;
}

#contact .form-parts_checkbox:checked {
  background-color: #f2761c;
}

#contact .form-title {
  color: #2e2e2e;
  font-weight: bold;
  margin-bottom: 1rem;
}

#contact .form-item {
  margin-bottom: 15px;
}

#contact .form-item_check {
  text-align: center;
  margin-bottom: 20px;
}

#contact .form-description {
  margin: 0.5rem 0;
  font-size: 1.6rem;
  color: #2e2e2e;
}

#contact .caution_space {
  display: inline-block;
  width: 6rem;
  height: 2rem;
  vertical-align: middle;
}

#contact .caution {
  display: inline-block;
  font-size: 12px;
  width: auto;
  color: #f2761c;
  background-color: #fff;
  border: 2px solid #f2761c;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  margin-left: 0;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  border-radius: 0px;
}

#contact .form-policy {
  color: #2e2e2e;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  height: 16rem;
  border-radius: 4px;
  overflow: scroll;
  border: #c7c7c7 1px solid;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

#contact .form-policy_title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

@media screen and (min-width: 1024px) {
  #contact .page-title {
    font-size: 10rem;
    padding-top: 100px;
  }

  #contact .description {
    max-width: 50%;
    min-width: 700px;
    margin: auto;
  }

  #contact .form-policy {
    height: 32rem;
  }

  #contact .thank_you {
    max-width: 50%;
    min-width: 700px;
    margin: auto;
  }
}



/*--------------------------------------------------
 news
--------------------------------------------------*/
#news {
  background-color: #f9f9f9;
}

#news .page-title_outer {
  width: 100%;
  background-color: #f2761c;
}

#news .page-title_inner {
  margin: 0;
  background-color: #f2761c;
}

#news .page-title {
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
}

#news .page-title span {
  font-size: 4rem;
  font-weight: normal;
  margin-top: 1rem;
  margin-left: 2rem;
}

#news .news-list {
  list-style: none;
  margin: 0px auto;
  padding: 20px 0px;
  width: 90%;
}

#news .section-inner_news .news-item {
  scroll-margin-top: 100px;
}

#news .news-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-bottom: solid 1px #ccc;
}

#news .news-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #f2761c;
  transition: width 0.4s ease;
}

#news .news-item:hover {
  background-color: #fff;
  border-bottom: none;
}

#news .news-item:hover::after {
  width: 100%;
}

#news .news-date-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

#news .news-date {
  font-weight: bold;
  font-size: 2rem;
  flex-shrink: 0;
}

#news .news-label {
  background-color: #f47b20;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  padding: 4px 10px;
  border-radius: 20px;
  margin: 0px 20px;
  flex-shrink: 0;
}

#news .news-header {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

#news .news-title {
  font-size: 2rem;
  flex: 1;
}

#news .news-text {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}

#news .news-text.open {
  display: block;
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

#news .news-pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0 40px;
}
#news .news-pagination nav {
  display: inline-block;
}
#news .news-pagination .pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#news .news-pagination .pagination li a,
#news .news-pagination .pagination li span {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-size: 1.4rem;
}
#news .news-pagination .pagination li a:hover {
  background: #f8f8f8;
}
#news .news-pagination .pagination li.active span {
  background: #f2761c;
  border-color: #f2761c;
  color: #fff;
}
#news .news-pagination .pagination li.disabled span {
  opacity: 0.5;
}



@media screen and (min-width: 1024px) {
  #news .page-title {
    font-size: 10rem;
    padding-top: 100px;
  }

  #news .news-list {
    padding: 50px 0px;
    width: 80%;
  }

  #news .news-item {
    gap: 0px;
    padding: 50px 30px;
  }
}




/*--------------------------------------------------
 company-philosophy
--------------------------------------------------*/
#company-philosophy .page-title_outer {
  width: 100%;
  background-color: #f2761c;
}

#company-philosophy .page-title_inner {
  margin: 0;
  background-color: #f2761c;
}

#company-philosophy .page-title {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
}

#company-philosophy .page-title span {
  font-size: 4rem;
  font-weight: 300;
  margin-top: 1rem;
  margin-left: 2rem;
}

#company-philosophy section {
  display: flex;
}

#company-philosophy .cp-inner {
  padding: 100px 20px 0;
  background-color: #fff;
}

#company-philosophy .cp-title {
  color: #2e2e2e;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 45px;
}

#company-philosophy .cp-text_title {
  color: #2e2e2e;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.5;
}

#company-philosophy .cp-text {
  color: #2e2e2e;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
}

#company-philosophy .cp-text2 {
  color: #2e2e2e;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 25px;
}

@media screen and (min-width: 1024px) {
  #company-philosophy .page-title {
    font-size: 10rem;
    padding-top: 100px;
  }

  #company-philosophy .cp-outer {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }

  #company-philosophy .cp-img {
    height: 20vw;
    object-fit: cover;
  }

  #company-philosophy .cp-img.last {
    padding-bottom: 70px;
  }
}


/*--------------------------------------------------
 policy/terms/sitemap mobile用
--------------------------------------------------*/
.section-inner_policy {
  padding: 40px 20px;
  background-color: #fff;
}
.page-title_policy {
  color: #2e2e2e;
  font-size: 2rem;
  font-weight: bold;
  padding: 50px 20px;
}
.section-text_title_org {
  width: 100%;
  font-size: 1.45rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.section-text_title {
  width: 100%;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.section-text_policy {
  width: 100%;
  font-weight: bold;
  margin-bottom: 20px;
}
.sitemap-item {
  margin-bottom: 10px;
}
.sitemap-1 > a {
  color: #2e2e2e;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 3;
}
.sitemap-2 > a {
  color: #707070;
  line-height: 2.5;
}
.sitemap-2::before {
  content: "∟";
  color: #707070;
  font-size: 1.2rem;
  margin-right: 5px;
}

@media screen and (min-width: 1024px) {
  /*policy*/
  .section-inner_policy {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }

  /*sitemap*/
  .sitemap-item {
    width: 33.333%;
    margin-bottom: 40px;
  }
}



/*--------------------------------------------------
add policy mobile
--------------------------------------------------*/
#about_privacy{
  counter-reset: cnt1;
}
.section-title{
    font-size: 1.4em;
    margin-bottom: 1.0em;
}
.section-text_policy_number{
    font-size: 1.0em;
    font-weight: bold;
    margin-bottom: 1.0em;
}
.section-text_policy_number::before {
    counter-increment: cnt1+1;
    content: "("counter(cnt1)") ";
}
.privacy-text{
    font-size: 1.0em;
    font-weight: 300;
    margin-bottom: 2.0em;
}
.privacy-table-subject{
    margin-top: 1.0em;
}
.privacy-table{
    width: 100%;
    border-collapse: collapse;
    border-style: solid;
    border-width: 1px;
}
.privacy-table th,td{
    border-style: solid;
    border-width: 1px;
    padding: 0.5em;
    font-weight: 300;
}
.privacy-table th,td .column{
    font-weight: bold;
    border-collapse: collapse;
}
.privacy-text dt::after{
    content: ":";
}
.privacy-text dl {
    display: flex;
    flex-wrap: wrap;
}
.privacy-text dl dt {
    width: 40%;
    font-weight: 300;
}
.privacy-text dl dd {
    width: 60%;
    font-weight: 300;
}

@media screen and (min-width: 1024px) {
  #about_privacy{
    counter-reset: cnt1;
  }
  .section-title{
      font-size: 1.4em;
      margin-bottom: 1.0em;
  }
  .section-text_policy_number{
      font-size: 1.0em;
      font-weight: bold;
      margin-bottom: 1.0em;
  }
  .section-text_policy_number::before {
      counter-increment: cnt1+1;
      content: "("counter(cnt1)") ";
  }
  .privacy-text{
      font-size: 1.0em;
      font-weight: 300;
      margin-bottom: 2.0em;
  }
  .privacy-table-subject{
      margin-top: 1.0em;
  }
  .privacy-table{
      width: 100%;
      border-collapse: collapse;
      border-style: solid;
      border-width: 1px;
  }
  .privacy-table th,td{
      border-style: solid;
      border-width: 1px;
      padding: 0.5em;
      font-weight: 300;
  }
  .privacy-table th,td .column{
      font-weight: bold;
      border-collapse: collapse;
  }
  .privacy-text dt::after{
      content: ":";
  }
  .privacy-text dl {
      display: flex;
      flex-wrap: wrap;
  }
  .privacy-text dl dt {
      width: 20%;
      font-weight: 300;
  }
  .privacy-text dl dd {
      width: 80%;
      font-weight: 300;
  }
}


/*--------------------------------------------------
thank you section
--------------------------------------------------*/

#thank_you .thank_you {
  padding: 70px 20px;
  background-color: #f8f8f8;
  padding-bottom: 240px;
}

#thank_you .thank_you-title_center {
  color: #2e2e2e;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

#thank_you .thank_you-text_center {
  color: #2e2e2e;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  #contact .thank_you {
    max-width: 50%;
    min-width: 700px;
    margin: auto;
  }
}



/* まずは全体のセーフティネット（対応ブラウザなら clip を推奨） */
html, body { overflow-x: clip; } /* 互換優先なら hidden でもOK */

/* --- 見出しの負のマージンをやめる --- */
.section-headings { margin-left: 0; }

/* --- CEB タイトルの円：レイアウト幅を増やさない transform でズラす --- */
#ceb .circle-wrapper { right: 0; }               /* 位置基準は右端 */
#ceb .circle-orange { right: 0; transform: translateX(30%); }
@media (min-width: 1024px){
  #ceb .circle-orange { right: 0; transform: translateX(66%); }
}
/* transform は視覚的に動かすだけでスクロール幅を増やしません */

/* --- リクエスト工程の破線を親の中に収める --- */
@media (min-width: 1024px){
  .request-step-outer::after{
    left: calc(100% - 30px);  /* 次の要素方向に少しだけ伸ばす */
    width: 30px;               /* 60% → 30px 程度に制限（必要なら調整） */
  }
}

