@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 */
/* 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/privacy/privacypolicy.png");
}

section#PressRelease {
  text-align: justify;
}
section#PressRelease a {
  transition: all 0.5s ease-out;
  border-bottom: 2px solid var(--border-color);
  line-height: 3;
  padding-bottom: 5px;
}
section#PressRelease a:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}
section#PressRelease h2 {
  margin: 48px 0 16px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}
section#PressRelease hr {
  margin: 0.5em 0;
  height: 3px;
  background-color: #000;
}

/* 画面サイズが1023px以下のとき */
@media screen and (max-width: 1023px) {
  div#mainvisual_img div#title h1 {
    letter-spacing: 4px;
  }
  section#PressRelease {
    margin-top: 30px;
    font-size: 14px;
    line-height: 200%;
  }
  section#PressRelease h2 {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 24px;
  }
}
/* 画面サイズが1024px以上のとき */
@media screen and (min-width: 1024px) {
  div#mainvisual_img div#title h1 {
    letter-spacing: 9.6px;
  }
  section#PressRelease {
    margin-top: 147px;
  }
}