@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* リキッドレイアウト対応 */
html {
  font-size: 62.5%;
}

/* pcの電話番号発信対応 */

a {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:focus-visible {
  opacity: 0.7;
}
html {
  scroll-padding-top: 3.75rem;
}

body {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 596px;
  max-width: 59.6rem;
  padding-left: 28px;
  padding-left: 2.8rem;
  padding-right: 28px;
  padding-right: 2.8rem;
  width: 100%;
}

.l-overflow {
  overflow: hidden;
  position: relative;
}


@-webkit-keyframes circlemoveSp {
  0% {
    bottom: 15px;
  }
  100% {
    bottom: 0px;
  }
}

@keyframes circlemoveSp {
  0% {
    bottom: 15px;
  }
  100% {
    bottom: 0px;
  }
}
@-webkit-keyframes circlemove {
  0% {
    bottom: 33px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 33px;
  }
  100% {
    bottom: 0px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* solutions */
/* ヘッダー */
.business_header{
  position: relative;
  aspect-ratio: 375 / 411;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.business_header_title {
  left: 2.1333333333vw;
  margin-left: auto;
  margin-right: auto;
  max-width: 596px;
  max-width: 59.6rem;
  padding-left: 28px;
  padding-left: 2.8rem;
  padding-right: 28px;
  padding-right: 2.8rem;
  position: absolute;
  top: 28%;
  width: calc(100% - 2.1333vw);
}
.business_header_title_contents {
  color: #0080a8;
  font-size: max(27px, 10px);
  font-size: max(2.7rem, 10px);
  font-weight: 500;
  letter-spacing: 0.06em;
}
/* 六角形 */
.hexagon_pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 120% 100% at 70% 50%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 120% 100% at 70% 50%, black 40%, transparent 80%);
}
.hexagon_svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
/* 六角形のアニメーション */
@keyframes hexagonAppear {
  from {
    transform: scale(0) rotate(-120deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
@keyframes hexagonRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hexagon {
  animation: hexagonAppear 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  transform-origin: center;
}
.hexagon polygon {
  fill: none;
  stroke-width: 1.5;
  stroke-opacity: 0.4;
  filter: url(#glow);
  animation: hexagonRotate 20s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.hexagon polygon:hover {
  stroke-opacity: 0.8;
  transform: scale(1.15);
  transition: all 0.3s;
}

/* セクション共通 */
.business_section {
  padding-bottom: 108px;
  padding-bottom: 10.8rem;
  padding-top: 29px;
  padding-top: 2.9rem;
}
.business_section__inner {
  padding-left: 28px;
  padding-left: 2.8rem;
  padding-right: 28px;
  padding-right: 2.8rem;
}
.business_section__heading {
  color: #0080a8;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.06em;
}

/* テキストブロック */
.business_textblock_wrapper{
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
.business_textblock_title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  gap: 0.9rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, rgb(112, 190, 189)), to(rgb(77, 160, 183)));
  background: linear-gradient(90deg, rgb(112, 190, 189) 30%, rgb(77, 160, 183) 100%);
  color: #fff;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.3157894737;
  padding: 1px 5px;
  padding: 0.1rem 0.5rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
.business_textblock {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 9px;
  gap: 0.9rem;
}
.business_textblock_pc{
  display: none;
}
.business_textblock_title_sp{
  display: block;
}
.business_textblock_contents {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  line-height: 2;
  margin-top: 30px;
  margin-top: 3rem;
  text-align: justify;
}

/* 遷移ボタン */
.p_list {
  display: none;
}
.p_list_sp{
  display: grid;
  gap: 15px;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);  
}
.p_list_item_sp{
  align-items: center;
}
.p_list_links {
  padding-top: 63px;
  padding-top: 6.3rem;
  margin-top: 0;
}
.section_linkbutton{
  width: 100%;
  height: 8rem;
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background:linear-gradient(270deg, #0080a8, #0080a880);
}
/* ボックス */
.box_area{
  padding: 0;
}
.box_wrapper{
  position: relative;
  margin: 2em auto;
  border: 2px solid #70bebd80;
  max-width: 800px;
  font-size: 1.2rem;
}
.box_title {
  background-image: repeating-linear-gradient(-45deg,#70bebd4d 0, #70bebd4d 3px,#F8FFFF 3px,#F8FFFF 6px);
  transform: rotate(-2deg);
  box-shadow: 0 1px 2px rgb(0 0 0 / .1);
  padding: .5em 1em;
  line-height: 1;
  position: absolute;
  top: -1em;
  left: 1em;
  display: inline-block;
  width: auto;
  max-width: calc(100% - 2em);
}
.box_content {
  padding: 2.5em 0.5em 3em; 
}
.box_content_twolines {
  padding: 3.5em 0.5em 2em; 
}
.box_content_threelines {
  padding: 4.5em 0.5em 1em; 
}
.box_wrapper p {
  margin: 0;
}
.box_button_area{
  display: flex;
  justify-content: center; 
  margin-top: 1em;
}
.box_button_area_haigan{
  margin-top: 2.7em!important;
}
.box_button_area_nanopoa{
  margin-top: 4.5em!important;
}
.box_button {
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #70bebd), to(#4da0b7));
  background: linear-gradient(90deg, #70bebd 30%, #4da0b7 100%);
  border-radius: 99.9rem;
  color: #fff;
  display: inline-block;
  font-size: max(12px, 10px);
  font-size: max(1.2rem, 10px);
  letter-spacing: 0.02em;
  padding: 5px 10px;
  padding: 0.5rem 1rem;
  position: relative;
  text-align: center;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  width: 300px;
  width: 30rem;
  z-index: 0;
}
.box_button::before{
  background: #fff;
    border: 1px solid #0080a8;
    border-radius: 99.9rem;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}
.br_sp{
  display: none;
}
.br_pc{
  display: block;
}

@media (max-width: 750px){
  html {
    font-size: 2.6666667vw;
  }
}

@media screen and (min-width: 751px){
  /* solutions */
  /* ヘッダー */
  .business_header{
    aspect-ratio: 1728 / 948;
  }
  .business_header_title {
    left: 18.0555555556vw;
    max-width: 1104px;
    max-width: 110.4rem;
    padding-left: 25px;
    padding-left: 2.5rem;
    padding-right: 25px;
    padding-right: 2.5rem;
    top: 32%;
    width: calc(100% - 18.0555vw);
  }
  .business_header_title_contents {
    font-size: max(60px, 10px);
    font-size: max(6rem, 10px);
    letter-spacing: 0.2em;
  }
  /* 六角形 */
  .hexagon_pattern{
    aspect-ratio: 1728 / 948;
  }
  .hexagon_svg {
    left: 50%;
    top: 40%;
    height: 70rem;
  }
  .hexagon polygon {
    stroke-width: 2;
  }

  /* セクション共通 */
  .business_section {
    padding-bottom: 196px;
    padding-bottom: 19.6rem;
    padding-top: 100px;
    padding-top: 10rem;
  }
  .business_section__inner {
    padding-left: 38px;
    padding-left: 3.8rem;
    padding-right: 38px;
    padding-right: 3.8rem;
  }
  .business_section__heading {
    margin-bottom: 40px;
    margin-bottom: 4rem;
    font-size: 40px;
    font-size: 4rem;
    letter-spacing: 0;
  }
  /* テキストブロック */
  .business_section__contents {
    margin-left: auto;
    margin-right: auto;
    max-width: 1250px;
    max-width: 125rem;
    padding-left: 25px;
    padding-left: 2.5rem;
    padding-right: 25px;
    padding-right: 2.5rem;
    width: 100%;
  }
  
  .business_textblock_wrapper{
    gap: 2rem;
  }
  .business_textblock_area{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    gap: 5rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 59px;
    margin-top: 5.9rem;
    max-width: 1200px;
    max-width: 120rem;
    width: 100%;
  }
  .business_textblock {
    gap: 19px;
    gap: 1.9rem;
    margin-top: 0;
    width: 438px;
    width: 43.8rem;
  }
  .business_textblock_title {
    font-size: 30px;
    font-size: 3rem;
    letter-spacing: 0.07em;
    line-height: 1.5;
    padding: 4px 10px;
    padding: 0.4rem 1rem;
    margin-top: 0;
    width: 438px;
    width: 43.8rem;
  }
  .business_textblock_sp{
    display: none;
  }
  .business_textblock_pc{
    display: flex;
  }
  .business_textblock_contents {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 17px;
    font-size: 1.7rem;
    letter-spacing: -0.01em;
    line-height: 2.0588235294;
    margin-top: -9px;
    margin-top: -0.9rem;
  }

  /* ボタン */
  .p_list_links {
    padding-top: 125px;
    padding-top: 12.5rem;
  }
  .p_list_sp{
    display: none;
  }
  .section_linkbutton {
    display: inline-flex;
    height: 16.3rem;
    font-size: 2.4rem;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 13px 50px 13px;
    outline: 0;
    border: 1px solid black;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  .section_linkbutton:after {
    content: "";
    background:linear-gradient(270deg, #0080a8, #0080a880);
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: -7px;
    left: 7px;
    transition: 0.2s;
  }
  .section_linkbutton:hover:after {
    top: 0px;
    left: 0px;
  }

  /* ボックス */
  .box_wrapper{
    font-size: 1.7rem;
  }
  .box_title {
    white-space: nowrap;
  }
  .box_button {
    font-size: max(19px, 10px);
    font-size: max(1.9rem, 10px);
    letter-spacing: 0;
    padding: 9px 20px;
    padding: 0.9rem 2rem;
    width: 199px;
    width: 19.9rem;
  }
  .box_button_area_haigan{
    margin-top: 4em!important;
  }
  .box_button_area_nanopoa{
    margin-top: 3.75em!important;
  }
  .br_sp{
    display: block;
  }
  .br_pc{
    display: none;
  }

  
  /* リスト */
  .p_list {
    display: grid;
    gap: 41px 30px;
    gap: 4.1rem 3rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .p_list_item {
    width: 100%;
  }
  .box_list{
    grid-gap: 1.5rem;
    display: grid;
    gap: 41px 30px;
    gap: 4.1rem 1.2rem;
    grid-template-columns: repeat(2, 1fr);
  }

  /* ↑solutions */
  html {
    font-size: min(62.5%, calc(100vw / 134));
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  html {
    scroll-padding-top: 6.25rem;
  }
  .l-inner {
    max-width: 1250px;
    max-width: 125rem;
    padding-left: 25px;
    padding-left: 2.5rem;
    padding-right: 25px;
    padding-right: 2.5rem;
  }  
}

@media screen and (min-width: 1341px){
  html {
    font-size: min(62.5%, calc(100vw / 134));
  }
}

@media (min-width: 1340px){
  html {
    font-size: 62.5%;
  }
}

@media screen and (min-width: 1440px){
  html {
    font-size: 62.5%;
  }
}

@media (any-hover: hover){
  a:hover {
    opacity: 0.7;
  }
}
/*# sourceMappingURL=style.css.map */