@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif !important;
  color: #333333;
  line-height: 1.78;
  letter-spacing: 0.08em;
  font-size: 16px;
  overflow-x: hidden;
  background-color: #FFFFFF;
}

body.menu-open {
  overflow: hidden;
}

.u-wrapper {
  padding: 80px 80px;
}
@media screen and (max-width: 1024px) {
  .u-wrapper {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .u-wrapper {
    padding: 0 20px;
  }
}

.u-sectiontitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.u-sectiontitle h2 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
}
@media screen and (max-width: 1024px) {
  .u-sectiontitle h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .u-sectiontitle h2 {
    font-size: 32px;
  }
}

.u-btn {
  background-color: #748DAE;
  border-radius: 50px;
  padding: 20px 80px;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.u-btn:hover {
  background-color: #577397;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.header {
  position: fixed;
  width: 100%;
  background-color: #FFF;
  -webkit-box-shadow: 2px 2px 4px 4px #c7c7c7;
          box-shadow: 2px 2px 4px 4px #c7c7c7;
  z-index: 100;
  top: 0;
  left: 0;
}
.header_wrapper {
  height: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 40px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header_wrapper {
    height: 88px;
    width: 100%;
    padding: 0 20px;
  }
}
.header_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 1.12;
}
.header_content_title {
  font-size: 48px;
  font-weight: normal;
  color: #000;
  text-shadow: 4px 4px 4px #c7c7c7;
}
@media screen and (max-width: 767px) {
  .header_content_title {
    font-size: 32px;
    font-weight: normal;
    color: #000;
    text-shadow: 4px 4px 4px #c7c7c7;
  }
}
.header_content_subtitle {
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .header_nav {
    display: none;
  }
}
.header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.header_list:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header_list:nth-child(6) {
  color: #fff;
}
.header_btn {
  display: inline-block;
  background-color: #748DAE;
  border-radius: 50px;
  padding: 10px 40px;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.header_btn:hover {
  background-color: #577397;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hamburger_toggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hamburger_toggle {
    display: block;
    position: relative;
    width: 50px;
    height: 44px;
    cursor: pointer;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .hamburger_toggle {
    width: 35px;
    height: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .hamburger_toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #748DAE;
    border-radius: 4px;
  }
}
@media screen and (max-width: 1024px) {
  .hamburger_toggle span:nth-of-type(1) {
    top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .hamburger_toggle span:nth-of-type(2) {
    top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger_toggle span:nth-of-type(2) {
    top: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .hamburger_toggle span:nth-of-type(3) {
    bottom: 0;
  }
}
.hamburger_toggle_mask {
  display: none;
}

.hamburger_mask {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hamburger_mask_nav {
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .hamburger_mask ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 1024px) {
  .hamburger_mask.active {
    display: block;
    height: 100vh;
    padding: 40px;
  }
}

/*=============================
.btn-trigger
=============================*/
@media screen and (max-width: 1024px) {
  .hamburger_toggle,
  .hamburger_toggle span {
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

/*=============================
#btn17
=============================*/
#js-open::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
  content: "";
  width: 80px;
  height: 80px;
  margin: -45px 0 0 -45px;
  border-radius: 50%;
  -webkit-transition: all 0.75s;
  transition: all 0.75s;
  border: 2px solid #748DAE;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #js-open::after {
    width: 55px;
    height: 55px;
    right: -8px;
    margin: -28px 0 0 -28px;
  }
}

#js-open.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(45deg);
  transform: translateY(20px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  #js-open.active span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}

#js-open.active span:nth-of-type(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 0.8s forwards;
  animation: active-btn17-bar02 0.8s forwards;
}

@-webkit-keyframes active-btn17-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-btn17-bar02 {
  100% {
    height: 0;
  }
}
#js-open.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(-45deg);
  transform: translateY(-20px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  #js-open.active span:nth-of-type(3) {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-45deg);
            transform: translateY(50%) rotate(-45deg);
  }
}

#js-open.active::after {
  border: 2px solid #748DAE;
  opacity: 1;
  -webkit-transition: all 0.75s;
  transition: all 0.75s;
}

.firstview {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 104px;
}
@media screen and (max-width: 767px) {
  .firstview {
    margin-top: 88px;
  }
}
.firstview_image {
  width: 100%;
  height: auto;
  display: block;
}
.firstview_image_wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* 上 → 中央 → 下 の縦並び */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .message {
    padding: 20px;
  }
}
.message_banner_left {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  left: 0;
  /* 左端に固定 */
}
@media screen and (max-width: 1024px) {
  .message_banner_left {
    position: static;
    /* absolute 解除 */
    -webkit-transform: none !important;
            transform: none !important;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
}
.message_banner_left p {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-size: 32px;
  color: #c7c7c7;
  margin: 40px 0;
}
@media screen and (max-width: 1024px) {
  .message_banner_left p {
    -webkit-transform: rotate(0deg) !important;
            transform: rotate(0deg) !important;
    font-size: 20px;
    margin: 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .message_banner_left p {
    margin: 0 40px;
  }
}
.message_banner_right {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  right: 0;
  /* 右端に固定 */
}
@media screen and (max-width: 1024px) {
  .message_banner_right {
    position: static;
    /* absolute 解除 */
    -webkit-transform: none !important;
            transform: none !important;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
}
.message_banner_right p {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 32px;
  color: #c7c7c7;
  margin: 40px 0;
}
@media screen and (max-width: 1024px) {
  .message_banner_right p {
    -webkit-transform: rotate(0deg) !important;
            transform: rotate(0deg) !important;
    font-size: 20px;
    margin: 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .message_banner_right p {
    margin: 0 40px;
  }
}
.message_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 480px;
  height: 500px;
  background-color: #F3F3F3;
  border-radius: 40%;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 50px 10px;
}
@media screen and (max-width: 1024px) {
  .message_content {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .message_content {
    width: 100%;
    height: auto;
    max-width: 480px;
    border-radius: 10px;
    padding: 10px;
  }
}
.message_content p {
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  color: #000;
  text-shadow: 0px 4px 4px #c7c7c7;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  .message_content p {
    font-size: 14px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .message_content br {
    display: none;
  }
}
.message_red {
  color: #FF4E48;
}
.message_bule {
  color: #748DAE;
}

@media screen and (max-width: 1024px) {
  .banner_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    /* 縦→横 */
    white-space: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* アニメーション */
.message_banner_left .banner_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: banner-up 10s linear infinite;
          animation: banner-up 10s linear infinite;
}
@media screen and (max-width: 1024px) {
  .message_banner_left .banner_inner {
    -webkit-animation: marquee-right 15s linear infinite;
            animation: marquee-right 15s linear infinite;
  }
}

.message_banner_right .banner_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: banner-down 10s linear infinite;
          animation: banner-down 10s linear infinite;
}
@media screen and (max-width: 1024px) {
  .message_banner_right .banner_inner {
    -webkit-animation: marquee-left 15s linear infinite;
            animation: marquee-left 15s linear infinite;
  }
}

@-webkit-keyframes banner-up {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@keyframes banner-up {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@-webkit-keyframes banner-down {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes banner-down {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes marquee-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes marquee-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* 右→左 */
@-webkit-keyframes marquee-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes marquee-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.fixedbg {
  height: 300px;
  width: 100%;
  background-image: url(../img/fixbg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .fixedbg {
    background-position: top;
  }
}

/* iOS Safari のみ適用 */
@supports (-webkit-touch-callout: none) {
  .fixedbg {
    background-attachment: scroll;
  }
}
.service {
  padding: 80px 80px;
}
@media screen and (max-width: 1024px) {
  .service {
    padding: 80px 20px;
  }
}
.service_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .service_wrapper {
    gap: 40px;
  }
}
.service_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service_head h2 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .service_head h2 {
    font-size: 24px;
  }
}
.service_head h2 br {
  display: none;
}
@media screen and (max-width: 767px) {
  .service_head h2 br {
    display: block;
  }
}
.service_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.service_circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #9ECAD6;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: #9ECAD6 3px solid;
  -webkit-transition: background-color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, border 0.3s ease;
  -webkit-box-shadow: 4px 4px 2px 2px #c7c7c7;
          box-shadow: 4px 4px 2px 2px #c7c7c7;
}
@media screen and (max-width: 1024px) {
  .service_circle {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .service_circle {
    width: 120px;
    height: 120px;
  }
}
.service_circle:hover {
  background-color: #ffffff;
  border: #9ECAD6 3px solid;
}
.service_circle:hover p {
  color: #748DAE;
}
.service_circle p {
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .service_circle p {
    font-size: 14px;
  }
}

.works {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 120px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 0px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .works {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .works {
    padding: 40px 20px;
    gap: 20px;
  }
}
.works_titleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1280px) {
  .works_titleBox {
    gap: 20px;
  }
}
.works_titleBox h2 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
}
@media screen and (max-width: 767px) {
  .works_titleBox h2 {
    font-size: 24px;
  }
}
.works_titleBox p {
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .works_titleBox p {
    margin: 0;
  }
}
@media screen and (max-width: 1280px) {
  .works_titleBox a {
    display: none;
  }
}
.works_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.works_slider {
  position: relative;
  width: 540px;
  height: 270px;
  margin: 50px auto;
  -webkit-perspective: 1200px;
          perspective: 1200px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media screen and (max-width: 1280px) {
  .works_slider {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .works_slider {
    width: 280px;
    height: 180px;
  }
}
.works_slide {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  aspect-ratio: 1.618/1;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 4px 4px #c7c7c7;
          box-shadow: 2px 2px 4px 4px #c7c7c7;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.works_slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.works_btn {
  display: none;
}
@media screen and (max-width: 1280px) {
  .works_btn {
    display: block;
  }
}

/* 表示中のスライド */
.works_slide.active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
  z-index: 3;
}

/* 左にあるスライド */
.works_slide.left {
  -webkit-transform: translateX(-40%) scale(0.8);
          transform: translateX(-40%) scale(0.8);
  opacity: 0.6;
  z-index: 2;
}

/* 右にあるスライド */
.works_slide.right {
  -webkit-transform: translateX(40%) scale(0.8);
          transform: translateX(40%) scale(0.8);
  opacity: 0.6;
  z-index: 1;
}

.price {
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(23, 0, 255, 0.0509803922) 5px, transparent 5px);
  background-position: 0 0;
  background-size: 30px 30px;
}
.price_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .price_wrapper {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 767px) {
  .price_wrapper {
    padding: 40px 20px;
  }
}
.price_titleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price_titleBox h2 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
}
@media screen and (max-width: 767px) {
  .price_titleBox h2 {
    font-size: 24px;
  }
}
.price_titleBox p {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .price_titleBox p {
    margin-bottom: 0;
  }
}
.price_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.price_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #FFF;
  border: #9ECAD6 4px solid;
  border-radius: 20px;
  padding: 20px;
  gap: 10px;
  width: 95%;
  max-width: 1280px;
  -webkit-box-shadow: 4px 4px 2px 2px #c7c7c7;
          box-shadow: 4px 4px 2px 2px #c7c7c7;
}
@media screen and (max-width: 1024px) {
  .price_card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 720px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .price_card {
    min-width: 280px;
  }
}
.price_card:nth-of-type(3) {
  border: #FFD966 4px solid;
}
.price_card_title {
  border-bottom: #9ECAD6 3px solid;
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1280px) {
  .price_card_title {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .price_card_title {
    width: 100%;
  }
}
.price_card_title h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #9ECAD6;
}
.price_card_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border-bottom: #9ECAD6 3px solid;
}
@media screen and (max-width: 767px) {
  .price_card_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.price_card_price {
  font-size: 24px;
  font-weight: 900;
}
.price_card_price span {
  font-size: 12px;
}
.price_card_text {
  text-align: center;
}

.line_yellow {
  border-bottom: #FFD966 3px solid;
}
.line_yellow h3 {
  color: #FFD966;
}

.flow_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 80px 80px;
}
@media screen and (max-width: 1024px) {
  .flow_wrapper {
    padding: 80px 0;
  }
}
.flow_titleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flow_titleBox h2 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
}
@media screen and (max-width: 767px) {
  .flow_titleBox h2 {
    font-size: 24px;
  }
}
.flow_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.flow_card_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 20px;
  gap: 20px;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .flow_card_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.flow_card_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 20px;
  gap: 20px;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .flow_card_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.flow_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 240px;
}
.flow_card_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flow_card_text h4 {
  font-size: 24px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
}
@media screen and (max-width: 767px) {
  .flow_card_text h4 {
    font-size: 20px;
  }
}
.flow_card_text p {
  text-align: center;
}
.flow_card_img {
  height: 112px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .flow_card_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.flow_card_img img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.flow_arrow {
  height: 40px;
  width: auto;
  margin: auto 0;
}
@media screen and (max-width: 767px) {
  .flow_arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 20px;
    height: auto;
  }
}

.faq {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(20%, #cfe5eb), color-stop(45%, #9ecad6), color-stop(80%, #cfe5eb), to(#ffffff));
  background-image: linear-gradient(#ffffff, #cfe5eb 20%, #9ecad6 45% 55%, #cfe5eb 80%, #ffffff);
}
.faq_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  padding: 80px 40px;
}
@media screen and (max-width: 767px) {
  .faq_wrapper {
    padding: 40px 20px;
    gap: 20px;
  }
}
.faq_titleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq_titleBox h2 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
}
@media screen and (max-width: 767px) {
  .faq_titleBox h2 {
    font-size: 24px;
  }
}
.faq_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq_content_qwestion {
  max-width: 800px;
  margin-bottom: 7px;
  background-color: #ffffff;
  border-radius: 25px;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
}
.faq_content_qwestion summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .faq_content_qwestion summary {
    padding: 10px 20px;
  }
}
.faq_content_qwestion summary::-webkit-details-marker {
  display: none;
}
.faq_content_qwestion summary::after {
  -webkit-transform: translateY(-25%) rotate(45deg);
          transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #cfcfcf;
  border-right: 3px solid #cfcfcf;
  content: "";
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

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

.faq_content_qwestion p {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #333333;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

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

.news_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 80px 80px;
}
@media screen and (max-width: 1024px) {
  .news_wrapper {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  .news_wrapper {
    padding: 40px 20px;
  }
}
.news_titleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news_titleBox h2 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
}
@media screen and (max-width: 767px) {
  .news_titleBox h2 {
    font-size: 24px;
  }
}
.news_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .news_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news_top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.news_top img {
  width: 350px;
  height: auto;
  aspect-ratio: 1.618/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  -webkit-box-shadow: 2px 2px 4px 4px #c7c7c7;
          box-shadow: 2px 2px 4px 4px #c7c7c7;
}
@media screen and (max-width: 767px) {
  .news_top img {
    width: 200px;
  }
}
.news_top_textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5em;
}
@media screen and (max-width: 767px) {
  .news_top_textBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.news_archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .news_archive {
    width: 80%;
  }
}
.news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .news_list {
    width: 100%;
  }
}
.news_item {
  border-bottom: #c7c7c7 1px solid;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  justify-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .news_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.news_item:first-child {
  border-top: #c7c7c7 1px solid;
}
@media screen and (max-width: 767px) {
  .news_btn {
    width: 100%;
    padding: 20px 10px;
  }
}

.contact_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 80px 80px;
}
@media screen and (max-width: 1024px) {
  .contact_wrapper {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 767px) {
  .contact_wrapper {
    padding: 40px 20px;
  }
}
.contact_titleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_titleBox h2 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
}
@media screen and (max-width: 767px) {
  .contact_titleBox h2 {
    font-size: 24px;
  }
}
.contact_titleBox p {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contact_titleBox p {
    margin-bottom: 0;
  }
}
.contact_content {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .contact_content {
    width: 100%;
  }
}
.contact_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact_item {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contact_item:nth-of-type(6) {
    margin-bottom: 0;
  }
}
.contact_box {
  border: #c7c7c7 1px solid;
  border-radius: 10px;
  padding: 5px;
  width: 100%;
}
.contact_subject {
  font-weight: normal;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact_textarea {
  border: #c7c7c7 1px solid;
  border-radius: 10px;
  width: 100%;
  height: 200px;
  padding: 10px;
  font-size: 16px;
}
.contact_btn {
  margin-top: 20px;
}

.privacy-policy {
  height: 200px;
  width: 70%;
  min-width: 720px;
  background-color: #D9ECF2;
  border: #9ECAD6;
  border-radius: 20px;
  overflow-y: scroll;
  padding: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .privacy-policy {
    min-width: 300px;
    width: 100%;
    padding: 20px 20px;
    margin-top: 20px;
  }
}
.privacy-policy_box {
  font-size: 14px;
}
.privacy-policy__head {
  font-size: 16px;
  font-weight: 600;
}
.privacy-policy__detail {
  margin-bottom: 20px;
}
.privacy-policy_title {
  font-size: 20px;
  font-weight: 800;
}

.p-privacy-policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 80px 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 104px;
}
@media screen and (max-width: 1024px) {
  .p-privacy-policy {
    padding: 80px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy {
    padding: 40px 20px;
    margin-top: 88px;
  }
}
.p-privacy-policy_title {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy_title {
    font-size: 20px;
  }
}
.p-privacy-policy_boxtext {
  margin-bottom: 40px;
}

.footer {
  background-color: #748DAE;
  padding: 10px;
}
.footer_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #FFF;
  line-height: 1;
}
.footer_content h3 {
  font-size: 48px;
  font-weight: 100;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .footer_content h3 {
    font-size: 26px;
    font-weight: 100;
    color: #FFF;
  }
}
.footer_content small {
  font-size: 12px;
  font-weight: 100;
}

#WEBdesign,
#homepage,
#LPdesign,
#renewal,
#seo {
  scroll-margin-top: 144px; /* ←固定ヘッダーの高さに合わせる */
}

.a-about {
  margin-top: 104px;
}
@media screen and (max-width: 767px) {
  .a-about {
    margin-top: 88px;
  }
}
.a-about_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 80px 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .a-about_wrapper {
    padding: 80px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .a-about_wrapper {
    padding: 40px 20px;
  }
}
.a-about_img {
  width: 360px;
}
@media screen and (max-width: 767px) {
  .a-about_img {
    width: 200px;
  }
}
.a-about_img img {
  width: 100%;
  height: auto;
}
.a-about_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .a-about_content {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .a-about_content {
    width: 100%;
  }
}
.a-about_content h2 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .a-about_content h2 {
    font-size: 24px;
  }
}
.a-about_textBox {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .a-about_textBox {
    text-align: justify;
  }
}
.a-about_textBox p {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .a-about_textBox p {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .a-about_textBox br {
    display: none;
  }
}
.a-about_career {
  border-top: #c7c7c7 1px solid;
  padding: 10px 10px;
}
.a-about_career p {
  font-size: 20px;
  font-weight: bold;
}
.a-about_career dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.a-about_career dt {
  width: 20%;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .a-about_career dt {
    width: 100%;
  }
}
.a-about_career dd {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .a-about_career dd {
    width: 100%;
    margin-left: 10px;
  }
}

.a-company_wrapper {
  padding: 80px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .a-company_wrapper {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 767px) {
  .a-company_wrapper {
    padding: 40px 20px;
  }
}
.a-company_titleBox h2 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .a-company_titleBox h2 {
    font-size: 24px;
  }
}
.a-company_content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.a-company_item {
  width: 25%;
  padding: 1em 1em 1em 0;
  border-bottom: #c7c7c7 1px solid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.a-company_text {
  width: 75%;
  padding: 1em 1em 1em 0;
  border-bottom: #c7c7c7 1px solid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.w-works {
  margin-top: 104px;
}
@media screen and (max-width: 767px) {
  .w-works {
    margin-top: 88px;
  }
}
.w-works_wrapper {
  padding: 80px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .w-works_wrapper {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 767px) {
  .w-works_wrapper {
    padding: 40px 20px;
  }
}
.w-works_titleBox {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .w-works_titleBox {
    margin-bottom: 0;
  }
}
.w-works_titleBox h2 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
}
@media screen and (max-width: 1024px) {
  .w-works_titleBox h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .w-works_titleBox h2 {
    font-size: 24px;
  }
}
.w-works_link {
  color: #748DAE;
  font-size: 24px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .w-works_link {
    font-size: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.w-works_link_btn:nth-of-type(2) {
  margin-left: 20px;
}
.w-works_link_btn:nth-of-type(3) {
  margin-left: 20px;
}
.w-works_box_all {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .w-works_box_all {
    grid-template-columns: repeat(1, 1fr);
  }
}
.w-works_box_work {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .w-works_box_work {
    grid-template-columns: repeat(1, 1fr);
  }
}
.w-works_box_design {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .w-works_box_design {
    grid-template-columns: repeat(1, 1fr);
  }
}
.w-works_box_img {
  height: auto;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 300px;
  border-radius: 20px;
  aspect-ratio: 16/9;
  border: #9ECAD6 3px solid;
}
@media screen and (max-width: 767px) {
  .w-works_box_img {
    width: 280px;
  }
}
.w-works_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.w-works_box_text {
  background-color: #9ECAD6;
  border-radius: 0 0 20px 20px;
  padding: 10px;
  color: #000;
}
.w-works_box_text p:nth-of-type(2) {
  font-size: 12px;
  color: #748DAE;
}
.w-works_box_text p:nth-of-type(3) {
  font-size: 14px;
  font-weight: 300;
}

.worksBox {
  display: none;
}

.worksBox.is-active {
  display: grid;
  /* 必要に応じて flex / grid に変更してOK */
}

.w-works_link_btn.is-active {
  font-weight: bold;
  text-decoration: underline;
}

.s-works {
  margin-top: 104px;
  min-height: 80vh;
}
@media screen and (max-width: 767px) {
  .s-works {
    margin-top: 88px;
  }
}
.s-works_wrapper {
  padding: 80px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .s-works_wrapper {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 767px) {
  .s-works_wrapper {
    padding: 40px 20px;
  }
}
.s-works_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
  border-bottom: #748DAE 3px solid;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .s-works_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .s-works_content {
    padding: 40px 0;
  }
}
.s-works_contentImg {
  max-width: 400px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-shadow: 2px 2px 4px 4px #c7c7c7;
          box-shadow: 2px 2px 4px 4px #c7c7c7;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .s-works_contentImg {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .s-works_contentImg {
    min-width: 280px;
    max-width: 400px;
    width: auto;
  }
}
.s-works_contentText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .s-works_contentText {
    width: 100%;
  }
}
.s-works_contentText h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: #c7c7c7 1px solid;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .s-works_contentText h4 {
    font-size: 20px;
  }
}
.s-works_contentURL {
  margin-bottom: 20px;
  border-bottom: #c7c7c7 1px solid;
  padding-bottom: 10px;
  overflow-wrap: anywhere;
}
.s-works_content_service {
  margin-bottom: 10px;
  border-bottom: #c7c7c7 1px solid;
  padding-bottom: 10px;
}
.s-works_thumb {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .s-works_thumb {
    min-width: 280px;
    max-width: 400px;
  }
}
.s-works_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .s-works_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.s-works_bottomImg img {
  width: 100%;
  max-width: 300px;
  -webkit-box-shadow: 2px 2px 4px 4px #c7c7c7;
          box-shadow: 2px 2px 4px 4px #c7c7c7;
}
@media screen and (max-width: 767px) {
  .s-works_bottomImg img {
    min-width: 280px;
    max-width: 400px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.s-works_contentURL {
  position: relative;
  padding-right: 20px;
  /* アイコン分の余白 */
}

/* 外部リンクアイコン（好きなアイコンに変更可） */
.s-works_contentURL.has-url::after {
  content: "↗";
  /* シンプル外部リンクアイコン */
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.85em;
}

.p-plan {
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(23, 0, 255, 0.0509803922) 5px, transparent 5px);
  background-position: 0 0;
  background-size: 30px 30px;
  margin-top: 104px;
}
.p-plan_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 80px;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-plan_wrapper {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-plan_wrapper {
    margin-top: 88px;
    padding: 40px 20px;
  }
}
.p-plan_title {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan_title {
    font-size: 24px;
  }
}
.p-plan_description {
  font-size: 16px;
  font-weight: normal;
  color: #000;
  text-shadow: 0px 4px 4px #c7c7c7;
  margin: 0 auto;
}
.p-plan_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-plan_card {
  background-color: #ffffff;
  border: #9ECAD6 5px solid;
  border-radius: 40px;
  width: 100%;
  max-width: 960px;
  padding: 20px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .p-plan_card {
    gap: 20px;
    padding: 20px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-plan_card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 20px;
    width: 100%;
    min-width: 280px;
    max-width: 340px;
  }
}
.p-plan_card_title {
  text-align: center;
  background-color: rgba(255, 217, 102, 0.2);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 20px 20px rgba(255, 217, 102, 0.2);
          box-shadow: 0px 0px 20px 20px rgba(255, 217, 102, 0.2);
  width: 160px;
  height: 160px;
  text-wrap: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-plan_card_title h4 {
  font-size: 24px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
}
.p-plan_card_title p {
  font-size: 20px;
  font-weight: 900;
}
.p-plan_card_title p span {
  font-size: 14px;
}
.p-plan_card_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 40px;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .p-plan_card_content {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-plan_card_content {
    margin: 0;
  }
}
.p-plan_card_target {
  text-wrap: nowrap;
}
.p-plan_card_target span {
  font-size: 20px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 0px 4px 4px #c7c7c7;
}
.p-plan_card_img {
  width: 25%;
  height: 100%;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .p-plan_card_img {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .p-plan_card_img {
    display: none;
  }
}
.p-plan_card_img img {
  width: auto;
  height: auto;
  max-height: 200px;
  margin: auto 0;
}
@media screen and (max-width: 1024px) {
  .p-plan_card_img img {
    max-width: 200px;
  }
}
.p-plan_textBox {
  font-size: 16px;
  font-weight: normal;
  color: #000;
  text-shadow: 0px 4px 4px #c7c7c7;
  margin: 0 auto;
}

.p-management_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 80px;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-management_wrapper {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-management_wrapper {
    padding: 80px 20px;
  }
}
.p-management_title {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-management_title {
    font-size: 24px;
  }
}
.p-management_title br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-management_title br {
    display: block;
  }
}
.p-management_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-management_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-management_card {
  background-color: rgba(255, 217, 102, 0.2);
  border-radius: 30px;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 40px 20px;
  min-width: 280px;
  width: 20%;
  height: 100%;
  min-height: 445px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.p-management_card_title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-management_card_title h4 {
  font-size: 24px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
}
.p-management_card_title p {
  font-size: 20px;
  font-weight: 900;
}
.p-management_card_title p span {
  font-size: 14px;
}
.p-management_card_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-management_card_content p {
  font-weight: bold;
}
.p-management_card_content p span {
  font-size: 20px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 0px 4px 4px #c7c7c7;
}
.p-management_card_content ul {
  margin-top: 20px;
}

.p-option_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 80px;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-option_wrapper {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-option_wrapper {
    padding: 40px 20px;
    gap: 20px;
  }
}
.p-option_title {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-option_title {
    font-size: 24px;
  }
}
.p-option_description {
  font-size: 16px;
  font-weight: normal;
  color: #000;
  text-shadow: 0px 4px 4px #c7c7c7;
  margin: 0 auto;
}
.p-option_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: #c7c7c7 1px solid;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.p-option_item {
  border-bottom: #c7c7c7 1px solid;
  padding: 20px 40px 20px 40px;
}
@media screen and (max-width: 767px) {
  .p-option_item {
    padding: 20px 10px;
  }
}
.p-option_item p {
  font-weight: bold;
  margin-bottom: 20px;
}
.p-option_item dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-option_item dt {
  width: 60%;
  padding: 0.5em 0 0.5em 2em;
  font-weight: normal;
  border-bottom: #c7c7c7 1px solid;
}
@media screen and (max-width: 767px) {
  .p-option_item dt {
    padding: 0.5em 0 0.5em 1em;
  }
}
.p-option_item dt:last-of-type {
  border: none;
}
.p-option_item dt br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-option_item dt br {
    display: block;
  }
}
.p-option_item dt span {
  font-size: 14px;
}
.p-option_item dd {
  width: 40%;
  padding: 0.5em 0 0.5em 1em;
  border-bottom: #c7c7c7 1px solid;
}
.p-option_item dd:last-of-type {
  border: none;
}
.p-option_item dd br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-option_item dd br {
    display: block;
  }
}
.p-option_item dd span {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-option_item dd span {
    display: inline-block;
  }
}

.n-news {
  margin-top: 104px;
  min-height: 80vh;
}
@media screen and (max-width: 767px) {
  .n-news {
    margin-top: 88px;
  }
}
.n-news_wrapper {
  padding: 80px 80px;
}
@media screen and (max-width: 1024px) {
  .n-news_wrapper {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 767px) {
  .n-news_wrapper {
    padding: 40px 20px;
  }
}
.n-news_titleBox {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .n-news_titleBox {
    margin-bottom: 40px;
  }
}
.n-news_titleBox h2 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
}
@media screen and (max-width: 1024px) {
  .n-news_titleBox h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .n-news_titleBox h2 {
    font-size: 24px;
  }
}
.n-news_container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.n-news_container ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 800px;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .n-news_container ul {
    width: 100%;
  }
}
.n-news_container li {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6;
  border-bottom: #c7c7c7 1px solid;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .n-news_container li {
    font-size: 16px;
  }
}
.n-news_container li:first-child {
  border-top: #c7c7c7 1px solid;
  padding-top: 20px;
}
.n-news_container li a:hover {
  text-decoration: underline;
}
.n-news_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.n-news_title {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
}
.n-news_date {
  font-size: 14px;
  margin-bottom: 80px;
  text-align: center;
}

.s-service {
  margin-top: 104px;
}
@media screen and (max-width: 767px) {
  .s-service {
    margin-top: 88px;
  }
}
.s-service_wrapper {
  padding: 80px;
}
@media screen and (max-width: 1024px) {
  .s-service_wrapper {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .s-service_wrapper {
    padding: 20px;
  }
}
.s-service_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.s-service_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .s-service_card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.s-service_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .s-service_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.s-service_title {
  min-width: 280px;
  max-width: 800px;
  width: 80%;
  height: auto;
  padding: 40px;
  border-radius: 5px;
  border-top: 10px ridge #9ECAD6;
  border-bottom: 10px ridge #9ECAD6;
}
@media screen and (max-width: 1024px) {
  .s-service_title {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .s-service_title {
    padding: 20px;
  }
}
.s-service_title h4 {
  font-size: 40px;
  font-weight: bold;
  color: #748DAE;
  text-shadow: 4px 4px 4px #c7c7c7;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .s-service_title h4 {
    font-size: 24px;
  }
}
.s-service_title h5 {
  font-weight: bold;
  margin-bottom: 10px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5em, rgba(255, 217, 102, 0.5019607843)), color-stop(0.5em, transparent));
  background-image: linear-gradient(0deg, rgba(255, 217, 102, 0.5019607843) 0.5em, transparent 0.5em);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.s-service_title h5 br {
  display: none;
}
@media screen and (max-width: 767px) {
  .s-service_title h5 br {
    display: block;
  }
}
.s-service_title p {
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .s-service_title p {
    font-size: 16px;
  }
}
.s-service_img {
  max-width: 500px;
  width: 40%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .s-service_img {
    width: 100%;
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .s-service_img {
    max-width: 280px;
  }
}
.s-service_img img {
  max-width: 500px;
  width: 100%;
  height: auto;
}