@charset "UTF-8";
body, div, section, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  text-size-adjust: 100%;
  word-break: break-all;
  line-break: strict;
  hyphens: auto;
  text-align: justify;
  line-height: 1.8rem;
}

html {
  overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

fieldset, img {
  border: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

br {
  letter-spacing: 0;
}

/* ------------------------------------- 
  header
------------------------------------- */
header {
  position: relative;
  width: 94%;
  max-height: 250px;
  margin: 0 auto;
  padding: 4% 0;
}

header .company-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 50px;
}
header .company-logo .logo {
  position: relative;
  width: 8.3%;
  max-width: 150px;
}
header .company-logo .logo::before {
  content: "";
  display: block;
  padding-top: 100%;
}
header .company-logo .logo__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
header .company-logo p {
  font-size: clamp(20px, 16px + 1.25vw, 40px);
  line-height: 4rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  color: #FFFFFF;
}
header .company-logo p span {
  font-size: 70%;
}

header nav ul {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: grid;
  justify-content: flex-start;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px;
}
header nav ul li {
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  width: 220px;
  height: 80px;
  padding: 20px 23px;
  transition: all 0.3s;
}
header nav ul li:hover {
  opacity: 0.85;
}
header nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
header nav ul li a .icon {
  display: block;
  max-width: 40px;
  line-height: 0;
}
header nav ul li a p {
  width: calc(100% - 40px);
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  line-height: 1.3rem;
}
header nav ul li a p span.sub {
  display: block;
  font-size: 0.75rem;
  font-weight: normal;
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
}
header nav ul li.header-contact {
  background: #FFFFFF;
}
header nav ul li.header-contact a p {
  color: #2182D6;
}

.top-header {
  margin-bottom: 4%;
}

.page-header--wrap {
  background-image: linear-gradient(60deg, #36AED4 0%, #2182D6 100%);
}

@media screen and (max-width: 1440px) {
  header .company-logo {
    gap: 0 30px;
  }
  header nav ul {
    gap: 0 10px;
  }
}
@media screen and (max-width: 1280px) {
  header .company-logo .logo {
    width: 80px;
  }
  header nav ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    border-width: 1px;
    width: 80px;
    padding: 10px;
  }
  header nav ul li a {
    flex-direction: column;
  }
  header nav ul li a .icon {
    width: 60%;
  }
  header nav ul li a p {
    width: 100%;
  }
  .top-header {
    margin-bottom: 6%;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 30px 0;
  }
  header .company-logo {
    gap: 0 10px;
  }
  header .company-logo .logo {
    width: 50px;
  }
  header .company-logo p {
    font-size: 1.25rem;
    line-height: 1.6rem;
    letter-spacing: 0.1rem;
  }
  header .company-logo p span {
    display: block;
  }
  header nav ul {
    gap: 0 5px;
  }
  header nav ul li {
    border-radius: 5px;
    width: 50px;
    height: 50px;
    padding: 0;
  }
  header nav ul li a icon {
    width: 80%;
  }
  header nav ul li a p {
    line-height: 1rem;
  }
  header nav ul li a p span.sub {
    font-size: 0.6875rem;
  }
  .top-header {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 480px) {
  header {
    padding: 20px 0;
  }
  header .company-logo .logo {
    width: 40px;
  }
  header .company-logo p {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
  header nav ul li {
    width: 40px;
    height: 40px;
  }
  header nav ul li a icon {
    width: 70%;
  }
  header nav ul li a p span.sub {
    font-size: 0.625rem;
  }
}
/* ------------------------------------- 
  page-title
------------------------------------- */
.page-title {
  width: 89.3%;
  margin: 110px auto 140px;
}
.page-title h1 span {
  display: block;
  font-size: 1.5625rem;
  color: #36AED4;
  letter-spacing: 0;
  line-height: 1.2rem;
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 1024px) {
  .page-title {
    width: 90%;
    margin: 70px auto;
  }
  .page-title h1 {
    text-align: center;
  }
  .page-title h1 span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .page-title {
    margin: 50px auto;
  }
  .page-title h1 span {
    font-size: 1rem;
  }
}

/* ------------------------------------- 
  base
------------------------------------- */
html {
  background-color: #f5f5f5;
}

main {
  width: 89.3%;
  margin: 0 auto;
}

/* ------------------------------------- 
  font・text
------------------------------------- */
/* font ******/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  color: #3C484B;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: 0.2rem;
}

h1 {
  font-size: 3.75rem;
  line-height: 6rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 4rem;
}

h3, h4 {
  font-size: 1.5625rem;
}

p, dl, dt, li, th, td, a {
  font-size: 1.25rem;
  line-height: 2.5rem;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
    line-height: 4rem;
  }
  h2 {
    font-size: 1.875rem;
    line-height: 3rem;
  }
  h3, h4 {
    font-size: 1.25rem;
  }
  p, dl, dt, li, th, td, a {
    font-size: 1.125rem;
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.875rem;
    line-height: 3rem;
  }
  h2 {
    font-size: 1.5625rem;
    line-height: 2.5rem;
  }
  h3, h4 {
    font-size: 1.125rem;
  }
  p, dl, dt, li, th, td, a {
    font-size: 1rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.5625rem;
    line-height: 2.5rem;
  }
  h2 {
    font-size: 1.25rem;
    line-height: 2rem;
  }
  h3, h4 {
    letter-spacing: 0.1rem;
  }
  p, dl, dt, li, th, td, a {
    font-size: 0.875rem;
    line-height: 1.6rem;
  }
}
/* text ******/
.txt_bold {
  font-weight: bold;
}

.txt_normal {
  font-weight: normal;
}

.txt_blue {
  color: #36AED4;
}

.txt_pink {
  color: #FF0C5F;
}

.txt_red {
  color: #DE0000;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

/* ------------------------------------- 
  a
------------------------------------- */
a {
  color: #3C484B;
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
}

.type-line {
  position: relative;
  padding-bottom: 5px;
  display: inline;
  background: linear-gradient(transparent 94%, #3C484B 0%);
}
.type-line:hover {
  background: none;
}

/* ------------------------------------- 
  layout
------------------------------------- */
.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

/* PC SP ******/
.sp-480, .sp, .sp-960, .sp-1024, .sp-1280, .sp-1440, .sp-1536 {
  display: none !important;
}

@media (max-width: 1536px) {
  .sp-1536 {
    display: block !important;
  }
  .pc-1536 {
    display: none !important;
  }
}
@media (max-width: 1536px) {
  .sp-1536 {
    display: block !important;
  }
  .pc-1536 {
    display: none !important;
  }
}
@media (max-width: 1440px) {
  .sp-1440 {
    display: block !important;
  }
  .pc-1440 {
    display: none !important;
  }
}
@media (max-width: 1280px) {
  .sp-1280 {
    display: block !important;
  }
  .pc-1280 {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .sp-1024 {
    display: block !important;
  }
  .pc-1024 {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .sp-960 {
    display: block !important;
  }
  .pc-960 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .sp-480 {
    display: block !important;
  }
  .pc-480 {
    display: none !important;
  }
}
/* ------------------------------------- 
  block-shadow
------------------------------------- */
.block-shadow {
  position: absolute;
  z-index: -1;
  bottom: -100px;
}

/* ------------------------------------- 
  page-common
------------------------------------- */
.page-common {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.page-common .page-main {
  width: calc(100% - 400px);
}
.page-common .page-main__lead {
  margin-bottom: 100px;
}
.page-common .page-main__lead p {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: 0.1rem;
}
.page-common .page-main .box {
  background: #FFFFFF;
  border-radius: 30px;
  margin-bottom: 100px;
  padding: 100px;
}
.page-common .page-main .box:last-child {
  margin-bottom: 0;
}
.page-common .page-main .box .title {
  margin-bottom: 70px;
}
.page-common .page-menu {
  position: sticky;
  top: 100px;
  border: 3px solid #36AED4;
  border-radius: 20px;
  width: 300px;
  height: auto;
  min-height: 300px;
  padding: 30px;
}
.page-common .page-menu li {
  padding-bottom: 10px;
}
.page-common .page-menu li a.type-line {
  font-size: clamp(16px, 14.2px + 0.5625vw, 25px);
  font-weight: 700;
  color: #36AED4;
  background: linear-gradient(transparent 94%, #36AED4 0%);
}
.page-common .page-menu li a.type-line:hover {
  background: none;
}
@media screen and (max-width: 1536px) {
  .page-common .page-main {
    width: calc(100% - 320px);
  }
}
@media screen and (max-width: 1440px) {
  .page-common .page-main .box {
    padding: 70px;
  }
  .page-common .page-main .box .title {
    margin-bottom: 50px;
  }
  .page-common .page-menu {
    width: 270px;
  }
  .page-common .page-menu li a.type-line {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .page-common {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  .page-common .page-main {
    width: 100%;
  }
  .page-common .page-main__lead {
    margin-bottom: 70px;
  }
  .page-common .page-main__lead p {
    font-size: 1.25rem;
    line-height: 2.5rem;
  }
  .page-common .page-main .box {
    margin-bottom: 70px;
  }
  .page-common .page-menu {
    top: 20px;
    border-radius: 100px;
    background: #FFFFFF;
    max-width: 350px;
    width: 100%;
    min-height: auto;
    height: 60px;
    padding: 0;
    box-sizing: border-box;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .page-common .page-main {
    width: 100%;
  }
  .page-common .page-main__lead {
    margin-bottom: 50px;
  }
  .page-common .page-main__lead p {
    font-size: 1rem;
    line-height: 2rem;
  }
  .page-common .page-main .box {
    border-radius: 20px;
    margin-bottom: 50px;
    padding: 50px;
  }
  .page-common .page-menu {
    height: 50px;
  }
}
@media screen and (max-width: 480px) {
  .page-common .page-main .box {
    padding: 40px 30px 30px;
  }
  .page-common .page-main .box .title {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1025px) {
  .drop-menu_title {
    display: none !important;
  }
  .drop-menu_list {
    position: static !important;
  }
}
@media screen and (max-width: 1024px) {
  .drop-menu_title {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #36AED4;
    box-sizing: border-box;
  }
  .drop-menu_title::after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
    font-size: 0.875rem;
  }
  .drop-menu_title.active::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .drop-menu_list {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: -3px;
    background-color: #FFFFFF;
    border-radius: 30px;
    border: 3px solid #36AED4;
    width: calc(100% + 6px);
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .drop-menu_title {
    font-size: 1rem;
    line-height: 1.4rem;
  }
}
/* ------------------------------------- 
  page-common2
  プライバシーポリシーやお問い合わせなど
------------------------------------- */
.page-common2 {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}
.page-common2__lead {
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .page-common2__lead {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .page-common2__lead {
    margin-bottom: 40px;
  }
}

/* ------------------------------------- 
  slider
------------------------------------- */
.slider_dots {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.slider_dots li {
  width: 10px;
  height: 10px;
  margin: 0 10px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
}
.slider_dots li:hover, .slider_dots li.slick-active {
  background: #3C484B;
}
.slider_dots li button {
  display: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

/* ------------------------------------- 
  phone
------------------------------------- */
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
form.form-detail input[type=text], form.form-detail input[type=tel], form.form-detail input[type=email] {
  width: 100%;
  height: 60px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 15px;
}
form.form-detail input[type=radio], form.form-detail input[type=checkbox] {
  appearance: none;
  position: relative;
  cursor: pointer;
  border: 1px solid #C5C5C5;
  margin-right: 10px;
}
form.form-detail input[type=radio] {
  top: 1px;
  width: 15px;
  height: 15px;
  border-radius: 9999px;
}
form.form-detail input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 9px;
  height: 9px;
  margin: auto;
  border-radius: 9999px;
  background-color: #3C484B;
}
form.form-detail input[type=checkbox] {
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
}
form.form-detail input[type=checkbox]:checked {
  background-color: #3C484B;
}
form.form-detail input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  transform: rotate(-45deg);
}
form.form-detail .input-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10%;
  background-color: #FFFFFF;
  border-radius: 10px;
  width: 100%;
  height: 60px;
  padding: 15px;
}
form.form-detail label {
  font-size: 1rem;
}
form.form-detail textarea {
  padding: 15px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 300px;
  box-sizing: border-box;
}
form.form-detail .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(60deg, #36AED4 0%, #2182D6 100%);
  border-radius: 10px;
  color: #FFFFFF;
  max-width: 500px;
  width: 100%;
  height: 100px;
  font-weight: 600;
  text-align: center;
  margin: 50px auto 0;
}
form.form-detail .button::before, form.form-detail .button::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 30px;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  transform-origin: calc(100% - 1px) 50%;
  transition: all 0.3s;
}
form.form-detail .button::before {
  transform: rotate(47.5deg);
}
form.form-detail .button::after {
  transform: rotate(-47.5deg);
}
form.form-detail .button:hover {
  opacity: 0.8;
}
form.form-detail .button:hover::before, form.form-detail .button:hover::after {
  right: 25px;
}
form.form-detail .button input[type=submit] {
  cursor: pointer;
  display: block;
  border: 0;
  background: none;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  form.form-detail .input-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    height: auto;
  }
  form.form-detail .button {
    margin-top: 30px;
    max-width: 300px;
    height: 60px;
  }
  form.form-detail .button input[type=submit] {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

#page_top {
  position: fixed;
  width: 65px;
  right: 5%;
  z-index: 9997;
}
#page_top img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
#page_top p {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.2;
}
#page_top:hover {
  cursor: pointer;
  text-decoration: none;
}

/* ------------------------------------- 
  footer coomon
------------------------------------- */
footer {
  margin-top: 250px;
}
@media screen and (max-width: 960px) {
  footer {
    margin-top: 150px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    width: 100%;
    margin: 100px auto 0;
  }
}

/* ------------------------------------- 
  footer-contact
------------------------------------- */
.footer-contact {
  position: relative;
}
.footer-contact .wrap {
  background: #FFFFFF;
  border-radius: 30px;
  max-width: 1800px;
  width: 67.7%;
  margin: 0 auto;
  padding: 70px 50px;
}
.footer-contact .lead {
  text-align: center;
}
.footer-contact .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(60deg, #36AED4 0%, #2182D6 100%);
  border-radius: 10px;
  color: #FFFFFF;
  max-width: 500px;
  width: 100%;
  height: 100px;
  font-weight: 600;
  text-align: center;
  margin: 30px auto 0;
}
.footer-contact .button::before, .footer-contact .button::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 30px;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  transform-origin: calc(100% - 1px) 50%;
  transition: all 0.3s;
}
.footer-contact .button::before {
  transform: rotate(47.5deg);
}
.footer-contact .button::after {
  transform: rotate(-47.5deg);
}
.footer-contact .button:hover {
  opacity: 0.8;
}
.footer-contact .button:hover::before, .footer-contact .button:hover::after {
  right: 25px;
}
.footer-contact .block-shadow {
  max-width: 1800px;
  width: 67.7%;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .footer-contact .wrap {
    width: 80%;
  }
}
@media screen and (max-width: 960px) {
  .footer-contact .wrap {
    padding: 50px;
  }
}
@media screen and (max-width: 768px) {
  .footer-contact {
    width: 90%;
    margin: 0 auto;
  }
  .footer-contact .wrap {
    border-radius: 20px;
    width: 100%;
  }
  .footer-contact .button {
    max-width: 300px;
    height: 60px;
    margin-top: 20px;
  }
  .footer-contact .block-shadow {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .footer-contact .wrap {
    padding: 30px;
  }
  .footer-contact .block-shadow {
    bottom: -30px;
  }
}

/* ------------------------------------- 
  footer-sitemap
------------------------------------- */
.footer-sitemap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1800px;
  width: 88.5%;
  margin: 200px auto 0;
}

.footer-sitemap__company {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
}
.footer-sitemap__company .logo {
  max-width: 102px;
}
.footer-sitemap__company h2 {
  font-size: 1.875rem;
  line-height: 2.5rem;
}

.footer-sitemap__list {
  display: grid;
  justify-content: flex-end;
  align-items: flex-start;
  grid-template-columns: 4fr 4fr 3fr;
  gap: 30px;
}
.footer-sitemap__list .box {
  padding-right: 20px;
}
.footer-sitemap__list .box:last-child {
  padding-right: 0;
}
.footer-sitemap__list .box p a {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 3.5rem;
}
.footer-sitemap__list .box ul {
  margin-top: 10px;
}
.footer-sitemap__list .box ul li a {
  position: relative;
  margin-left: 12px;
  padding-left: 25px;
  line-height: 3rem;
  font-weight: 700;
}
.footer-sitemap__list .box ul li a::before, .footer-sitemap__list .box ul li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #3C484B;
  transform-origin: calc(100% - 1px) 50%;
  transition: all 0.3s;
}
.footer-sitemap__list .box ul li a::before {
  transform: rotate(47.5deg);
}
.footer-sitemap__list .box ul li a::after {
  transform: rotate(-47.5deg);
}
.footer-sitemap__list .box ul li a:hover::before, .footer-sitemap__list .box ul li a:hover::after {
  left: 5px;
}

@media screen and (max-width: 1366px) {
  .footer-sitemap {
    width: 90%;
  }
  .footer-sitemap__list {
    gap: 0;
  }
}
@media screen and (max-width: 1280px) {
  .footer-sitemap__company h2 {
    font-size: 1.5625rem;
    letter-spacing: 0.1rem;
  }
  .footer-sitemap__list .box {
    padding-right: 10px;
  }
  .footer-sitemap__list .box p a {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-sitemap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  .footer-sitemap__company {
    align-items: center;
  }
  .footer-sitemap__list {
    gap: 20px;
  }
  .footer-sitemap__list .box {
    padding-right: 0;
  }
  .footer-sitemap__list .box p a {
    font-size: 1.25rem;
  }
  .footer-sitemap__list .box ul li a {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer-sitemap {
    width: 100%;
    margin-top: 150px;
  }
  .footer-sitemap__company {
    width: 90%;
    margin: 0 auto;
    gap: 10px;
  }
  .footer-sitemap__company .logo {
    max-width: 80px;
    padding-bottom: 10px;
  }
  .footer-sitemap__company h2 {
    font-size: 1.25rem;
  }
  .footer-sitemap__list {
    display: block;
    width: 100%;
  }
  .footer-sitemap__list .box {
    margin-top: 10px;
  }
  .footer-sitemap__list .box p a {
    margin-left: 20px;
    font-size: 1rem;
    line-height: 2.5rem;
  }
  .footer-sitemap__list .box ul li a {
    margin-left: 5px;
    line-height: 2rem;
  }
  .footer-sitemap__list .box ul li a::before, .footer-sitemap__list .box ul li a::after {
    width: 8px;
    height: 1px;
  }
}
@media screen and (max-width: 480px) {
  .footer-sitemap {
    margin-top: 120px;
  }
}
/* ------------------------------------- 
  footer-sitemap accordion
------------------------------------- */
.footer-sitemap__list .accordion-header {
  display: none;
}
.footer-sitemap__list .accordion-content {
  display: block;
}
@media screen and (max-width: 768px) {
  .footer-sitemap__list .accordion {
    margin-top: 0;
  }
  .footer-sitemap__list .accordion-last {
    border-bottom: 1px solid #C5C5C5;
  }
  .footer-sitemap__list .accordion-header {
    display: block;
    border-top: 1px solid #C5C5C5;
    padding: 20px 45px 20px 20px;
    margin: 0;
    transition: background 0.3s ease;
    cursor: pointer;
    position: relative;
  }
  .footer-sitemap__list .accordion-header::before, .footer-sitemap__list .accordion-header::after {
    position: absolute;
    content: "";
    top: 1px;
    right: 20px;
    bottom: 0;
    width: 20px;
    height: 2px;
    margin: auto;
    background: #3C484B;
  }
  .footer-sitemap__list .accordion-header::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
  }
  .footer-sitemap__list .accordion-header.active::after {
    transform: rotate(0deg);
  }
  .footer-sitemap__list .accordion-header p {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
  }
  .footer-sitemap__list .accordion-content {
    display: none;
    padding: 0px 20px 30px;
  }
}

/* ------------------------------------- 
  footer-copyright
------------------------------------- */
.footer-copyright {
  width: 88.5%;
  margin: 50px auto 100px;
  text-align: right;
}
.footer-copyright p {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    margin-top: 30px;
    text-align: center;
  }
  .footer-copyright p {
    font-size: 0.75rem;
  }
}

/* ------------------------------------- 
  footer-menu
------------------------------------- */
.footer-menu {
  position: fixed;
  display: block;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background-image: linear-gradient(60deg, #36AED4 0%, #2182D6 100%);
  border-radius: 100px;
  width: 630px;
  height: 80px;
  z-index: 9998;
  opacity: 0;
}

.footer-menu__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 500px;
  height: 100%;
  padding-left: 50px;
}
.footer-menu__list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.footer-menu__list li a::after {
  content: "";
  position: absolute;
  border-bottom: 2px solid transparent;
  left: 0;
  bottom: 0px;
  width: 100%;
  transition: all 0.3s;
}
.footer-menu__list li a:hover::after {
  border-bottom-color: #FFFFFF;
}
.footer-menu__list li a p {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.125rem;
}
.footer-menu__list li:first-child a:hover::after {
  border-bottom-color: transparent;
}
.footer-menu__list li.active a::after {
  border-bottom: 2px solid #FFFFFF;
}

.footer-menu__hamburger-menu .hamburger {
  display: block;
  position: fixed;
  z-index: 9999;
  right: 10px;
  top: 11px;
  right: 50px;
  width: 40px;
  height: 80px;
  cursor: pointer;
  text-align: center;
  /* スマホメニューを開いてる時のボタン */
}
.footer-menu__hamburger-menu .hamburger p {
  position: absolute;
  top: 20px;
  width: 100%;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 0;
  letter-spacing: 0;
  text-align: center;
}
.footer-menu__hamburger-menu .hamburger span {
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background: #FFFFFF;
  transition: 0.3s all;
}
.footer-menu__hamburger-menu .hamburger span:nth-child(2) {
  top: 35px;
}
.footer-menu__hamburger-menu .hamburger span:nth-child(3) {
  top: 41px;
}
.footer-menu__hamburger-menu .hamburger.active span:nth-child(2) {
  top: 38px;
  transform: rotate(-10deg);
}
.footer-menu__hamburger-menu .hamburger.active span:nth-child(3) {
  top: 38px;
  transform: rotate(10deg);
}

@media screen and (max-width: 1024px) {
  .footer-menu {
    width: 270px;
    height: 60px;
  }
  .footer-menu__list {
    max-width: 170px;
    padding-left: 45px;
  }
  .footer-menu__list li a:hover::after {
    border-bottom-color: transparent;
  }
  .footer-menu__list li.active a::after {
    border-bottom: none;
  }
  .footer-menu__hamburger-menu .hamburger {
    top: 0;
    right: 45px;
    width: 30px;
  }
  .footer-menu__hamburger-menu .hamburger p {
    font-size: 0.75rem;
  }
  .footer-menu__hamburger-menu .hamburger span {
    width: 30px;
  }
  .footer-menu__hamburger-menu .hamburger span:nth-child(2) {
    top: 33px;
  }
  .footer-menu__hamburger-menu .hamburger span:nth-child(3) {
    top: 39px;
  }
  .footer-menu__hamburger-menu .hamburger.active span:nth-child(2) {
    top: 36px;
  }
  .footer-menu__hamburger-menu .hamburger.active span:nth-child(3) {
    top: 36px;
  }
}
/* ------------------------------------- 
  footer-menu 開いてる状態のメニュー
------------------------------------- */
.globalMenu {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 9997;
  top: 0;
  right: 0;
  background-color: rgba(60, 72, 75, 0.8);
  backdrop-filter: blur(20px);
  text-align: center;
  width: 100%;
  transition: all 0.6s;
  height: 100vh;
  color: #3C484B;
  /* クリックでjQueryで追加・削除 */
}
.globalMenu .wrap {
  width: 90%;
  margin: 50px auto;
}
.globalMenu h2 {
  text-align: left;
  color: #FFFFFF;
}
.globalMenu h2 span {
  font-size: 70%;
}
.globalMenu .footer-sitemap__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 50px;
}
.globalMenu .footer-sitemap__list .box {
  text-align: left;
}
.globalMenu .footer-sitemap__list .box p, .globalMenu .footer-sitemap__list .box p a, .globalMenu .footer-sitemap__list .box ul li a {
  color: #FFFFFF;
}
.globalMenu .footer-sitemap__list .box li a::before, .globalMenu .footer-sitemap__list .box li a::after {
  background-color: #FFFFFF;
}
.globalMenu .footer-sitemap__list .box .type-line {
  background: linear-gradient(transparent 94%, #ffffff 0%);
}
.globalMenu .footer-sitemap__list .box .type-line:hover {
  background: transparent;
}
.globalMenu.active {
  opacity: 100;
  pointer-events: auto;
  display: block;
}
@media screen and (max-width: 1366px) {
  .globalMenu .footer-sitemap__list {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .globalMenu .wrap {
    width: 100%;
  }
  .globalMenu h2 {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .globalMenu h2 span {
    font-size: 100%;
  }
  .globalMenu .footer-sitemap__list {
    display: block;
  }
  .globalMenu .footer-sitemap__list .accordion-header::before, .globalMenu .footer-sitemap__list .accordion-header::after {
    background: #FFFFFF;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  animation-timing-function: ease-out;
  opacity: 0;
}
.animated.infinite {
  animation-iteration-count: infinite;
}

/* ------------------------------------- 
  animation
------------------------------------- */
/* fadeIn **************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

/* fadeInLeft **************************/
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

/* fadeInRight **************************/
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

/* fadeInUp **************************/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes rote {
  0%, 100% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}
/* fluffy **************************/
@keyframes fluffy1 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fluffy2 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-5px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
/* zoomIn **************************/
@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomInFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoomInFade {
  animation-name: zoomInFade;
}

/* blurIn **************************/
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.blurIn {
  animation-name: blurIn;
}

/* noFilter **************************/
@keyframes noFilter {
  100% {
    opacity: 1;
    filter: none;
  }
}
.noFilter {
  animation-name: noFilter;
}

@keyframes noTransform {
  100% {
    opacity: 1;
    transform: none;
  }
}
.noTransform {
  animation-name: noTransform;
}

/* lineanime **************************/
.lineanime {
  fill: none;
  stroke: #ffffff;
  stroke-width: 19;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1800px;
  stroke-dashoffset: 1800px;
  animation: line 2.5s 0.1s forwards;
}
.lineanime.st2 {
  animation-delay: 0.3s;
}
.lineanime.st3 {
  animation-delay: 0.6s;
}
.lineanime.st4 {
  animation-delay: 0.9s;
}
.lineanime.st5 {
  animation-delay: 1.2s;
}
.lineanime.st6 {
  animation-delay: 1.5s;
}
.lineanime.st7 {
  animation-delay: 1.8s;
}

@keyframes line {
  0% {
    stroke-dashoffset: 1800px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* scaleDown **************************/
@keyframes scaleDown {
  0% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.scaleDown {
  animation-name: scaleDown;
  transform: scale(1.2);
  opacity: 1 !important;
}

/* scaleUP **************************/
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.scaleUp {
  animation-name: scaleUp;
  transform: scale(1);
  opacity: 1 !important;
}

/* passing **************************/
.passing {
  display: block;
}

.passing .passing-bar {
  position: relative;
  display: inline-block;
  transform: translate3d(0, 0, 0);
}

.passing .passing-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.passing .passing-txt {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.passing.move .passing-txt {
  animation: passing-txt 0s ease 0.5s 1 normal forwards;
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*passingLeft*/
.passingL.passing-bar:before {
  left: 0;
}

.passingL.move .passing-bar:before {
  animation: passing-barL 1s ease 0s 1 normal forwards;
}

@keyframes passing-barL {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
/*passingRight*/
.passingR.passing-bar:before {
  right: 0;
}

.passingR.move .passing-bar:before {
  animation: passing-barR 1s ease 0s 1 normal forwards;
}

@keyframes passing-barR {
  0% {
    right: 0;
    width: 0;
  }
  50% {
    right: 0;
    width: 100%;
  }
  51% {
    right: 0;
    width: 100%;
  }
  100% {
    right: 100%;
    width: 0;
  }
}
/* txt_popout **************************/
.txt_popout {
  overflow: hidden;
}

.txt_popout.move p {
  transform: translateY(2em);
  animation: textanimation 1s forwards;
}

.txt_popout p:nth-child(1) {
  animation-delay: 0.05s;
}

.txt_popout p:nth-child(2) {
  animation-delay: 0.1s;
}

.txt_popout p:nth-child(3) {
  animation-delay: 0.15s;
}

.txt_popout p:nth-child(4) {
  animation-delay: 0.2s;
}

.txt_popout p:nth-child(5) {
  animation-delay: 0.25s;
}

.txt_popout p:nth-child(6) {
  animation-delay: 0.3s;
}

.txt_popout p:nth-child(7) {
  animation-delay: 0.35s;
}

.txt_popout p:nth-child(8) {
  animation-delay: 0.4s;
}

.txt_popout p:nth-child(9) {
  animation-delay: 0.45s;
}

.txt_popout p:nth-child(10) {
  animation-delay: 0.5s;
}

.txt_popout p:nth-child(11) {
  animation-delay: 0.55s;
}

.txt_popout p:nth-child(12) {
  animation-delay: 0.6s;
}

@keyframes textanimation {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
/* txt_popout2_out **************************/
.txt_popout2_out {
  display: block;
}

.txt_popout2_out span.l {
  display: inline-block;
  line-height: 1;
  vertical-align: top;
}
.txt_popout2_out.move span.l {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.15s linear, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt_popout2_out.move span.l_0 {
  transition-delay: 0s;
}
.txt_popout2_out.move span.l_1 {
  transition-delay: 0.02s;
}
.txt_popout2_out.move span.l_2 {
  transition-delay: 0.04s;
}
.txt_popout2_out.move span.l_3 {
  transition-delay: 0.06s;
}
.txt_popout2_out.move span.l_4 {
  transition-delay: 0.08s;
}
.txt_popout2_out.move span.l_5 {
  transition-delay: 0.1s;
}
.txt_popout2_out.move span.l_6 {
  transition-delay: 0.12s;
}
.txt_popout2_out.move span.l_7 {
  transition-delay: 0.14s;
}
.txt_popout2_out.move span.l_8 {
  transition-delay: 0.16s;
}
.txt_popout2_out.move span.l_9 {
  transition-delay: 0.18s;
}
.txt_popout2_out.move span.l_10 {
  transition-delay: 0.2s;
}
.txt_popout2_out.move span.l_11 {
  transition-delay: 0.22s;
}

/* txt_popout2_in **************************/
.txt_popout2_in {
  display: block;
}

.txt_popout2_in span.l {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.15s linear, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt_popout2_in.move span.l {
  display: inline-block;
  line-height: 1;
  vertical-align: top;
  opacity: 1;
  transform: none;
  transition: opacity 0.2s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt_popout2_in.move span.l_0 {
  transition-delay: 0.5s;
}
.txt_popout2_in.move span.l_1 {
  transition-delay: 0.52s;
}
.txt_popout2_in.move span.l_2 {
  transition-delay: 0.54s;
}
.txt_popout2_in.move span.l_3 {
  transition-delay: 0.56s;
}
.txt_popout2_in.move span.l_4 {
  transition-delay: 0.58s;
}
.txt_popout2_in.move span.l_5 {
  transition-delay: 0.6s;
}
.txt_popout2_in.move span.l_6 {
  transition-delay: 0.62s;
}
.txt_popout2_in.move span.l_7 {
  transition-delay: 0.64s;
}
.txt_popout2_in.move span.l_8 {
  transition-delay: 0.66s;
}
.txt_popout2_in.move span.l_9 {
  transition-delay: 0.68s;
}
.txt_popout2_in.move span.l_10 {
  transition-delay: 0.7s;
}
.txt_popout2_in.move span.l_11 {
  transition-delay: 0.72s;
}

/* txt_marker **************************/
.txt_marker {
  display: inline;
  position: relative;
}

.txt_marker::before {
  content: "";
  width: 0;
  display: block;
  position: absolute;
  top: -7px;
  left: 0;
  z-index: -2;
}

.txt_marker.move::before {
  animation: markerAnime 1s forwards ease;
}

@keyframes markerAnime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* img-slide **************************/
.img-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  line-height: 0;
}

.img-slide:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  z-index: 1;
  transform-origin: right center;
  transform: scaleX(1);
  transition: width 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.img-slide img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  top: -50%;
  left: -100%;
  transition: 0.7s;
}

.img-slide--move img {
  opacity: 1;
  left: 0;
}

.img-slide--move.img-slide:before {
  transform: scaleX(0);
  width: 100%;
}

/* slideIn **************************/
/*slideInL*/
.slideInL {
  position: relative;
  overflow: hidden;
}

.slideInL::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideInL--move::after {
  animation: slideInL 1.5s ease-in-out forwards;
}

@keyframes slideInL {
  0% {
    left: 0;
  }
  70% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/*slideInR*/
.slideInR {
  position: relative;
  overflow: hidden;
}

.slideInR::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}

.slideInR--move::after {
  animation: slideInR 1.5s ease-in-out forwards;
}

@keyframes slideInR {
  0% {
    right: 0;
  }
  70% {
    right: 100%;
  }
  100% {
    right: 100%;
  }
}
/*slideInT*/
.slideInT {
  position: relative;
  overflow: hidden;
}

.slideInT::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideInT--move::after {
  animation: slideInT 1.5s ease-in-out forwards;
}

@keyframes slideInT {
  0% {
    top: 0;
  }
  70% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
/*slideInB*/
.slideInB {
  position: relative;
  overflow: hidden;
}

.slideInB::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.slideInB--move::after {
  animation: slideInB 1.5s ease-in-out forwards;
}

@keyframes slideInB {
  0% {
    bottom: 0%;
  }
  70% {
    bottom: 100%;
  }
  100% {
    bottom: 100%;
  }
}
/* slideOut **************************/
/*slideOutL*/
.slideOutL {
  position: relative;
  overflow: hidden;
}

.slideOutL::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  z-index: 1;
}

.slideOutL--move::after {
  animation: slideOutL 1.5s ease-in-out forwards;
}

@keyframes slideOutL {
  0% {
    right: 100%;
  }
  70% {
    right: 0;
  }
  100% {
    right: 0;
  }
}
/*slideOutR*/
.slideOutR {
  position: relative;
  overflow: hidden;
}

.slideOutR::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 1;
}

.slideOutR--move::after {
  animation: slideOutR 1.5s ease-in-out forwards;
}

@keyframes slideOutR {
  0% {
    left: 100%;
  }
  70% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
/*slideOutT*/
.slideOutT {
  position: relative;
  overflow: hidden;
}

.slideOutT::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 100%;
  left: 0;
  z-index: 1;
}

.slideOutT--move::after {
  animation: slideOutT 1.5s ease-in-out forwards;
}

@keyframes slideOutT {
  0% {
    bottom: 100%;
  }
  70% {
    bottom: 0;
  }
  100% {
    bottom: 0;
  }
}
/*slideOutB*/
.slideOutB {
  position: relative;
  overflow: hidden;
}

.slideOutB::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  z-index: 1;
}

.slideOutB--move::after {
  animation: slideOutB 1.5s ease-in-out forwards;
}

@keyframes slideOutB {
  0% {
    top: 100%;
  }
  70% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
/* liner **************************/
/*linerLeft*/
.linerLeft:before {
  content: "";
  position: absolute;
  left: 0;
}

.linerLeft:before {
  animation: linerLeft 1s ease-in-out forwards;
}

@keyframes linerLeft {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerRight*/
.linerRight:before {
  content: "";
  position: absolute;
  left: 100%;
  transform: translateX(-100%);
  animation: linerRight 1s ease-in-out forwards;
}

@keyframes linerRight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerTop*/
.linerTop:before {
  content: "";
  position: absolute;
  top: 0;
  animation: linerTop 1s ease-in-out forwards;
}

@keyframes linerTop {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*linerBottom*/
.linerBottom:before {
  content: "";
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
  animation: linerBottom 1s ease-in-out forwards;
}

@keyframes linerBottom {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/* ------------------------------------- 
  delay
------------------------------------- */
.delay1 {
  animation-delay: 0.1s !important;
}

.delay2 {
  animation-delay: 0.2s !important;
}

.delay3 {
  animation-delay: 0.3s !important;
}

.delay4 {
  animation-delay: 0.4s !important;
}

.delay5 {
  animation-delay: 0.5s !important;
}

.delay6 {
  animation-delay: 0.6s !important;
}

.delay7 {
  animation-delay: 0.7s !important;
}

.delay8 {
  animation-delay: 0.8s !important;
}

.delay9 {
  animation-delay: 0.9s !important;
}

.delay10 {
  animation-delay: 1s !important;
}

.delay11 {
  animation-delay: 1.1s !important;
}

a {
  transition-duration: 0.3s;
}

/* ------------------------------------- 
  mv-top
------------------------------------- */
.mv-top--wrap {
  position: relative;
}
.mv-top--wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(60deg, #36AED4 0%, #2182D6 100%);
  width: 100%;
  max-height: 680px;
  height: 100vh;
  z-index: -1;
}

.mv-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 94%;
  margin: 0 auto 70px;
}
.mv-top__slider--wrap {
  position: relative;
  top: -70px;
  left: 0;
  width: 60%;
  z-index: 1;
}
.mv-top__slider--wrap .block-shadow {
  z-index: -1;
  bottom: -70px;
}
.mv-top__slider .slick {
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.mv-top__slider .slick img {
  object-fit: contain;
}
.mv-top__slider .slider_dots {
  right: 60px;
  bottom: 30px;
}
.mv-top__text {
  padding: 0 100px;
}
.mv-top__text h2 {
  padding-bottom: 70px;
  font-size: clamp(40px, -50px + 4.6875vw, 70px);
  line-height: 6.5rem;
}
.mv-top__text p {
  font-weight: 600;
  font-size: 1.125rem;
}
.mv-top__bg {
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/top/mv-wave_pc.svg) center bottom/100% no-repeat #fff;
  border-radius: 30px;
  width: 91%;
  height: 100%;
  z-index: -1;
}
.mv-top .block-shadow {
  z-index: -2;
}

@media screen and (max-width: 1920px) {
  .mv-top__text {
    padding: 0 5.6%;
  }
  .mv-top__text h2 {
    padding-bottom: 13.3%;
    font-size: 2.5rem;
    line-height: 4rem;
  }
  .mv-top__text p {
    font-size: clamp(14px, 13.2px + 0.25vw, 18px);
  }
}
@media (max-width: 1760px) {
  .pc-1760 {
    display: none !important;
  }
  .mv-top__text h2 {
    padding-bottom: 10%;
  }
}
@media screen and (max-width: 1536px) {
  .mv-top__text {
    padding: 50px 70px;
  }
  .mv-top__text p {
    line-height: 2rem;
  }
}
@media screen and (max-width: 1440px) {
  .mv-top__text h2 {
    font-size: 2.1875rem;
    line-height: 3.5rem;
  }
  .mv-top__text p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1280px) {
  .mv-top__text {
    padding: 50px;
  }
  .mv-top__text h2 {
    font-size: clamp(18px, 14px + 1.25vw, 30px);
    line-height: 3rem;
  }
  .mv-top__text p {
    font-size: clamp(12px, 10.6666666667px + 0.4166666667vw, 16px);
  }
}
@media screen and (max-width: 1024px) {
  .mv-top {
    display: block;
  }
  .mv-top__slider--wrap {
    top: -50px;
    width: 95%;
  }
  .mv-top__slider--wrap .block-shadow {
    bottom: -30px;
  }
  .mv-top__text {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    width: 95%;
    margin-left: auto;
    padding-top: 0;
    padding-bottom: 70px;
  }
  .mv-top__text h2 {
    width: 31.25%;
    padding-bottom: 0;
  }
  .mv-top__text p {
    width: 50%;
  }
  .mv-top__bg {
    width: 95%;
  }
  .mv-top .block-shadow {
    bottom: -50px;
  }
}
@media screen and (max-width: 960px) {
  .mv-top__text {
    margin-top: -20px;
    padding: 0px 50px 50px;
  }
  .mv-top__text h2 {
    line-height: 3rem;
  }
  .mv-top__text p {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .mv-top__slider--wrap {
    top: 0;
  }
  .mv-top__slider--wrap .block-shadow {
    bottom: -30px;
  }
  .mv-top__slider .slick {
    border-radius: 20px;
    height: 70vh;
    max-height: 450px;
  }
  .mv-top__slider .slick img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220%;
  }
  .mv-top__slider .slider_dots {
    right: 20px;
    bottom: 20px;
  }
  .mv-top__text {
    flex-direction: column;
    margin-top: 50px;
    padding: 0 50px 50px;
  }
  .mv-top__text h2, .mv-top__text p {
    width: 100%;
  }
  .mv-top__text h2 {
    font-size: 1.5625rem;
  }
  .mv-top__text p {
    font-size: 0.875rem;
    line-height: 1.8rem;
  }
  .mv-top__bg {
    top: 30px;
    background-image: url(../images/top/mv-wave_sp.svg);
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  .mv-top__text {
    margin-top: 30px;
    padding: 0 30px 0;
  }
  .mv-top__text h2 {
    font-size: 1.4375rem;
    line-height: 2.5rem;
  }
}
/* ------------------------------------- 
  top-common
------------------------------------- */
.section-top--common {
  position: relative;
  margin-top: 200px;
}
.section-top--common .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 50px;
}
.section-top--common .title .icon {
  border: 1px solid #36AED4;
  border-radius: 20px;
  max-width: 100px;
}
.section-top--common .title .icon img {
  width: 100%;
}
.section-top--common .title h2 {
  line-height: 3rem;
}
.section-top--common .title h2 span {
  display: block;
  color: #36AED4;
  font-size: 1rem;
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
  line-height: 2rem;
}
.section-top--common .contents {
  margin-top: 100px;
}
.section-top--common .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3C484B;
  border-radius: 10px;
  color: #ffffff;
  max-width: 310px;
  width: 100%;
  height: 100px;
  font-weight: 600;
  text-align: center;
}
.section-top--common .button::before, .section-top--common .button::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 30px;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1px) 50%;
  transition: all 0.3s;
}
.section-top--common .button::before {
  transform: rotate(47.5deg);
}
.section-top--common .button::after {
  transform: rotate(-47.5deg);
}
.section-top--common .button:hover {
  opacity: 0.8;
}
.section-top--common .button:hover::before, .section-top--common .button:hover::after {
  right: 25px;
}
.section-top--common .button--wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 310px;
}
@media screen and (max-width: 1024px) {
  .section-top--common {
    padding-bottom: 150px;
  }
  .section-top--common:last-child {
    padding-bottom: 0;
  }
  .section-top--common .title {
    flex-direction: column;
    gap: 20px;
  }
  .section-top--common .title h2 {
    text-align: center;
    line-height: 2rem;
  }
  .section-top--common .button {
    margin: 0 auto;
    max-width: 500px;
  }
  .section-top--common .button--wrap {
    top: auto;
    bottom: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .section-top--common {
    margin-top: 150px;
    padding-bottom: 130px;
  }
  .section-top--common .title h2 span {
    font-size: 0.875rem;
  }
  .section-top--common .contents {
    margin-top: 50px;
  }
  .section-top--common .button {
    height: 80px;
  }
}
@media screen and (max-width: 480px) {
  .section-top--common {
    margin-top: 120px;
    padding-bottom: 100px;
  }
  .section-top--common .title .icon {
    border-radius: 10px;
    max-width: 80px;
  }
  .section-top--common .title h2 {
    line-height: 1.6rem;
  }
  .section-top--common .button {
    width: 80%;
    height: 60px;
  }
}

/* ------------------------------------- 
  service-top
------------------------------------- */
.service-top .contents ul {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.service-top .contents ul li {
  height: 100%;
}
.service-top .contents ul li a {
  display: block;
  background-image: linear-gradient(60deg, #36AED4 0%, #2182D6 100%);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.service-top .contents ul li a:hover {
  opacity: 0.7;
}
.service-top .contents ul li a p {
  padding: 30px 0;
  color: #FFFFFF;
  text-align: center;
  font-weight: 600;
  font-size: 1.5625rem;
  letter-spacing: 0.2rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 1280px) {
  .service-top .contents ul {
    gap: 30px;
  }
  .service-top .contents ul li a p {
    padding: 20px 0;
  }
}
@media screen and (max-width: 1024px) {
  .service-top .contents ul li a p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .service-top .contents ul {
    gap: 20px;
  }
  .service-top .contents ul li a {
    border-radius: 10px;
  }
  .service-top .contents ul li a p {
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .service-top .contents ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .service-top .contents ul li a p {
    padding: 5px;
    letter-spacing: 0.1rem;
  }
}

/* ------------------------------------- 
  recruit-top
------------------------------------- */
.recruit-top .contents {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5.2%;
}
.recruit-top .contents .image {
  width: 52.9%;
  border-radius: 30px;
  overflow: hidden;
}
.recruit-top .contents .text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 40px;
}
.recruit-top .contents .text .tag {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.recruit-top .contents .text .tag li {
  display: inline-block;
  background: #FFFFFF;
  border: 2px solid #3C484B;
  border-radius: 100px;
  padding: 0 25px;
  font-weight: 600;
  font-size: clamp(12px, 10.4px + 0.5vw, 20px);
}
.recruit-top .contents .text .copy h3 {
  font-size: 2.5rem;
  line-height: 4rem;
  letter-spacing: 0.2rem;
}
.recruit-top .contents .text .copy p {
  margin-top: 10px;
}
.recruit-top .contents .text .detail-list li {
  position: relative;
  padding-left: 50px;
  cursor: pointer;
}
.recruit-top .contents .text .detail-list li a {
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 3.5rem;
}
.recruit-top .contents .text .detail-list li::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-48%);
  transition: all 0.3s;
  background: url(../images/icon_arrow.svg) no-repeat;
  background-size: 100%;
  width: 30px;
  height: 30px;
}
.recruit-top .contents .text .detail-list li:hover::before {
  left: 5px;
}
.recruit-top .contents .text .detail-list li:hover a::after {
  border-color: transparent;
}
@media screen and (max-width: 1440px) {
  .recruit-top .contents {
    align-items: flex-start;
  }
  .recruit-top .contents .image {
    width: 50%;
  }
}
@media screen and (max-width: 1366px) {
  .recruit-top .contents .text .tag li {
    padding: 0 15px;
  }
  .recruit-top .contents .text .detail-list {
    column-count: 2;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-top .contents {
    flex-direction: column;
    gap: 50px;
  }
  .recruit-top .contents .image, .recruit-top .contents .text {
    width: 100%;
    margin: 0 auto;
  }
  .recruit-top .contents .image {
    max-width: 700px;
  }
  .recruit-top .contents .text {
    align-items: center;
  }
  .recruit-top .contents .text .tag {
    justify-content: center;
    gap: 5px;
  }
  .recruit-top .contents .text .tag li {
    padding: 0 20px;
    line-height: 1.8rem;
  }
  .recruit-top .contents .text .copy h3 {
    font-size: 1.875rem;
    line-height: 3.5rem;
    text-align: center;
  }
  .recruit-top .contents .text .copy p {
    margin-top: 30px;
  }
  .recruit-top .contents .text .detail-list li a {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-top .contents .image {
    border-radius: 20px;
  }
  .recruit-top .contents .text {
    gap: 30px;
  }
  .recruit-top .contents .text .tag li {
    padding: 0 10px;
  }
  .recruit-top .contents .text .copy h3 {
    font-size: 1.5625rem;
    line-height: 3rem;
  }
  .recruit-top .contents .text .copy p {
    margin-top: 20px;
  }
  .recruit-top .contents .text .detail-list li {
    padding-left: 30px;
  }
  .recruit-top .contents .text .detail-list li a {
    font-size: 1rem;
    line-height: 2.5rem;
  }
  .recruit-top .contents .text .detail-list li::before {
    top: 55%;
    transform: translateY(-45%);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 480px) {
  .recruit-top .contents {
    gap: 30px;
  }
  .recruit-top .contents .text .copy h3 {
    font-size: 1.25rem;
    line-height: 2.5rem;
  }
}

/* ------------------------------------- 
  company-top
------------------------------------- */
.company-top .contents {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5.2%;
}
.company-top__overview .text {
  max-width: 700px;
  width: 41.1%;
}
.company-top__overview .text .lead {
  max-width: 500px;
  width: 71.4%;
  margin: 100px auto 0;
  line-height: 3.5rem;
}
.company-top__overview .image {
  width: 52.9%;
  border-radius: 30px;
  overflow: hidden;
}
.company-top__detail {
  background: #FFFFFF;
  border-radius: 30px;
  padding: 100px;
}
.company-top__detail .profile {
  width: 43.3%;
}
.company-top__detail .profile th, .company-top__detail .profile td {
  border-bottom: 1px solid #C5C5C5;
  padding: 30px;
  font-size: 1rem;
  box-sizing: content-box;
}
.company-top__detail .profile th {
  width: 100px;
  padding-right: 50px;
  font-weight: 600;
}
.company-top__detail .profile td {
  padding-left: 0;
}
.company-top__detail .profile tr:first-child th, .company-top__detail .profile tr:first-child td {
  padding-top: 0;
}
.company-top__detail .access {
  width: 50%;
}
.company-top__detail .access .title {
  gap: 20px;
}
.company-top__detail .access .title span {
  max-width: 50px;
}
.company-top__detail .access .title span img {
  width: 100%;
}
.company-top__detail .access .map {
  aspect-ratio: 6/4 auto;
  margin-top: 30px;
}
.company-top__detail .access .map iframe {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1536px) {
  .company-top__overview .text .lead {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1440px) {
  .company-top__overview .text {
    width: 44.8%;
  }
  .company-top__overview .text .lead {
    width: 85%;
  }
  .company-top__overview .image {
    width: 50%;
  }
  .company-top__detail .profile {
    width: 50%;
  }
  .company-top__detail .access {
    width: 43.3%;
  }
}
@media screen and (max-width: 1024px) {
  .company-top .contents {
    flex-direction: column;
    gap: 50px;
  }
  .company-top__overview .text, .company-top__overview .image {
    width: 100%;
    margin: 0 auto;
  }
  .company-top__detail .profile, .company-top__detail .access {
    width: 100%;
    margin: 0 auto;
  }
  .company-top__detail .access .title {
    flex-direction: unset;
  }
}
@media screen and (max-width: 768px) {
  .company-top__overview .text .lead {
    line-height: 2.5rem;
    width: 80%;
  }
  .company-top__overview .image {
    border-radius: 20px;
  }
  .company-top__detail {
    border-radius: 20px;
    padding: 50px;
  }
  .company-top__detail .profile th, .company-top__detail .profile td {
    padding: 20px;
    font-size: 0.875rem;
    line-height: 1.6rem;
  }
  .company-top__detail .profile th {
    padding-right: 0;
  }
  .company-top__detail .access .map {
    aspect-ratio: 1/1 auto;
    margin-top: 15px;
  }
  .company-top__detail .access .map iframe {
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .company-top .contents {
    gap: 30px;
  }
  .company-top__overview .text .lead {
    margin-top: 30px;
    line-height: 2rem;
  }
  .company-top__detail {
    padding: 30px;
  }
  .company-top__detail .profile th, .company-top__detail .profile td {
    padding: 20px 10px;
  }
  .company-top__detail .profile th {
    width: 60px;
  }
  .company-top__detail .access .title {
    gap: 10px;
  }
  .company-top__detail .access .title span {
    max-width: 30px;
  }
}

/* ------------------------------------- 
  service
------------------------------------- */
.service .box .title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
}
.service .box .title__image {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #D2D2D2;
  border-radius: 20px;
  width: 100px;
  height: 100px;
}
.service .box .title__image img {
  width: 60%;
}
.service .box .title__text {
  width: calc(100% - 150px);
}
.service .box .title__text .lead {
  margin-top: 5px;
}
.service .box .service__slider {
  max-width: 100%;
}
.service .box .service__slider .slick {
  border-radius: 20px;
  overflow: hidden;
}
.service .box .service__slider .slider_dots {
  right: 20px;
  bottom: 20px;
}
.service .box .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.service .box .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #36AED4;
  border-radius: 10px;
  color: #FFFFFF;
  max-width: 240px;
  width: 100%;
  height: 60px;
  font-weight: 600;
  text-align: center;
}
.service .box .button::before, .service .box .button::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 30px;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  transform-origin: calc(100% - 1px) 50%;
  transition: all 0.3s;
}
.service .box .button::before {
  transform: rotate(47.5deg);
}
.service .box .button::after {
  transform: rotate(-47.5deg);
}
.service .box .button:hover {
  opacity: 0.8;
}
.service .box .button:hover::before, .service .box .button:hover::after {
  right: 25px;
}
.service .box .button--wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .service .box .title {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px !important;
  }
  .service .box .title__text {
    width: 100%;
  }
  .service .box .title__text h2 {
    text-align: center;
  }
  .service .box .title__text .lead {
    max-width: 600px;
    width: 100%;
    margin: 40px auto 0;
  }
  .service .box .button--wrap {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .service .box .title {
    gap: 20px;
    margin-bottom: 30px !important;
  }
  .service .box .title__image {
    border-radius: 10px;
    width: 70px;
    height: 70px;
  }
  .service .box .title__text .lead {
    margin-top: 30px;
  }
}

/* ------------------------------------- 
  recruit-mv
------------------------------------- */
.recruit-mv {
  position: relative;
  margin-bottom: 150px;
}
.recruit-mv .image {
  position: relative;
  background: url(../images/recruit/mv_recruit.jpg) center center/100% no-repeat;
  width: 100%;
  max-height: 790px;
  height: 73vh;
}
.recruit-mv .text {
  position: absolute;
  bottom: 50px;
  left: 50px;
  min-width: 700px;
}
.recruit-mv .text h2, .recruit-mv .text p {
  color: #FFFFFF;
}
.recruit-mv .text p {
  margin-top: 30px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: 0.1rem;
}
.recruit-mv .text p span {
  font-size: 180%;
}
.recruit-mv .block-shadow {
  bottom: -60px;
}
@media screen and (max-width: 1024px) {
  .recruit-mv .text {
    bottom: 30px;
    left: 30px;
  }
  .recruit-mv .text p {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 2.5rem;
  }
  .recruit-mv .text p span {
    font-size: 150%;
  }
  .recruit-mv .block-shadow {
    bottom: -30px;
  }
}
@media screen and (max-width: 960px) {
  .recruit-mv {
    margin-bottom: 100px;
  }
  .recruit-mv .image {
    max-height: 360px;
    height: 60vh;
  }
  .recruit-mv .text {
    position: static;
    margin: 70px auto 0;
    min-width: auto;
  }
  .recruit-mv .text h2, .recruit-mv .text p {
    text-align: center;
    color: #3C484B;
  }
  .recruit-mv .text p {
    width: 95%;
    margin: 0 auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-mv {
    margin-bottom: 70px;
  }
  .recruit-mv .image {
    height: 40vh;
  }
  .recruit-mv .text {
    margin-top: 50px;
  }
  .recruit-mv .text p {
    font-size: 1rem;
    line-height: 2.5rem;
  }
  .recruit-mv .text p span {
    display: block;
    margin-top: 10px;
  }
}

/* ------------------------------------- 
  recruit pag-common
------------------------------------- */
.recruit .page-menu .button {
  margin-top: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #36AED4;
  border-radius: 10px;
  color: #FFFFFF;
  max-width: 100%;
  width: 100%;
  height: 60px;
  font-weight: 600;
  text-align: center;
  font-size: clamp(14px, 12.8px + 0.375vw, 20px);
}
.recruit .page-menu .button::before, .recruit .page-menu .button::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 30px;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  transform-origin: calc(100% - 1px) 50%;
  transition: all 0.3s;
}
.recruit .page-menu .button::before {
  transform: rotate(47.5deg);
}
.recruit .page-menu .button::after {
  transform: rotate(-47.5deg);
}
.recruit .page-menu .button:hover {
  opacity: 0.8;
}
.recruit .page-menu .button:hover::before, .recruit .page-menu .button:hover::after {
  right: 25px;
}
.recruit .box .title span {
  display: block;
  color: #36AED4;
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .recruit .box .title span {
    font-size: 1rem;
    line-height: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit .box .title span {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  recruit-list__work
------------------------------------- */
.recruit-list__work .contents {
  display: grid;
  justify-content: flex-start;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 5%;
}
.recruit-list__work .contents .image {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #D2D2D2;
  border-radius: 20px;
  max-width: 100px;
  width: 30%;
  aspect-ratio: 1/1;
}
.recruit-list__work .contents .image img {
  width: 60%;
}
.recruit-list__work .contents__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5%;
  height: 130px;
}
.recruit-list__work .contents__title h3 {
  max-width: 200px;
  width: 61%;
  font-size: clamp(18px, 16.6px + 0.4375vw, 25px);
  letter-spacing: 0;
}
@media screen and (max-width: 1366px) {
  .recruit-list__work .contents {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .recruit-list__work .contents__title h3 {
    width: 63%;
    line-height: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-list__work .contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .recruit-list__work .contents li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .recruit-list__work .contents li .image {
    border-radius: 10px;
    width: 70px;
  }
  .recruit-list__work .contents li .wrap {
    width: calc(100% - 90px);
  }
  .recruit-list__work .contents__title {
    height: auto;
    margin-bottom: 10px;
  }
}

/* ------------------------------------- 
  recruit-list__environment
------------------------------------- */
.recruit-list__environment .overview {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}
.recruit-list__environment .overview .image {
  border-radius: 20px;
  overflow: hidden;
  width: 45.5%;
}
.recruit-list__environment .overview .text {
  width: 50%;
}
.recruit-list__environment .overview .text h3 {
  font-size: clamp(18px, 15.6px + 0.75vw, 30px);
  line-height: 3rem;
}
.recruit-list__environment .overview .text p {
  margin-top: 15px;
}
.recruit-list__environment .environment-list {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 50px;
}
.recruit-list__environment .environment-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  border: 1px solid #36AED4;
  border-radius: 20px;
  height: 100%;
  padding: 50px 30px 30px;
}
.recruit-list__environment .environment-list li img {
  max-width: 80px;
}
.recruit-list__environment .environment-list li h4 {
  margin: 30px auto 20px;
}
.recruit-list__environment .environment-list li p {
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 1920px) {
  .recruit-list__environment .overview {
    align-items: flex-start;
  }
}
@media (max-width: 1780px) {
  .recruit-list__environment .br_switch {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-list__environment .overview {
    flex-direction: column;
  }
  .recruit-list__environment .overview .image, .recruit-list__environment .overview .text {
    margin: 0 auto;
  }
  .recruit-list__environment .overview .image {
    max-width: 550px;
    width: 70%;
  }
  .recruit-list__environment .overview .text {
    max-width: 700px;
    width: 100%;
  }
  .recruit-list__environment .overview .text h3 {
    text-align: center;
  }
  .recruit-list__environment .overview .br_switch {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .recruit-list__environment .overview {
    gap: 30px;
  }
  .recruit-list__environment .overview .image {
    border-radius: 10px;
    width: 80%;
  }
  .recruit-list__environment .overview .text h3 {
    line-height: 2.5rem;
  }
  .recruit-list__environment .environment-list li h4 {
    text-align: center;
  }
  .recruit-list__environment .environment-list li .br_switch {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .recruit-list__environment .overview .text h3 {
    line-height: 2rem;
  }
  .recruit-list__environment .environment-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .recruit-list__environment .environment-list li {
    gap: 20px;
    padding: 30px 20px 20px;
  }
  .recruit-list__environment .environment-list li img {
    max-width: 60px;
  }
  .recruit-list__environment .environment-list li h4 {
    margin: 0 auto;
  }
}
@media screen and (max-width: 375px) {
  .recruit-list__environment .overview .br_switch {
    display: none;
  }
  .recruit-list__environment .environment-list li .br_switch {
    display: none;
  }
}

/* ------------------------------------- 
  recruit-list__voice
------------------------------------- */
.recruit-list__voice .contents {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.recruit-list__voice .contents li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
  margin-bottom: 100px;
}
.recruit-list__voice .contents li:last-child {
  margin-bottom: 0;
}
.recruit-list__voice .contents li .image {
  max-width: 200px;
  width: 20%;
}
.recruit-list__voice .contents li .text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
  max-width: 730px;
  width: 73%;
}
.recruit-list__voice .contents li .text .tag li {
  display: inline-block;
  border: 1px solid #36AED4;
  border-radius: 100px;
  margin-right: 10px;
  margin-bottom: 0;
  padding: 10px 20px;
  font-weight: 700;
  color: #36AED4;
  line-height: 1.6rem;
}
.recruit-list__voice .contents li .text .tag li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1280px) {
  .recruit-list__voice .contents li {
    gap: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-list__voice .contents li {
    margin-bottom: 70px;
  }
  .recruit-list__voice .contents li .text .tag li {
    margin-right: 0px;
    padding: 5px 15px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-list__voice .contents li {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
  }
  .recruit-list__voice .contents li .text {
    gap: 10px;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
  }
  .recruit-list__voice .contents li .text .tag, .recruit-list__voice .contents li .text h3 {
    margin: 0 auto;
  }
  .recruit-list__voice .contents li .text h3 {
    margin-top: 10px;
    text-align: center;
  }
  .recruit-list__voice .contents li .text .tag li {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .recruit-list__voice .contents li {
    gap: 20px;
  }
  .recruit-list__voice .contents li .text h3 {
    margin-top: 5px;
  }
  .recruit-list__voice .contents li .text .tag li {
    padding: 0px 10px;
    font-size: 0.75rem;
  }
}

/* ------------------------------------- 
  recruit-list__description
------------------------------------- */
.recruit-list__description .contents table {
  width: 100%;
}
.recruit-list__description .contents table tr {
  border-top: 1px solid #C5C5C5;
  border-bottom: 1px solid #C5C5C5;
}
.recruit-list__description .contents table th, .recruit-list__description .contents table td {
  padding: 20px 0;
}
.recruit-list__description .contents table th {
  background: #D6EFF7;
  width: 200px;
  font-weight: 700;
  text-align: center;
}
.recruit-list__description .contents table td {
  padding-left: 40px;
  font-size: 1rem;
}
.recruit-list__description .contents .entry {
  background: #f5f5f5;
  border-radius: 20px;
  margin-top: 70px;
  padding: 50px;
}
.recruit-list__description .contents .entry h3, .recruit-list__description .contents .entry p {
  text-align: center;
}
.recruit-list__description .contents .entry h3 {
  font-size: 1.875rem;
}
.recruit-list__description .contents .entry p {
  margin: 40px auto 20px;
}
.recruit-list__description .contents .entry .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #36AED4;
  border-radius: 10px;
  color: #FFFFFF;
  max-width: 500px;
  width: 100%;
  height: 100px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
}
.recruit-list__description .contents .entry .button::before, .recruit-list__description .contents .entry .button::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 30px;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  transform-origin: calc(100% - 1px) 50%;
  transition: all 0.3s;
}
.recruit-list__description .contents .entry .button::before {
  transform: rotate(47.5deg);
}
.recruit-list__description .contents .entry .button::after {
  transform: rotate(-47.5deg);
}
.recruit-list__description .contents .entry .button:hover {
  opacity: 0.8;
}
.recruit-list__description .contents .entry .button:hover::before, .recruit-list__description .contents .entry .button:hover::after {
  right: 25px;
}
@media screen and (max-width: 1024px) {
  .recruit-list__description .contents table th, .recruit-list__description .contents table td {
    padding: 10px 0;
  }
  .recruit-list__description .contents table th {
    max-width: 150px;
    width: 25%;
  }
  .recruit-list__description .contents table td {
    padding-left: 30px;
    font-size: 0.875rem;
    line-height: 1.6rem;
  }
  .recruit-list__description .contents .entry {
    margin-top: 50px;
  }
  .recruit-list__description .contents .entry h3 {
    font-size: 1.5625rem;
  }
  .recruit-list__description .contents .entry p {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-list__description .contents table td {
    padding-left: 15px;
  }
  .recruit-list__description .contents .entry {
    margin-top: 30px;
    padding: 30px;
  }
  .recruit-list__description .contents .entry h3 {
    font-size: 1.25rem;
  }
  .recruit-list__description .contents .entry p {
    margin-top: 10px;
  }
  .recruit-list__description .contents .entry .button {
    max-width: 300px;
    height: 60px;
  }
}

/* ------------------------------------- 
  insurance-list__address
------------------------------------- */
.insurance-list__address .title {
  margin-bottom: 50px !important;
}
.insurance-list__address .title p {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 3rem;
}
.insurance-list__address .title h2 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: linear-gradient(transparent 94%, #36AED4 0%);
  padding-bottom: 10px;
}
.insurance-list__address .lead {
  margin-bottom: 70px;
  text-align: center;
  font-weight: 700;
  line-height: 3rem;
}
.insurance-list__address .contents h3 {
  text-align: center;
  font-size: 1.875rem;
  text-align: center;
}
.insurance-list__address .contents ul {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 30px;
}
.insurance-list__address .contents ul li {
  background: #f5f5f5;
  border-radius: 20px;
  height: 100%;
  padding: 50px;
}
.insurance-list__address .contents ul li .title {
  text-align: center;
}
.insurance-list__address .contents ul li .title h4 span {
  position: relative;
  padding-bottom: 5px;
  display: inline;
}
.insurance-list__address .contents ul li .title p {
  font-size: 0.875rem;
}
.insurance-list__address .contents ul li dl.phone {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  background: #FFFFFF;
  border-radius: 10px;
  max-width: 425px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.insurance-list__address .contents ul li dl.phone dt {
  border-radius: 5px;
  width: 80px;
  height: 100%;
  padding: 15px 10px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}
.insurance-list__address .contents ul li dl.phone dd {
  width: calc(100% - 80px);
}
.insurance-list__address .contents ul li dl.phone dd p, .insurance-list__address .contents ul li dl.phone dd a {
  font-weight: 700;
}
.insurance-list__address .contents ul li dl.phone dd p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.insurance-list__address .contents ul li dl.phone dd a {
  display: block;
  font-size: 1.875rem;
  letter-spacing: 0.1rem;
}
.insurance-list__address .contents ul li.weekday .title h4 span {
  color: #36AED4;
  background: linear-gradient(transparent 94%, #36AED4 0%);
}
.insurance-list__address .contents ul li.weekday dl.phone dt {
  background: #36AED4;
}
.insurance-list__address .contents ul li.weekday dl.phone dd a {
  color: #36AED4;
}
.insurance-list__address .contents ul li.holiday .title h4 span {
  color: #FF0C5F;
  background: linear-gradient(transparent 94%, #FF0C5F 0%);
}
.insurance-list__address .contents ul li.holiday dl.phone dt {
  background: #FF0C5F;
}
.insurance-list__address .contents ul li.holiday dl.phone dd a {
  color: #FF0C5F;
}
.insurance-list__address .contents ul li.holiday .att {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.insurance-list__address .contents ul li.holiday .att p {
  font-size: 1rem;
  text-align: center;
}
.insurance-list__address .contents ul li.holiday .att a {
  display: block;
  max-width: 213px;
}
@media (max-width: 1680px) {
  .insurance-list__address .title {
    margin-bottom: 30px !important;
  }
  .insurance-list__address .contents ul {
    gap: 20px;
  }
  .insurance-list__address .contents ul li dl.phone {
    flex-direction: column;
  }
  .insurance-list__address .contents ul li dl.phone dt, .insurance-list__address .contents ul li dl.phone dd {
    width: 100%;
    text-align: center;
  }
  .insurance-list__address .contents ul li dl.phone dt {
    height: auto;
    padding: 0;
  }
  .insurance-list__address .contents ul li dl.phone dd a {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1366px) {
  .insurance-list__address .contents ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .insurance-list__address .title {
    margin-bottom: 20px !important;
  }
  .insurance-list__address .title p {
    line-height: 2.5rem;
  }
  .insurance-list__address .lead {
    margin-bottom: 50px;
    line-height: 2.5rem;
  }
  .insurance-list__address .contents h3 {
    font-size: 1.5625rem;
  }
  .insurance-list__address .contents ul li {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 768px) {
  .insurance-list__address .title p {
    line-height: 2rem;
  }
  .insurance-list__address .lead {
    margin-bottom: 30px;
    line-height: 2rem;
  }
  .insurance-list__address .contents h3 {
    font-size: 1.25rem;
  }
  .insurance-list__address .contents ul {
    margin-top: 20px;
  }
  .insurance-list__address .contents ul li {
    padding: 30px 20px;
  }
  .insurance-list__address .contents ul li .title p {
    margin-top: 5px;
    letter-spacing: 0;
  }
  .insurance-list__address .contents ul li.holiday .att {
    gap: 10px;
    margin-top: 10px;
  }
  .insurance-list__address .contents ul li.holiday .att p {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  insurance-list__policy
------------------------------------- */
.insurance-list__policy .title h2 {
  letter-spacing: 0;
  line-height: 5rem;
}
.insurance-list__policy .lead {
  margin-bottom: 70px;
}
.insurance-list__policy .contents ul li, .insurance-list__policy .contents p {
  font-size: 1rem;
  line-height: 2rem;
}
.insurance-list__policy .contents ul {
  margin-top: 30px;
}
.insurance-list__policy .contents ul li {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}
.insurance-list__policy .contents ul li:last-child {
  margin-bottom: 0;
}
.insurance-list__policy .contents p {
  margin-top: 30px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .insurance-list__policy .title h2 {
    line-height: 3rem;
  }
  .insurance-list__policy .lead {
    margin-bottom: 50px;
  }
  .insurance-list__policy .contents ul li, .insurance-list__policy .contents p {
    font-size: 0.875rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .insurance-list__policy .lead {
    margin-bottom: 30px;
  }
  .insurance-list__policy .contents ul {
    margin-top: 20px;
  }
  .insurance-list__policy .contents p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .insurance-list__policy .title h2 {
    line-height: 2rem;
  }
}

/* ------------------------------------- 
  privacypolicy
------------------------------------- */
.privacypolicy section {
  background: #FFFFFF;
  border-radius: 30px;
  padding: 100px;
}
.privacypolicy dl dt {
  font-size: 1.5625rem;
  font-weight: 700;
  padding-bottom: 20px;
}
.privacypolicy dl dd {
  margin-bottom: 50px;
}
.privacypolicy dl dd:last-child {
  margin-bottom: 0;
}
.privacypolicy dl dd p, .privacypolicy dl dd ul li, .privacypolicy dl dd ol li {
  font-size: 1rem;
  line-height: 2rem;
}
.privacypolicy dl dd p, .privacypolicy dl dd ul, .privacypolicy dl dd ol {
  margin-bottom: 20px;
}
.privacypolicy dl dd p:last-child, .privacypolicy dl dd ul:last-child, .privacypolicy dl dd ol:last-child {
  margin-bottom: 0;
}
.privacypolicy dl dd ol {
  position: relative;
}
.privacypolicy dl dd ol li {
  list-style: none;
  list-style-position: outside;
  margin-bottom: 5px;
  padding-left: 1.25em;
}
.privacypolicy dl dd ol li:last-child {
  margin-bottom: 0;
}
.privacypolicy dl dd ol li span {
  position: absolute;
  left: 0;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  .privacypolicy section {
    padding: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .privacypolicy dl dt {
    font-size: 1.25rem;
  }
  .privacypolicy dl dd p, .privacypolicy dl dd ul li, .privacypolicy dl dd ol li {
    font-size: 0.875rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .privacypolicy section {
    padding: 50px;
  }
  .privacypolicy dl dt {
    font-size: 1.125rem;
  }
  .privacypolicy dl dd {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .privacypolicy section {
    padding: 40px 30px 30px;
  }
}

/* ------------------------------------- 
  contact
------------------------------------- */
.contact section {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact section {
    width: 100%;
  }
}

/* ------------------------------------- 
  contact__form
------------------------------------- */
.contact__form ul.overview {
  list-style-type: disc;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
  padding: 30px;
}
.contact__form ul.overview li {
  margin-left: 20px;
  font-size: 1rem;
  line-height: 2rem;
}
.contact__form ul.overview li a {
  font-size: 1rem;
  font-weight: 700;
  color: #36AED4;
  text-decoration: underline;
}
.contact__form ul.overview li a:hover {
  text-decoration: none;
}
.contact__form table {
  width: 100%;
  margin-top: 50px;
}
.contact__form table th, .contact__form table td {
  padding-bottom: 20px;
  position: relative;
}
.contact__form table th {
  padding-left: 60px;
  font-weight: 700;
  letter-spacing: 0.2rem;
}
.contact__form table th.va-top {
  vertical-align: text-top;
  padding-top: 10px;
}
.contact__form table th .hissu {
  position: absolute;
  top: 19px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3C484B;
  border-radius: 5px;
  width: 50px;
  height: 25px;
  padding-bottom: 3px;
  padding-left: 3px;
  font-size: 0.75rem;
  line-height: 25px;
  color: #FFFFFF;
  box-sizing: border-box;
}
.contact__form table td {
  max-width: 750px;
  width: 68.2%;
}
.contact__form table td p.att {
  font-size: 0.875rem;
  line-height: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .contact__form ul.overview li {
    font-size: 0.875rem;
  }
  .contact__form ul.overview li a {
    font-size: 0.875rem;
  }
  .contact__form table th {
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 960px) {
  .contact__form table th, .contact__form table td {
    display: block;
    width: 100%;
  }
  .contact__form table th {
    padding-bottom: 0;
  }
  .contact__form table th.va-top {
    padding-top: 0;
  }
  .contact__form table th .hissu {
    top: 52%;
    transform: translateY(-48%);
  }
  .contact__form table td {
    padding: 20px 0 40px;
  }
  .contact__form table td p.att {
    margin-top: 10px;
  }
}

/* ------------------------------------- 
  mailcomp
------------------------------------- */
.mailcomp {
  margin: 0 auto;
  padding-top: 100px;
}
.mailcomp h1 {
  text-align: center;
  color: #36AED4;
}
.mailcomp h1 span {
  display: block;
  font-size: 1rem;
  line-height: 1.8rem;
}
.mailcomp p {
  margin-top: 30px;
  text-align: center;
  font-weight: 700;
}
.mailcomp div {
  background: #FFFFFF;
  border-radius: 20px;
  width: 100%;
  margin: 50px auto;
  padding: 50px;
  box-sizing: border-box;
}
.mailcomp div h3 {
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
  color: #36AED4;
}
.mailcomp div p {
  margin: 0;
}
.mailcomp div ul {
  list-style: disc;
  background: #f5f5f5;
  border-radius: 20px;
  max-width: 700px;
  width: 90%;
  margin: 30px auto;
  padding: 50px;
}
.mailcomp div li {
  font-weight: 700;
  line-height: 2.5rem;
  margin-left: 20px;
}
.mailcomp .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3C484B;
  border-radius: 10px;
  color: #ffffff;
  max-width: 310px;
  width: 100%;
  height: 100px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
}
.mailcomp .button::before, .mailcomp .button::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 30px;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1px) 50%;
  transition: all 0.3s;
}
.mailcomp .button::before {
  transform: rotate(47.5deg);
}
.mailcomp .button::after {
  transform: rotate(-47.5deg);
}
.mailcomp .button:hover {
  opacity: 0.8;
}
.mailcomp .button:hover::before, .mailcomp .button:hover::after {
  right: 25px;
}
@media screen and (max-width: 1024px) {
  .mailcomp {
    padding-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .mailcomp {
    padding-top: 50px;
  }
  .mailcomp h1 span {
    font-size: 0.875rem;
    letter-spacing: 0rem;
  }
  .mailcomp div {
    border-radius: 10px;
    margin: 40px auto;
    padding: 30px;
  }
  .mailcomp div h3 {
    margin-bottom: 20px;
  }
  .mailcomp div ul {
    border-radius: 10px;
    width: 100%;
    padding: 30px;
  }
  .mailcomp div li {
    line-height: 2rem;
  }
}
.mailcomp .button {
  max-width: 300px;
  height: 60px;
}
@media screen and (max-width: 480px) {
  .mailcomp div {
    padding: 20px;
  }
  .mailcomp div h3 {
    margin-bottom: 10px;
  }
  .mailcomp div ul {
    margin: 20px auto;
    padding: 20px;
  }
  .mailcomp div li {
    line-height: 1.8rem;
  }
}/*# sourceMappingURL=common_style.css.map */