@charset "UTF-8";
/* reset start */
/* Webフォントのインポート */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Roboto+Mono:wght@500&display=swap");
/* CSS Document */
:root {
  --bg-base-color: #FDFCFC;
  --bg-light: #EFEEEE;
  --bg-very-light: #F4F4F4;
  --text-gray: #878787;
  --text-dark: #262C26;
  --text-light-gray: #BEBEBE;
  --main-color: #00C7C7;
  --main-color-light: #ACE8E8;
  --border-color: #D1D1D1;
  --accent-color: #FF5168;
  --color-pink: #FC4AA0;
  --color-blue: #587DFF;
  --color-yellow: #FDA804;
  --vw: 1vw;
  --cw: 1200px;
}

/* セレクタのリセット */
* {
  /* 文字サイズを自動調整の制御 */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* タップ時のハイライトカラー指定 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* 長押しした際に表示されるポップアップメニューの制御 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  /* 余白をリセット */
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-y: scroll;
}

/* html5 要素をブロック要素としてブラウザに読み込ませる */
header,
footer,
nav,
section,
article,
figure,
aside {
  display: block;
}

html {
  scroll-padding-top: 90px;
}

html, body {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}

body {
  color: var(--text-gray);
  /* text */
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  background: var(--bg-base-color);
}

img {
  max-width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: var(--text-gray);
}

li {
  list-style: none;
}

#contents {
  max-width: 1200px;
  padding: 0 50px;
  box-sizing: content-box;
}
#contents + #contact {
  margin-top: 0;
}

@media screen and (max-width: 1023px) {
  html {
    scroll-padding-top: 50px;
  }
  #contents {
    padding: 0 24px;
  }
}
/* reset end */
/* header start */
header {
  position: fixed;
  top: 0;
  width: 100%;
  clear: both;
  overflow: hidden;
  z-index: 10;
  display: flex;
  height: 88px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  background: #FFF;
  column-gap: 48px;
  padding: 0 clamp(48px, 5%, 110px);
  z-index: 100;
  transition: all 0.5s ease-out;
}
header.scroll {
  background: transparent !important;
}
header.scroll ul li a {
  color: #FFF;
}
header.scroll ul li a::after {
  background-color: #fff !important;
}
header.scroll ul li:hover ul::before, header.scroll ul li:hover ul::after {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
header.scroll ul li:hover ul::before {
  border-top-color: #fff;
  border-right-color: #fff;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s, border-radius 0.25s ease-out 1s;
}
header.scroll ul li:hover ul:after {
  border-bottom-color: #fff;
  border-left-color: #fff;
  transition: width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s, border-radius 0.25s ease-out 1s;
}
header.scroll ul ul {
  background: transparent !important;
  position: relative;
}
header.scroll ul ul::before, header.scroll ul ul::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  z-index: -1;
}
header.scroll ul ul::before {
  top: -2px;
  left: -2px;
}
header.scroll ul ul::after {
  bottom: -2px;
  right: -2px;
}
header.scroll ul ul li a:hover {
  color: #fff !important;
}
header.scroll svg {
  fill: #fff !important;
}
header.scroll #menu-list span {
  background-color: #fff !important;
}
header > * {
  margin: 0;
}
header div#logo {
  line-height: 1;
}
header nav#menu {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-left: auto;
  width: 100%;
  gap: 48px;
  justify-content: end;
}
header nav#menu > ul {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 640px;
  margin: 0;
}
header nav#menu > ul li {
  display: inline-block;
  position: relative;
}
header nav#menu > ul li a {
  position: relative;
  display: inline-block;
  padding: 16px 0px 14px;
}
header nav#menu > ul li a::after {
  content: "";
  height: 2px;
  background: var(--text-gray);
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
header nav#menu > ul li:hover > a::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top; /*左から右に向かう*/
}
header nav#menu > ul li:hover ul {
  visibility: visible;
  opacity: 1;
}
header nav#menu > ul ul {
  position: fixed;
  z-index: -1;
  background-color: #fff;
  padding: 10px 30px 20px;
  margin-left: -30px;
  display: flex;
  flex-flow: column;
  transition: all 0.5s ease-out;
  visibility: hidden;
  opacity: 0;
  border-radius: 16px 16px;
  border: 2px solid transparent;
  margin-top: -2px;
}
header nav#menu > ul ul li {
  margin: 0;
}
header nav#menu > ul ul li a {
  transition: all 0.3s ease-out;
  padding-bottom: 10px;
  font-size: 14px;
}
header nav#menu > ul ul li a::after {
  height: 1px;
  background: var(--text-dark);
}
header nav#menu > ul ul li a:hover {
  color: var(--text-dark);
}
header nav#menu #menu-list {
  z-index: 10000;
  display: inline-block;
  width: 36px;
  height: 28px;
  vertical-align: middle;
  position: relative;
  margin: 0;
}
header nav#menu #menu-list:hover span:nth-of-type(1) {
  top: 0;
}
header nav#menu #menu-list:hover span:nth-of-type(3) {
  bottom: 0;
}
header nav#menu #menu-list span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-gray);
  transition: all 0.5s;
}
header nav#menu #menu-list span:nth-of-type(1) {
  top: 3px;
}
header nav#menu #menu-list span:nth-of-type(2) {
  top: 13px;
}
header nav#menu #menu-list span:nth-of-type(3) {
  bottom: 3px;
}
header nav#menu #menu-list.active:hover span:nth-of-type(1) {
  top: 3px;
}
header nav#menu #menu-list.active:hover span:nth-of-type(3) {
  bottom: 3px;
}
header nav#menu #menu-list.active span {
  background-color: var(--bg-base-color);
}
header nav#menu #menu-list.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
header nav#menu #menu-list.active span:nth-of-type(2) {
  opacity: 0;
}
header nav#menu #menu-list.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

div#slide_menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  display: flex;
  width: 100%;
  background-color: var(--text-gray);
  color: #fff;
  z-index: 100;
  opacity: 0;
  transition: all 0.5s ease-out;
}
div#slide_menu.slidein {
  left: 0%;
  opacity: 1;
}
div#slide_menu svg {
  fill: #fff;
}
div#slide_menu .image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: clamp(0px, 40%, 771px);
  background-image: url("../img/slide_menu_bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
div#slide_menu .contents {
  margin-left: clamp(0px, 40%, 771px);
  background-color: var(--text-gray);
  position: relative;
  padding: 24px;
  padding-bottom: calc(env(safe-area-inset-bottom) + 20px);
  flex-shrink: 0;
  flex: auto;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: auto;
  overflow-x: hidden;
  transition: all 0.5s ease-out;
}
div#slide_menu .contents > div {
  position: relative;
  z-index: 1;
}
div#slide_menu .contents .bg-logo {
  position: absolute;
  top: -25px;
  left: 0px;
  background-color: #8C8C8C;
  -webkit-mask: url("../img/kp-small-logo.svg");
  mask: url("../img/kp-small-logo.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 0;
}
div#slide_menu .contents a {
  color: var(--bg-base-color);
}
div#slide_menu .contents a:hover svg {
  fill: var(--text-dark);
}
div#slide_menu .contents #slide_nav > ul {
  display: flex;
  max-width: 687px;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
  gap: 63px;
}
div#slide_menu .contents #slide_nav > ul > li {
  margin: 0;
}
div#slide_menu .contents #slide_nav > ul > li a {
  display: inline-block;
  position: relative;
}
div#slide_menu .contents #slide_nav > ul > li a::after {
  content: "";
  height: 1px;
  background: var(--bg-base-color);
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
div#slide_menu .contents #slide_nav > ul > li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top; /*左から右に向かう*/
}
div#slide_menu .contents #slide_nav > ul > li > a {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 200% */
  letter-spacing: 4px;
  margin: 0;
}
div#slide_menu .contents #slide_nav > ul > li.flex {
  display: flex;
  flex-flow: column;
  gap: 63px;
}
div#slide_menu .contents #slide_nav > ul > li ul {
  margin-top: 12px;
}
div#slide_menu .contents #slide_nav > ul > li ul li a {
  color: var(--bg-light);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
div#slide_menu .contents #slide_contact {
  box-sizing: content-box;
  max-width: 687px;
  margin: 64px 0;
}
div#slide_menu .contents #slide_contact a.contact_mail_button {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border: 1px solid var(--bg-base-color);
  border-radius: 48px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 200% */
  letter-spacing: 4px;
  transition: all 0.5s ease-out;
}
div#slide_menu .contents #slide_contact a.contact_mail_button:hover {
  color: var(--text-dark);
  background-color: var(--bg-base-color);
}
div#slide_menu .contents #slide_contact a.contact_mail_button div {
  margin: 0;
}
div#slide_menu .contents #slide_contact a.contact_mail_button .mail_icon {
  width: 24px;
  height: 24px;
}
div#slide_menu .contents #slide_contact a.contact_mail_button .mail_icon svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  transition: all 0.5s ease-out;
}
div#slide_menu .contents #slide_contact .tell {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
div#slide_menu .contents #slide_contact .tell .tell_icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  text-indent: 0;
  letter-spacing: 0;
  margin: 0;
}
div#slide_menu .contents #slide_contact .tell .tell_icon svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
div#slide_menu .contents #slide_contact .tell span {
  margin: 0;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 8.4px;
}
div#slide_menu .contents #slide_contact .tell + p {
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.2px;
  text-indent: 1.2px;
}
div#slide_menu .contents #slide_contact .fax {
  margin-top: 20px;
  text-align: center;
}
div#slide_menu .contents #slide_contact .fax small {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2.6px;
}
div#slide_menu .contents #slide_contact .fax span {
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 7.5px;
}
div#slide_menu .contents #footer_menu {
  text-align: right;
  max-width: 687px;
  margin: 0;
  box-sizing: content-box;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
div#slide_menu .contents #footer_menu .sns_icon,
div#slide_menu .contents #footer_menu .flex {
  display: flex;
  gap: 32px;
  justify-content: end;
}
div#slide_menu .contents #footer_menu .sns_icon > *,
div#slide_menu .contents #footer_menu .flex > * {
  margin: 0;
}
div#slide_menu .contents #footer_menu .privacy a {
  display: inline-block;
  position: relative;
}
div#slide_menu .contents #footer_menu .privacy a::after {
  content: "";
  height: 1px;
  background: var(--bg-base-color);
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
div#slide_menu .contents #footer_menu .privacy a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top; /*左から右に向かう*/
}

div#wrapper.slidein {
  position: fixed;
  width: 100%;
}

/* 画面サイズが1023px以下のとき */
@media screen and (max-width: 1023px) {
  header {
    padding: 0 15px;
    height: 44px;
  }
  header div#logo {
    height: 15px;
    overflow: hidden;
  }
  header div#logo svg {
    fill: var(--text-gray);
    height: 100%;
    width: 130px;
  }
  header nav#menu ul {
    display: none;
  }
  header nav#menu #menu-list {
    width: 20px;
    height: 18px;
  }
  header nav#menu #menu-list span {
    height: 1px;
  }
  header nav#menu #menu-list span:nth-of-type(2) {
    top: 8px;
  }
  header nav#menu #menu-list.active span:nth-of-type(1) {
    transform: translateY(5px) rotate(-45deg);
  }
  header nav#menu #menu-list.active span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
  }
  header div#slide_menu .contents {
    margin-left: 0;
  }
  header div#slide_menu .contents #slide_nav {
    margin-top: 50px;
  }
  header div#slide_menu .contents #slide_nav > ul {
    justify-content: flex-start;
    gap: 30px;
  }
  header div#slide_menu .contents #slide_nav > ul > li.flex {
    flex-flow: row;
    gap: 30px;
  }
  header div#slide_menu .contents #footer_menu .flex {
    flex-flow: column;
    gap: 10px;
  }
}
/* 画面サイズが1024px以上のとき */
@media screen and (min-width: 1024px) {
  header div#slide_menu #slide_nav {
    margin-top: 240px;
    padding: 0 50px;
  }
  header div#slide_menu .contents #slide_contact,
  header div#slide_menu .contents #footer_menu {
    padding: 0 50px;
  }
}
/* header end */
/* sub header start */
div#logo a svg {
  transition: all 0.5s ease-out;
}
div#logo a:hover svg {
  fill: var(--text-dark);
}

div#mainvisual_img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: var(--main-color);
  font-style: normal;
  line-height: normal;
}
div#mainvisual_img div#title {
  background: var(--bg-base-color);
}
div#mainvisual_img div#title h1 {
  /* h2_color */
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 38.4px;
}
div#mainvisual_img div#title p {
  /* text_color */
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 12.8px;
  color: var(--main-color-light);
  margin-top: 8px;
}

section#message h2 {
  color: var(--text-dark);
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section#message div.comment {
  margin-top: 32px;
  text-align: center;
  /* text */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
}

/* 画面サイズが1023px以下のとき */
@media screen and (max-width: 1023px) {
  section#message {
    margin-top: 16px;
  }
  section#message h2 {
    font-size: 20px;
    padding-top: 16px;
  }
  section#message div.comment {
    margin-top: 16px;
  }
  section#message div.comment p {
    font-size: 12px;
    line-height: 200%;
    text-align: left;
  }
  section#message div.comment p br {
    display: none;
  }
  div#mainvisual_img {
    height: 150px;
    margin-top: 44px;
  }
  div#mainvisual_img div#title {
    position: relative;
    top: 72px;
    margin: 0 16px;
    border-radius: 15px 15px 0 0;
    padding: 12px 22px 32px 22px;
  }
  div#mainvisual_img div#title h1 {
    font-size: 24px;
    letter-spacing: 9.6px;
  }
  div#mainvisual_img div#title p {
    font-size: 12px;
    letter-spacing: 3.6px;
    margin-top: 0;
  }
}
/* 画面サイズが1024px以上のとき */
@media screen and (min-width: 1024px) {
  section#message {
    margin-top: 147px;
    margin-bottom: 56px;
  }
  section#message h2 {
    font-size: 32px;
    letter-spacing: 6.4px;
    text-indent: 6.4px;
  }
  section#message h2 br {
    display: none;
  }
  div#mainvisual_img {
    height: 557px;
  }
  div#mainvisual_img div#title {
    position: absolute;
    bottom: -10px;
    width: 944px;
    height: 202px;
    padding-left: clamp(50px, 18.75%, 360px);
    padding-top: 61px;
    border-radius: 0 15px 0 0;
  }
}
/* sub header end */
/* business contents start */
section#message h3 {
  margin-top: 56px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 6.4px;
  text-indent: 6.4px;
}
section#message ul#service_strength {
  text-align: center;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  height: 203px;
}
section#message ul#service_strength div.service_name {
  margin-top: 17px;
  color: var(--text-gray);
  /* text */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  white-space: nowrap;
}
section#message ul#service_strength div.service_icon {
  width: 113px;
  height: 113px;
  display: flex;
  align-items: center;
}
section#message ul#service_strength div.service_icon svg {
  fill: var(--text-gray);
}

.flex-box {
  position: relative;
  display: flex;
  padding: 56px 104px;
  justify-content: center;
  align-items: center;
  gap: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.flex-box:nth-of-type(even) .img {
  order: 1;
  text-align: left;
}
.flex-box:nth-of-type(even) .content {
  order: 2;
}
.flex-box + .flex-box {
  margin-top: 32px;
}
.flex-box .content {
  flex: 1;
}
.flex-box .content::before {
  content: "Point" counter(count);
  counter-increment: count 1;
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4.8px;
  text-indent: 4.8px;
  padding: 2px 8px;
  margin-bottom: 24px;
}
.flex-box .img {
  width: 276px;
  text-align: right;
}
.flex-box h3 {
  color: var(--text-dark);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4px;
  width: 100%;
}
.flex-box h3::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--main-color);
  display: block;
  margin: 35px 0;
}
.flex-box h3 b {
  font-weight: 400;
  color: var(--main-color);
}
.flex-box p {
  text-align: justify;
  /* text */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
}

.box .contents h2 {
  color: var(--text-dark);
  /* h4 */
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
.box .contents h2 ~ h2 {
  margin-top: 56px;
}
.box .contents p {
  text-align: justify;
  /* text */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
}
.box div.image {
  background-color: #fff;
}

section#FAQ h2, section#service_flow h2 {
  color: var(--text-dark);
  text-align: center;
  /* h3_wide */
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 16px;
  text-indent: 16px;
}
section#FAQ h2 + p, section#service_flow h2 + p {
  margin-top: 8px;
  text-align: center;
  font-feature-settings: "liga" off;
  font-family: Noto Sans JP;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6px;
  text-indent: 6px;
}

section#service_flow {
  margin: 136px auto;
}
section#service_flow ol {
  margin-top: 72px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  counter-reset: count 0;
  flex-wrap: wrap;
  row-gap: 30px;
}
section#service_flow ol li.arrow {
  width: 30px;
  height: 30px;
  background-color: var(--border-color);
  -webkit-mask: url("../img/icon/icon-arrow.svg");
  mask: url("../img/icon/icon-arrow.svg");
}
section#service_flow ol li.item {
  position: relative;
  background-color: var(--main-color);
  width: 174px;
  height: 327px;
  border-radius: 16px;
  margin: 0px;
  display: flex;
  align-items: center;
  text-align: center;
}
section#service_flow ol li.item > div {
  flex-flow: column;
  display: flex;
  justify-content: space-between;
  height: 100%;
  padding: 25px 0;
}
section#service_flow ol li.item > div:before {
  content: counter(count);
  counter-increment: count 1;
  background-color: #fff;
  color: var(--main-color, #00C7C7);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  width: 60px;
  height: 60px;
  line-height: 55px;
  border-radius: 72px;
  display: block;
  margin: 0 auto;
}
section#service_flow ol li.item div.flow {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
section#service_flow ol li.item div.flow_icon {
  width: 130px;
  height: 119px;
  display: flex;
  align-items: center;
}

@keyframes open-animation {
  0% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes close-animation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-90deg);
  }
}
section#FAQ {
  margin-bottom: 320px;
}
section#FAQ a {
  transition: all 0.5s ease-out;
  border-bottom: 1px solid var(--text-gray);
}
section#FAQ a:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}
section#FAQ .contents {
  margin-top: 72px;
}
section#FAQ .contents details {
  position: relative;
  margin-top: -1px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
section#FAQ .contents details[open]:not([data-accordion-before-close]) summary::before {
  transform: rotate(0deg);
  animation: 0.5s open-animation;
}
section#FAQ .contents details summary {
  transform-style: preserve-3d;
  position: relative;
  list-style: none;
  cursor: pointer;
  outline: none;
}
section#FAQ .contents details summary::-webkit-details-marker {
  display: none;
}
section#FAQ .contents details summary::before, section#FAQ .contents details summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 42px;
  display: block;
  margin-top: -1px;
  width: 24px;
  height: 2px;
  background: var(--text-gray);
}
section#FAQ .contents details summary::before {
  transform: rotate(-90deg);
  transition: all 0.5s ease-out;
  transform-style: preserve-3d;
}
section#FAQ .contents details .summary-content,
section#FAQ .contents details .accordion-content {
  padding: 32px 108px;
  position: relative;
}
section#FAQ .contents details .summary-content::before,
section#FAQ .contents details .accordion-content::before {
  content: "Q";
  position: absolute;
  left: 32px;
  top: 50%;
  margin-top: -22px;
  display: block;
  width: 44px;
  height: 44px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 48px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
section#FAQ .contents details .accordion-content::before {
  content: "A";
  background-color: var(--accent-color);
}
section#FAQ .contents details .accordion {
  overflow: hidden;
}

/* 画面サイズが1023px以下のとき */
@media screen and (max-width: 1023px) {
  div#mainvisual_img div#title h1 {
    letter-spacing: 5.6px;
  }
  section#message ul#service_strength {
    margin-top: 16px;
    margin-bottom: 46px;
    gap: 0px;
    row-gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
    height: auto;
  }
  section#message ul#service_strength li {
    width: 50%;
    margin: 0px;
  }
  section#message ul#service_strength div.service_name {
    margin-top: 0px;
    font-size: 12px;
    line-height: 200%;
  }
  section#message ul#service_strength div.service_icon {
    width: 85px;
    height: 85px;
    padding: 10px;
  }
  section#message ul#service_strength div.service_icon svg {
    width: 100%;
    height: 100%;
  }
  .flex-box {
    flex-flow: column;
    padding: 24px 30px;
    align-items: start;
  }
  .flex-box h3 {
    font-size: 24px;
    letter-spacing: 2.4px;
  }
  .flex-box h3::after {
    margin: 16px 0;
  }
  .flex-box .content {
    margin: 0;
  }
  .flex-box .content::before {
    font-size: 12px;
    letter-spacing: 3.6px;
    text-indent: 3.6px;
  }
  .flex-box .content p {
    font-size: 12px;
  }
  .flex-box .img {
    height: 120px;
    width: 120px;
    order: 2 !important;
  }
  .flex-box .img svg {
    width: 100%;
    height: 100%;
  }
  .box {
    padding-bottom: 46px;
    background: var(--bg-very-light);
    width: calc(var(--vw) * 100);
    margin-left: calc((var(--vw) * 100 - 100%) / 2 * -1);
    margin-right: calc((var(--vw) * 100 - 100%) / 2 * -1);
  }
  .box .image {
    line-height: 1;
  }
  .box .contents {
    padding: 0 24px;
  }
  .box .contents h2 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 16px;
  }
  .box .contents p {
    font-size: 12px;
  }
  section#service_flow {
    margin: 72px auto;
  }
  section#service_flow h2 {
    font-size: 24px;
  }
  section#service_flow ol {
    margin-top: 36px;
    flex-flow: column;
    row-gap: 8px;
  }
  section#service_flow ol li.arrow {
    transform: rotate(90deg);
  }
  section#service_flow ol li.item {
    width: 100%;
    height: 114px;
  }
  section#service_flow ol li.item > div {
    flex-flow: row;
    gap: 24px;
    align-items: center;
  }
  section#service_flow ol li.item > div:before {
    font-size: 24px;
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
  section#service_flow ol li.item div.flow {
    font-size: 22px;
    margin: 0;
    min-width: 120px;
    text-align-last: justify;
  }
  section#service_flow ol li.item div.flow_icon {
    width: 90px;
  }
  section#FAQ {
    margin-bottom: 0;
  }
  section#FAQ h2 {
    font-size: 24px;
  }
  section#FAQ .contents {
    margin-top: 36px;
  }
  section#FAQ .contents details summary::before, section#FAQ .contents details summary::after {
    right: 0;
  }
  section#FAQ .contents details .summary-content,
  section#FAQ .contents details .accordion-content {
    padding: 32px 54px;
  }
  section#FAQ .contents details .summary-content::before,
  section#FAQ .contents details .accordion-content::before {
    left: 0;
  }
}
/* 画面サイズが1024px以上のとき */
@media screen and (min-width: 1024px) {
  div#mainvisual_img div#title h1 {
    letter-spacing: 9.6px;
  }
  .box {
    display: flex;
    flex-shrink: 0;
    background-color: var(--bg-very-light);
    position: relative;
  }
  .box::before {
    content: "";
    position: absolute;
    display: block;
    width: calc(var(--vw) * 100);
    height: 100%;
    background-color: var(--bg-very-light);
    left: calc((var(--vw) * 100 - 100%) / 2 * -1);
    top: 0;
    z-index: -1;
  }
  .box:nth-of-type(even) .contents {
    margin-right: 120px;
  }
  .box:nth-of-type(even) > div:first-child {
    order: 2;
  }
  .box:nth-of-type(even) > div:last-child {
    order: 1;
  }
  .box:nth-of-type(odd) .contents {
    margin-left: 120px;
  }
  .box:nth-of-type(odd) div.image div {
    right: 0;
  }
  .box .contents,
  .box div.image {
    justify-content: space-between;
    display: flex;
    align-items: center;
    margin: initial;
    flex: 1;
  }
  .box .contents {
    max-width: 481px;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .box .contents > div {
    width: 100%;
  }
  .box div.image {
    position: relative;
    height: auto;
  }
  .box div.image::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .box div.image div {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    width: calc(100% + (var(--vw) * 100 - var(--cw)) / 2 + 50px);
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
  }
  .box div.image div img {
    width: 100%;
    visibility: hidden;
  }
}
/* business contents end */
/* contact start */
nav#breadcrumbs {
  margin-top: 152px;
  color: var(--text-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 32px 0;
}
nav#breadcrumbs ul {
  display: flex;
  justify-content: start;
}
nav#breadcrumbs ul li {
  margin: 0px;
}
nav#breadcrumbs ul li:not(:last-child) {
  white-space: nowrap;
}
nav#breadcrumbs ul li:not(:last-child)::after {
  content: "";
  height: 1px;
  width: 26px;
  display: inline-block;
  background-color: var(--text-gray);
  margin: 0 8px;
  vertical-align: middle;
  top: -2px;
  position: relative;
}
nav#breadcrumbs ul li a {
  position: relative;
  display: inline-block;
  color: var(--text-gray);
  transition: transform 0.3s;
}
nav#breadcrumbs ul li a:hover {
  color: var(--text-dark);
}
nav#breadcrumbs ul li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top; /*左から右に向かう*/
}
nav#breadcrumbs ul li a::after {
  content: "";
  height: 1px;
  background: var(--text-dark);
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
nav#breadcrumbs + section#contact {
  margin-top: 32px;
}

section#contact {
  position: relative;
  background-color: var(--main-color);
  color: #fff;
  margin-top: 208px;
  padding: 83px 0;
  font-style: normal;
  line-height: normal;
  text-align: center;
}
section#contact::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #2BCCCC;
  -webkit-mask: url("../img/kp-small-logo.svg");
  mask: url("../img/kp-small-logo.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
section#contact > div {
  position: relative;
  margin: 0 clamp(20px, 7%, 128px);
  z-index: 1;
}
section#contact > div:first-child {
  margin-bottom: 48px;
}
section#contact h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 12px;
}
section#contact h2 + p {
  letter-spacing: 11.2px;
}
section#contact p {
  font-size: 16px;
  font-weight: 400;
}
section#contact div.tell a {
  color: #fff;
}
section#contact div.tell span {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 9.6px;
}
section#contact div.tell + p {
  letter-spacing: 1.6px;
}
section#contact div.fax {
  margin-top: 11px;
}
section#contact div.fax small {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3.2px;
}
section#contact div.fax span {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 8px;
}
section#contact div.mail {
  margin-top: 56px;
  display: inline-block;
}
section#contact a.contact_mail_button {
  transition: all 0.5s ease-out;
  background-color: var(--main-color);
  color: #fff;
  padding: 22px 56px;
  border: 2px solid #fff;
  border-radius: 50px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 2.8px;
  vertical-align: top;
  line-height: 41px;
  text-align: left;
}
section#contact a.contact_mail_button:hover {
  background-color: #fff;
  color: var(--main-color);
}
section#contact a.contact_mail_button:hover svg {
  fill: var(--main-color);
}
section#contact a.contact_mail_button > * {
  margin: 0;
}
section#contact a.contact_mail_button svg {
  transition: all 0.5s ease-out;
  fill: #fff;
}
section#contact a.contact_mail_button .mail_icon {
  max-width: 42px;
  max-height: 42px;
}

/* 画面サイズが1023px以下のとき */
@media screen and (max-width: 1023px) {
  nav#breadcrumbs {
    margin-top: 72px;
  }
  section#contact {
    padding: 32px 0 60px;
  }
  section#contact h2 {
    font-size: 32px 0;
    font-weight: 500;
    letter-spacing: 9.6px;
  }
  section#contact h2 + p {
    font-size: 16px;
    font-weight: 500;
  }
  section#contact p {
    font-size: 14px;
    font-weight: 500;
  }
  section#contact div.tell span {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3.4px;
  }
  section#contact div.tell + p {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
  section#contact div.tell svg {
    width: 34px;
    height: 34px;
    vertical-align: text-bottom;
  }
  section#contact div.fax small {
    font-size: 12px;
    letter-spacing: 2.4px;
  }
  section#contact div.fax span {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4.8px;
  }
  section#contact a.contact_mail_button {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0;
    gap: 10px;
    padding: 20px;
  }
}
/* 画面サイズが1024px以上のとき */
@media screen and (min-width: 1024px) {
  section#contact {
    display: flex;
    justify-content: center;
  }
  section#contact > div:first-child {
    text-align: left;
    order: -1;
  }
  section#contact::before {
    content: "";
    border: 1px solid #fff;
    z-index: 1;
  }
}
/* contact end */
/* fotter start */
footer {
  padding: 72px 0;
  min-height: 580px;
}

div.footer_main_link div.logo {
  line-height: 1;
}
div.footer_main_link div.address {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

nav.footer_nav {
  margin-top: 48px;
}
nav.footer_nav > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
nav.footer_nav > ul > li {
  margin: 0;
}
nav.footer_nav > ul > li > a {
  margin-bottom: 8px;
}
nav.footer_nav ul li a {
  display: inline-block;
  padding: 0 3px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px; /* 250% */
}
nav.footer_nav ul li a::after {
  content: "";
  height: 2px;
  background: var(--text-dark);
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
nav.footer_nav ul li a:hover {
  color: var(--text-dark);
}
nav.footer_nav ul li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top; /*左から右に向かう*/
}
nav.footer_nav ul li li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  position: relative;
}
nav.footer_nav ul li li a::after {
  height: 1px;
}

div.footer_sub_link_mark {
  font-size: 14px;
  font-weight: 400;
  line-height: 32px; /* 228.571% */
}
div.footer_sub_link_mark > div.security a,
div.footer_sub_link_mark > div.privacy a {
  line-height: 32px;
  display: inline-block;
  position: relative;
}
div.footer_sub_link_mark > div.security a::after,
div.footer_sub_link_mark > div.privacy a::after {
  content: "";
  height: 1px;
  background: var(--text-dark);
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
div.footer_sub_link_mark > div.security a:hover,
div.footer_sub_link_mark > div.privacy a:hover {
  color: var(--text-dark);
}
div.footer_sub_link_mark > div.security a:hover::after,
div.footer_sub_link_mark > div.privacy a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top; /*左から右に向かう*/
}
div.footer_sub_link_mark > div.p-mark {
  height: 100px;
}
div.footer_sub_link_mark > div.p-mark a {
  display: block;
  line-height: 1;
  width: 100px;
  height: 100px;
  margin: 0;
}

div.footer_icon {
  display: flex;
  gap: 32px;
}
div.footer_icon a {
  display: inline-block;
  margin: 0;
}
div.footer_icon a:hover svg {
  fill: var(--text-dark);
}

div.logo svg,
div.footer_icon a svg {
  fill: var(--text-gray);
  transition: all 0.5s ease-out;
}

/* 画面サイズが1023px以下のとき */
@media screen and (max-width: 1023px) {
  footer {
    padding: 40px 20px;
  }
  div.footer_main_link div.address {
    margin-top: 16px;
  }
  div.footer_sub_link_mark {
    margin-top: 88px;
  }
  div.footer_sub_link_mark > div.security {
    margin-top: 32px;
    margin-bottom: 8px;
  }
  div.footer_sub_link_mark > div.copyright {
    margin-top: 8px;
  }
  div.footer_sub_link_mark > div.p-mark {
    margin: 32px auto;
  }
}
/* 画面サイズが1024px以上のとき */
@media screen and (min-width: 1024px) {
  div.footer_main_link,
  div.footer_sub_link_mark {
    max-width: 1200px;
    padding: 0 50px;
    box-sizing: content-box;
  }
  div.footer_main_link {
    display: flex;
    justify-content: space-between;
    gap: 200px;
  }
  div.footer_main_link > * {
    margin: 0;
  }
  div.footer_sub_link_mark {
    margin-top: 135px;
    display: grid;
    grid-template-rows: 50px 50px;
    grid-template-columns: 100px minmax(max-content, 1fr) minmax(max-content, auto) minmax(max-content, auto);
    align-content: end;
    align-items: end;
  }
  div.footer_sub_link_mark > div {
    width: 100%;
  }
  div.footer_sub_link_mark > div.footer_icon {
    grid-row: 1;
    grid-column: 2/span 3;
    height: 32px;
    justify-content: flex-end;
  }
  div.footer_sub_link_mark > div.security,
  div.footer_sub_link_mark > div.privacy,
  div.footer_sub_link_mark > div.copyright {
    grid-row: 2;
    padding-left: 49px;
    text-align: right;
  }
  div.footer_sub_link_mark > div.security {
    grid-column: 2;
  }
  div.footer_sub_link_mark > div.privacy {
    grid-column: 3;
  }
  div.footer_sub_link_mark > div.copyright {
    grid-column: 4;
  }
  div.footer_sub_link_mark > div.p-mark {
    grid-row: 1/span 2;
    grid-column: 1;
  }
}
/* fotter end */
div#mainvisual_img {
  background-image: url("../img/sdgs/sdgs.png");
}

div#mainvisual_img div#title h1 {
  letter-spacing: 5.6px;
}
div#mainvisual_img div#title p {
  letter-spacing: 3.6px;
}

#message {
  padding-bottom: 16px;
}

#attempt_01 {
  position: relative;
  z-index: 1;
  background-color: var(--bg-very-light);
  width: calc(var(--vw) * 100);
  margin-left: calc((var(--vw) * 100 - 100%) / 2 * -1);
  margin-right: calc((var(--vw) * 100 - 100%) / 2 * -1);
}
#attempt_01::after {
  content: "";
  width: 98px;
  height: 98px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: var(--bg-very-light);
  position: absolute;
  left: 50%;
  margin-left: -49px;
  bottom: -20px;
  z-index: -1;
}
#attempt_01 .contents h2 {
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#attempt_01 .contents .ex-box + .ex-box {
  margin-top: 48px;
}
#attempt_01 .contents .ex-box .ex-text {
  margin: 0px;
}
#attempt_01 .contents .ex-box h2 {
  margin: 0;
}
#attempt_01 .contents .sdg-icon {
  width: 100px;
  display: block;
  margin: 0px;
}

section#appeal {
  background: var(--bg-light);
  width: calc(var(--vw) * 100);
  margin-left: calc((var(--vw) * 100 - 100%) / 2 * -1);
  margin-right: calc((var(--vw) * 100 - 100%) / 2 * -1);
}
section#appeal .header {
  background: #fff;
  color: var(--text-dark);
  height: 214px;
  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;
}
section#appeal .header h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 8px;
  text-indent: 16px;
}
section#appeal .header p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
section#appeal .header p + P {
  font-size: 16px;
  margin-top: 16px;
}

section#contents_sdgs .header {
  background: var(--main-color);
}
section#contents_sdgs .header h2 {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 4px;
  text-indent: 4px;
  line-height: 1.5;
  padding-top: 50px;
  overflow: hidden;
}
section#contents_sdgs .header h2::after {
  content: url("../img/kp.png");
  -webkit-transform: rotate(19.668deg);
  transform: rotate(19.668deg);
  display: inline-block;
  width: 261px;
  height: 392px;
  vertical-align: top;
  margin-right: -261px;
  margin-top: -90px;
}

section#contents_new {
  margin-top: 50px;
}
section#contents_new .header {
  background-color: var(--bg-very-light);
  padding: 64px 0;
  text-align: center;
}
section#contents_new .header h2 {
  display: inline-block;
  padding: 24px 48px;
  background-color: var(--bg-base-color);
  border-radius: 72px;
  color: var(--main-color);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 6.4px;
  text-indent: 6.4px;
}

section.contentsBox {
  counter-reset: count 0;
}
section.contentsBox .header {
  height: 343px;
  width: calc(var(--vw) * 100);
  margin-left: calc((var(--vw) * 100 - 100%) / 2 * -1);
  margin-right: calc((var(--vw) * 100 - 100%) / 2 * -1);
  position: relative;
}
section.contentsBox .header + .flex-box {
  margin-top: -133px;
}
section.contentsBox .flex-box h3 {
  font-size: 25px;
}
section.contentsBox .content {
  color: #000;
}
section.contentsBox .content ul li {
  font-size: 16px;
  line-height: 200%;
  list-style-type: disc;
  margin-left: 16px;
}
section.contentsBox .content ul li b {
  color: var(--main-color);
}

.flex-box .content::before {
  content: "";
  width: 50%;
  vertical-align: bottom;
}

/* 画面サイズが1023px以下のとき */
@media screen and (max-width: 1023px) {
  br.pc {
    display: none;
  }
  section#appeal .header {
    padding: 0 16px;
    height: 180px;
  }
  section#appeal .header h3 {
    letter-spacing: 0px;
    font-size: 20px;
  }
  section#appeal .header p + p {
    font-size: 12px;
  }
  .flex-box .img {
    height: auto;
    width: auto;
  }
  .flex-box .img img {
    max-height: 250px;
  }
  .flex-box .content::before {
    margin-bottom: 16px;
  }
  #attempt_01 .contents {
    padding: 24px;
  }
  #attempt_01 .contents ul li {
    font-size: 12px;
  }
  #attempt_01 .contents .ex-box h2 {
    margin-top: 10px;
    font-size: 16px;
  }
  #attempt_01 .image {
    padding: 16px;
  }
  section#contents_new .header {
    height: auto;
    padding: 32px 0;
  }
  section#contents_new .header h2 {
    letter-spacing: 0;
    text-indent: 0;
    line-height: 1.5;
    font-size: 24px;
  }
  section#contents_new .header + .flex-box {
    margin-top: -10px;
  }
  section#contents_sdgs .header {
    height: auto;
  }
  section#contents_sdgs .header h2 {
    font-size: 24px;
    letter-spacing: 0;
    text-indent: 0;
    line-height: 1.5;
    padding-top: 60px;
    padding-bottom: 90px;
  }
  section#contents_sdgs .header h2::after {
    display: none;
  }
  section#contents_sdgs .header + .flex-box {
    margin-top: -56px;
  }
  section#contents_sdgs .flex-box h3 {
    font-size: 20px;
    letter-spacing: 0px;
  }
  section#contents_sdgs .flex-box ul li {
    font-size: 12px;
  }
}
/* 画面サイズが1024px以上のとき */
@media screen and (min-width: 1024px) {
  br.sp {
    display: none;
  }
  #attempt_01 .contents {
    max-width: 1200px;
    width: 100%;
    padding: 50px;
  }
  #attempt_01 .contents .ex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .flex-box .content .marker {
    background: rgba(255, 255, 255, 0.9);
  }
  .flex-box.box-style1 {
    display: block;
  }
  .flex-box.box-style1 .img::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0px, rgba(255, 255, 255, 0.7) 650px, rgba(255, 255, 255, 0) 750px);
    z-index: -1;
  }
  .flex-box.box-style1 .img img {
    max-width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -2;
    padding: 10px 25px;
  }
  section.box[id*=_01] div.image div {
    background-color: #fff;
    padding: 10px;
  }
  section.box[id*=_01] div.image div img {
    visibility: visible;
  }
  section.box[id*=_02] div.image div {
    background-image: url("../img/sdgs/TASKalfa_Pro_15000c_comb05_L.jpg");
    background-position: 80%;
  }
  section.box[id*=_03] div.image div {
    background-image: url("../img/sdgs/ECQ.jpg");
    background-size: contain;
    background-color: #fff;
    padding: 10px;
    background-origin: content-box;
  }
}