@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Zen+Maru+Gothic&display=swap');

:root {
  --noto: 'Noto Sans JP'; /* weight: 100-900 */
  --ubuntu: 'Ubuntu'; /* weight: 300, 400, 500, 700 */
  --zen: 'Zen Maru Gothic'; /* weight: 400 */
  /*scroll-behavior: smooth;*/
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

br.br_sp {
  display: none;
}

body[data-nav-opened]{
  overflow-y: hidden;
}

@media screen and (max-width: 1080px){
  html {
    font-size: calc(100vw / 108); /* smaller */
  }
}

@media screen and (max-width: 960px){
  html {
    font-size: calc(100vw / 118.8); /* smaller */
  }
}

@media screen and (max-width: 768px){
  html {
    font-size: calc(100vw / 54);
  }

  br.br_pc {
    display: none;
  }

  br.br_sp {
    display: initial;
  }

  span.pz_sp {
    display: none !important;
  }
}

@media screen and (max-width: 540px){
  html {
    font-size: calc(100vw / 37.5);
  }
}

@media screen and (max-width: 375px){
  html {
    font-size: calc(100vw / 32);
  }
}

body {
  font-family: var(--noto);
  font-weight: 400;
  color: #353535;
}

li {
  list-style: none;
}

main > section {
  padding-bottom: 150px;
}

a {
  text-decoration: none;
  color: inherit;
}

a[target="_blank"]::after,
.detail_anchor[target="_blank"] > span::after {
  display: inline-flex;
  width: 1em;
  aspect-ratio: 1 / 1;
  margin-left: 0.5em;
  content: '';
  background-image: url(../img/new_icon/icon_targetblank.webp);
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 1rem;
  line-height: 1;
}

.detail_anchor[target="_blank"]::after {
  background-image: none;
}

.detail_anchor[target="_blank"] > span::after {
  filter: brightness(0) invert(1);
}

a > span,
button > span {
  line-height: 1;
  user-select: none;
}

button {
  cursor: pointer;
  outline: 0;
}

.detail_anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.5em;
  height: 2.5em;
  margin-left: auto;
  background-color: #357eec;
  border-radius: 2em;
  color: #ffffff;
  font-size: 1.6rem;
  position: relative;
}

body[data-pagetype] .detail_anchor::after {
  content: '\251b';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  font-size: 1rem;
  line-height: 1;
  position: absolute;
  top: calc(50% + 1px);
  right: 2em;
  transform: translateY(-50%) rotateZ(-45deg);
}

hgroup > p:empty {
  display: none;
}

picture {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

img {
  width: 100%;
  object-fit: contain;
}

nav li {
  width: fit-content;
}

/* hack for font-features-settings property invalid */
.palt {
  letter-spacing: -0.5em;
}

/* header */
#header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

#header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: 30px;
  padding-block: 10px;
}

#header .logo,
#footer .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  position: relative;
}

#header .logo {
  margin-block: 5px;
}

#header .logo > a,
#footer .logo > a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

#header .logo > picture,
#footer .logo > picture {
  aspect-ratio: 25 / 3;
}

#header .logo > picture,
#footer .logo > picture {
  max-width: 250px;
}

#header .wrapper nav > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#header nav > ul > li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  width: fit-content;
  margin-left: 30px;
  font-size: 1.8rem;
  line-height: 1;
  color: #2e2e2e;
}

#header nav > ul > li.to_form {
  background-color: #357eec;
  color: #ffffff;
  border-radius: 2em;
}

#header nav > ul > li a {
  display: flex;
  /*height: 100%;*/
  justify-content: center;
  align-items: center;
  line-height: 1;
}

#header nav > ul > li.to_form a {
  padding-inline: 1em;
  padding-bottom: 2px;
}

#nav_sw + label {
  display: none;
}

#mobi_nav {
  display: none;
}

@media screen and (max-width: 768px){
  .detail_anchor {
    width: 52.5%;
  }

  #header {
    height: 60px;
  }

  #header > .wrapper {
    margin-inline: 0;
    padding-inline: 20px;
    position: relative;
  }

  body #header > .wrapper::before {
    content: '';
    display: block;
    width: 0%;
    height: 60px;
    background-color: #357eec;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 4;
    transition: width 0.3s;
  }

  body[data-nav-opened] #header > .wrapper::before {
    width: 100%;
    transition: 0.7s;
  }

  #header .logo + nav {
    display: none;
  }

  #nav_sw + label[for="nav_sw"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: #357eec;
    position: fixed;
    top: 5px;
    right: 20px;
    z-index: 5;
  }

  #nav_sw + label[for="nav_sw"] > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 60%;
    height: 50%;
  }

  #nav_sw + label[for="nav_sw"] > div.hidden {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    opacity: 1;
    transition: 0.5s;
    transform-origin: left center;
    overflow-x: hidden;
  }

  #nav_sw + label[for="nav_sw"] > div.visible {
    width: 85%;
    height: 85%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
  }

  #nav_sw:checked + label[for="nav_sw"] > div.hidden {
    opacity: 0;
    transform: scaleX(0);
    transition: 0.7s;
  }

  #nav_sw:checked + label[for="nav_sw"] > div.visible {
    opacity: 1;
    transition: 0.7s;
    transform: translateX(-50%) translateY(-50%) rotateZ(-135deg);
  }

  #nav_sw + label[for="nav_sw"] > div > span {
    display: flex;
    width: 100%;
    height: 0;
    border: solid 2px #ffffff;

  }

  #nav_sw + label[for="nav_sw"] > div.hidden > span {
    transform: scaleY(0.5);
  }

  #nav_sw + label[for="nav_sw"] > div.hidden > span:first-of-type {
    transform: translateY(-1px) scaleY();
  }

  #nav_sw + label[for="nav_sw"] > div.hidden > span:nth-of-type(2) {
    width: 83.333%;
  }

  #nav_sw + label[for="nav_sw"] > div.hidden > span:nth-of-type(3) {
    width: 66.667%;
  }

  #nav_sw + label[for="nav_sw"] > div.visible > span {
    width: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scaleY(0.5) translateX(-50%) translateY(-100%);
  }

  #nav_sw + label[for="nav_sw"] > div.visible > span:nth-of-type(2) {
    transform: scaleX(0.5) scaleY(0) translateX(-100%) translateY(-50%) rotateZ(90deg);
    transition: 0.7s;
  }

  #nav_sw:checked + label[for="nav_sw"] > div.visible > span:nth-of-type(2) {
    transform: scaleX(0.5) scaleY(1) translateX(-100%) translateY(-50%) rotateZ(90deg);
    transition: 0.7s;
  }

  #mobi_nav {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 0%;
    height: 100vh;
    background-color: #357eec;
    overflow-x: hidden;
    transition: 0.3s;
    transition-property: width;
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
  }

  #nav_sw:checked ~ #mobi_nav {
    width: 100%;
    transition: 0.5s;
  }

  #header .wrapper #mobi_nav > ul {
    display: block;
    width: 100%;
    margin-top: 60px;
    padding-inline: 20px;
    padding-block: 0 10px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  #header .wrapper #nav_sw:checked ~ #mobi_nav > ul {
    opacity: 1;
    transition: 1.5s;
  }

  #header .wrapper #mobi_nav > ul > li {
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 3em;
    margin-left: 0;
    font-size: 2rem;
  }

  #header .wrapper #mobi_nav > ul > li:first-of-type {
    margin-top: 20px;
  }

  #header .wrapper #mobi_nav > ul > li:last-of-type {
    margin-bottom: 0;
  }

  #header .wrapper #mobi_nav > ul a {
    justify-content: flex-start;
    color: #ffffff;
  }

  #header .wrapper #mobi_nav > ul a[target="_blank"]::after {
    filter: brightness(0) invert(1);
  }

  #header .wrapper #mobi_nav > ul .ttl {
    display: inline-block;
    margin-bottom: 0.2em;
    font-size: 7rem;
    letter-spacing: 0.1em;
    font-family: var(--ubuntu);
    font-weight: 500;
    color: #72a5f2;
    line-height: 1;
  }

  #header .wrapper #mobi_nav > ul .parent {
    margin-bottom: 0.85em;
    font-size: 2.5rem;
    font-weight: 500;
  }

  #header .wrapper #mobi_nav > ul .children > li {
    margin-bottom: 1.25em;
  }

  #header .wrapper #mobi_nav > ul .to_form > a {
    height: 2.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: #357eec;
    border-radius: 2em;
  }

  body[data-nav-opened] #header .logo {
    z-index: 60;
    filter: brightness(0) invert(1);
    transition: filter 0.5s;
  }
}

@media screen and (max-width: 540px){
  #header .logo {
    width: 206px;
  }

  #header .wrapper #mobi_nav > ul > li {
    font-size: 1.6rem;
  }

  #header .wrapper #mobi_nav > ul .ttl {
    font-size: 5rem;
  }

  #header .wrapper #mobi_nav > ul .parent {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 375px){
  #header .wrapper #mobi_nav > ul .ttl {
    font-size: 4.267rem;
  }

  #header .wrapper #mobi_nav > ul > li {
    font-size: 1.365rem;
  }

  #header .wrapper #mobi_nav > ul .parent {
    font-size: 1.536rem;
  }
}

/* headline */
/*
#hd {

}
*/

#hd h1 {
  margin-inline: auto;
  padding-block: 1.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6f6f6;
  font-size: 4rem;
  font-weight: 500;
  color: #357eec;
  line-height: 1;
  position: relative;
}

#hd h1 picture {
  width: 2.888em;
  aspect-ratio: 231 / 200;
  margin-right: 1em;
}

#hd h1 picture[data-empty] {
  display: none;
}

#hd .breadcrumb {
  display: flex;
  align-items: center;
  max-width: 1000px;
  height: fit-content;
  margin-block: 1.25em 1em;
  margin-inline: auto;
  font-size: 1.6rem;
  line-height: 1;
}

#hd .breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}

#hd .breadcrumb li:not(.top) {
  margin-left: 0.5em;
}

#hd .breadcrumb li:not(.top)::before {
  content: '\251b';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  font-size: 0.9em;
  line-height: 1;
  transform: rotateZ(-45deg) translateY(0.1em);
}

#hd .breadcrumb li > a > span {
  color: #357eec;
}

#hd .breadcrumb li:not(.top) span {
  margin-left: 0.25em;
}

@media screen and (max-width: 768px){
  #hd h1 {
    font-size: 3rem;
  }
}

/* footer */
#footer .upper {
  display: flex;
}

#footer .left {
  width: 40%;
}

#footer .right {
  width: 60%;
}

@media screen and (max-width: 768px) {
  #footer .upper {
    flex-wrap: wrap;
  }

  #footer .left,
  #footer .right {
    width: 100%;
  }
}

#footer .left li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 546 / 275;
  background-color: #5bacfc;
  color: #ffffff;
}

#footer .left li:last-of-type {
  background-color: #357eec;
}

#footer .left > li .title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  line-height: 1;
}

#footer .left > li > p {
  margin-bottom: 16px;
  text-align: center;
  font-size: 1.6rem;
}

#footer .left > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1 / 1;
  font-size: 1rem;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

#footer .left > li > a::before {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  content: '\ff1e';
  transform: scaleY(1.25) translateX(0.1rem);
  line-height: 1;
}

#footer .left > li > a[target="_blank"]::after {
  display: none;
}

#footer .right > li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 820 / 275;
  background-color: #f6f6f9;
}

#footer .right nav > ul > li {
  display: block;
}

#footer .right nav > ul > li > a {
  display: flex;
  align-items: center;
  width: fit-content;
  height: fit-content;
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1;
}

#footer .right nav > ul > li > a::before,
.service_list dt::before,
body[data-pagetype="cs"] .service .right .inner > li::before {
  display: inline-flex;
  width: fit-content;
  height: fit-content;
  margin-right: 0.75em;
  content: '\25cf';
  font-size: 1.1rem;
  color: #84919d;
  line-height: 1;
}


#footer .right nav > ul > li > a::before {
  margin-left: 0.05em;
}

#footer .right nav,
#footer .right .pipms > div,
#footer .right .logo > div {
  width: 526px;
}

@media screen and (max-width: 1280px){
  #footer .right nav,
  #footer .right .pipms > div,
  #footer .right .logo > div {
    width: 75%;
  }
}

#footer .right nav .anchor_list {
  display: flex;
  margin-bottom: 24px;
  font-size: 1.4rem;
  line-height: 1;
}

#footer .right nav .anchor_list > li {
  display: flex;
  align-items: center;
}

#footer .right nav .anchor_list > li:not(:last-of-type)::after,
#footer .lower nav ul li:not(:last-of-type)::after {
  content: '\2502';
  display: flex;
  width: fit-content;
  height: fit-content;
  margin-inline: 3px;
  opacity: 0.7;
}

#footer .right .pipms,
#footer .right .logo {
  align-items: flex-start;
  aspect-ratio: 1640 / 275;
}

#footer .right .pipms > div,
#footer .right .logo > div {
  position: relative;
}

#footer .right .pipms > div > a,
#footer .right .logo > div > a {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

#footer .right .pipms > div > a[target="_blank"]::after {
  display: none;
}

#footer .right .pipms > div {
  display: flex;
  align-items: center;
  padding-block: 10px;
  padding-inline: 8px;
  /*background-color: #ffffff;*/
}

#footer .right .pipms > div > picture {
  width: 80px;
  aspect-ratio: 1 / 1;
  margin-right: 16px;
}

@media screen and (max-width: 1280px){
  #footer .right .pipms > div {
    height: 70%;
  }
}

@media screen and (max-width: 1080px){
  #footer .right .pipms > div >  picture {
    width: 15%;
  }
}

#footer .right .pipms > div > picture + div {
  flex-grow: 1;
  white-space: nowrap;
}

#footer .right .pipms > div > picture + div > span {
  display: block;
  width: fit-content;
  height: fit-content;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #353535;
  line-height: 1;
}

#footer .right .pipms > div > picture + div > p {
  font-size: 1.2rem;
}

#footer .right .logo > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .right .logo > div > picture {
  width: 45%;
  max-width: 496px;
  aspect-ratio: 124 / 15;
}

#footer .right .logo > div > picture + div > span {
  display: block;
  width: fit-content;
  height: fit-content;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #353535;
  line-height: 1;
}

#footer .right .logo > div > picture + div > span:last-of-type {
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: initial;
}

#footer .lower {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding-block: 10px;
  background-color: #000000;
  color: #ffffff;
}

#footer .lower nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

#footer .lower nav ul li,
#footer .lower nav ul li > a,
#footer .lower nav ul li > a > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
}

#footer .lower nav ul li.dummy {
  display: none;
}

#footer .lower > span {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px){
  #footer .left li {
    aspect-ratio: 390 / 198;
  }

  #footer .right nav > ul > li > a::before,
  .service_list dt::before,
  body[data-pagetype="cs"] .service .right .inner > li::before {
    color: #357eec;
  }

  #footer .right > li {
    aspect-ratio: unset;
  }

  #footer .right > li:nth-of-type(1) {
    padding-block: 50px 40px;
  }

  #footer .right nav > ul > li > a {
    margin-bottom: 0;
    font-size: 2.4rem;
  }

  #footer .right nav .anchor_list {
    margin-block: 1em 1.5em;
    flex-wrap: wrap;
    row-gap: 0.75em;
    font-size: 2rem;
  }

  #footer .right .pipms {
    padding-bottom: 40px;
  }

  #footer .right .logo {
    padding-bottom: 60px;
  }

  #footer .right nav,
  #footer .right .pipms > div,
  #footer .right .logo > div {
    width: calc(100% - 40px);
  }

  #footer .right .pipms > div {
    height: fit-content;
    padding: 10px;
  }

  #footer .right .pipms picture {
    width: 17.14%;
  }

  #footer .right .pipms > div > picture + div {
    white-space: initial;
  }

  #footer .right .logo > div {
    flex-wrap: wrap;
  }

  #footer .right .logo > div > picture {
    width: 70.85%;
    margin-bottom: 30px;
  }

  #footer .right .logo > div > picture + div > span {
    font-size: 2.16rem;
  }

  #footer .right .logo > div > picture + div > span:last-of-type {
    font-size: 1.44rem;
  }

  #footer .lower nav ul {
    flex-wrap: wrap;
    row-gap: 0.5em;
    margin-bottom: 1.5em;
    padding-inline: 20px;
    font-size: 1.5rem;
  }

  #footer .lower nav ul > li:nth-of-type(3)::after,
  #footer .lower nav ul > li.dummy::after {
    visibility: hidden;
  }

  #footer .lower nav ul > li.dummy {
    display: flex;
    width: 100%;
    height: 0;
  }
}

@media screen and (max-width: 540px){
  #footer .left > li .title {
    font-size: 1.8rem;
  }

  #footer .left > li > p {
    font-size: 1.4rem;
  }

  #footer .right nav > ul > li > a {
    font-size: 1.8rem;
  }

  #footer .right nav .anchor_list {
    font-size: 1.4rem;
  }

  #footer .right nav .anchor_list > li:not(:last-of-type)::after,
  #footer .lower nav ul li:not(:last-of-type)::after {
    margin-inline: 0;
  }

  #footer .right .pipms > div {
    height: auto;
  }

  #footer .right .pipms > div > picture {
    width: 60px;
    margin-right: 0;
  }

  #footer .right .pipms > div > picture + div {
    width: calc(100% - 60px);
    flex-grow: initial;
    padding-left: 10px;
    text-align: justify;
  }

  #footer .right .pipms > div > picture + div > span {
    font-size: 1.4rem;
  }

  #footer .right .pipms > div > picture + div > p {
    font-size: 1rem;
  }

  #footer .right .logo > div > picture + div > span {
    font-size: 1.6rem;
  }

  #footer .right .logo > div > picture + div > span:last-of-type {
    font-size: 1.1rem;
  }

  #footer .lower nav ul {
    row-gap: 5px;
    padding-inline: 10px;
    font-size: 1.2rem;
  }

  #footer .lower > span {
    font-size: 1rem;
  }
}

@media screen and (max-width: 375px){
  #footer .left > li .title {
    font-size: 1.536rem;
  }

  #footer .left > li > p {
    font-size: 1.195rem;
  }

  #footer .right nav > ul > li > a {
    font-size: 1.536rem;
  }

  #footer .right nav .anchor_list {
    font-size: 1.195rem;
  }

  #footer .right .pipms > div > picture + div > span {
    font-size: 1.195rem;
  }

  #footer .right .pipms > div > picture + div > p {
    font-size: 0.853rem;
  }

  #footer .right .logo > div > picture + div > span {
    font-size: 1.365rem;
  }

  #footer .right .logo > div > picture + div > span:last-of-type {
    font-size: 0.939rem;
  }

  #footer .lower nav ul {
    font-size: 1.024rem;
  }

  #footer .lower > span {
    font-size: 0.853rem;
  }
}

/* top */
.fv .sec_wrap {
  margin-inline: 30px;
}

.fv .sec_wrap .slide {
  margin-inline: auto;
  aspect-ratio: 653 / 300;
  position: relative;
  overflow: hidden;
}

.fv .sec_wrap .slide > li {
  width: 100%;
  position: absolute;
  inset: 0;
  background-size: cover;
  opacity: 0;
  animation: slideAnime 18s infinite;
}

@keyframes slideAnime {
  0%, 30%, 100% {
    opacity: 0;
  }
  10%, 20% {
    opacity: 1;
  }
}

.fv .sec_wrap .slide > li:nth-of-type(1){
  animation-delay: 0s;
}

.fv .sec_wrap .slide > li:nth-of-type(2){
  animation-delay: 3s;
}

.fv .sec_wrap .slide > li:nth-of-type(3){
  animation-delay: 6s;
}

.fv .sec_wrap .slide > li:nth-of-type(4){
  animation-delay: 9s;
}

.fv .sec_wrap .slide > li:nth-of-type(5){
  animation-delay: 12s;
}

.fv .sec_wrap .slide > li:nth-of-type(6){
  animation-delay: 15s;
}

.fv .sec_wrap .slide > li figure,
.fv .sec_wrap .slide > li picture,
.fv .sec_wrap .slide > li img {
  width: 100%;
}

.fv .sec_wrap .slide > li picture {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv .sec_wrap .slide > li figcaption {
  font-family: var(--zen);
  text-align: right;
  font-weight: 700;
  letter-spacing: 2.5px;
  line-height: 1.7;
  color: #ffffff;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

.fv .sec_wrap .slide > li:nth-of-type(3) figcaption,
.fv .sec_wrap .slide > li:nth-of-type(4) figcaption {
  text-align: initial;
  right: unset;
  left: 2%;
}

.fv .anchor_list,
section .sec_wrap {
  max-width: 1000px;
  margin-inline: auto;
}

@media screen and (max-width: 1080px) {
  #hd .breadcrumb,
  .fv .anchor_list,
  section .sec_wrap {
    width: calc(100% - 60px);
  }
}

.fv .sec_wrap .anchor_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background-color: #ffffff;
  border: 1px solid #c1c8ce;
  border-radius: 4px;
  /*filter: drop-shadow(0 2px 4px #35353529);*/
  box-shadow: 0 2px 4px #35353529;
  /* transform: translateY(-45%); */
}

@media screen and (max-width: 768px){
  .fv .sec_wrap {
    margin-inline: 10px;
  }

  .fv .sec_wrap .slide {
    aspect-ratio: 370 / 600;
  }

  .fv .sec_wrap .slide > li figcaption,
  .fv .sec_wrap .slide > li:nth-of-type(3) figcaption,
  .fv .sec_wrap .slide > li:nth-of-type(4) figcaption {
    text-align: center;
    white-space: nowrap;
    line-height: 1.5;
    top: unset;
    bottom: 16%;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
  }

  .fv .anchor_list {
    width: calc(100% - 20px);
  }

  #hd .breadcrumb,
  section .sec_wrap {
    width: calc(100% - 40px);
  }
}

.fv .sec_wrap .anchor_list > li > a {
  aspect-ratio: 25 / 14;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fv .sec_wrap .anchor_list > li > a:hover {
  background-color: #f2f7ff;
  transition: 0.3s;
}

.fv .sec_wrap .anchor_list > li > a > img {
  width: 32%;
  aspect-ratio: 4 / 3;
  margin-bottom: 0.5em;
  font-size: 1rem;
}

.fv .sec_wrap .anchor_list > li > a > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 1.5em;
  margin-bottom: 0.25em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.fv .sec_wrap .anchor_list > li > a::after {
  content: '\251b';
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  font-size: 1.6rem;
  color: #84919d;
  line-height: 1;
  transform: scaleX(0.833) rotateZ(45deg);
}

.fv .sec_wrap .anchor_list > li > a:hover > span,
.fv .sec_wrap .anchor_list > li > a:hover::after {
  color: #357eec;
  transition: 0.3s;
}

@media screen and (max-width: 768px){
  .fv .sec_wrap .anchor_list > li > a {
    aspect-ratio: 88 / 120;
  }

  .fv .sec_wrap .anchor_list > li > a > img {
    width: 60%;
    margin-bottom: 0.5em;
  }

  .fv .sec_wrap .anchor_list > li > a > span {
    flex-direction: column;
    height: 2.75em;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .fv .sec_wrap .anchor_list > li > a::after {
    margin-top: 0.25em;
  }
}

@media screen and (max-width: 540px){
  .fv .sec_wrap .anchor_list > li > a > span {
    font-size: 1.2rem;
  }

  .fv .sec_wrap .anchor_list > li > a::after {
    margin-top: 0;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 375px){
  .fv .sec_wrap .anchor_list > li > a > span {
    font-size: 1.024rem;
  }

  .fv .sec_wrap .anchor_list > li > a::after {
    margin-top: 0;
    font-size: 1.195rem;
  }
}


main > section {
  position: relative;
}

.anchor_pile {
  display: block;
  width: 1px;
  height: 0;
  position: absolute;
  left: 0;
  top: -10px;
  user-select: none;
  pointer-events: none;
  visibility: hidden;
  z-index: -1;
}

main > section:nth-of-type(even){
  background-color: #f6f6f9;
}

.sec_wrap > hgroup h1,
.sec_wrap > hgroup h2,
.sec_wrap > h1 {
  padding-top: 3.5em;
  margin-bottom: 1.786em;
  font-size: 2.8rem;
  color: #353535;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.sec_wrap > hgroup h2 {
  margin-bottom: 0.5em;
}

.sec_wrap > hgroup h1 > span:first-of-type,
.sec_wrap > hgroup h2 > span:first-of-type,
.sec_wrap > h1 > span:first-of-type {
  font-family: var(--ubuntu);
  font-size: 2.857em;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.125;
  opacity: 0.2;
}

.sec_wrap > hgroup h1 > span:last-of-type,
.sec_wrap > hgroup h2 > span:last-of-type,
.sec_wrap > h1 > span:last-of-type {
  line-height: 1.464;
}

.sec_wrap > hgroup > p {
  margin-bottom: 1em;
  font-size: 3rem;
  font-weight: 700;
  color: #357eec;
}

.sec_wrap > hgroup > h2 > span:empty,
.sec_wrap > hgroup > p:empty {
  display: none;
  margin: 0;
}

.sec_wrap > hgroup > h2 + p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #353535;
}

.sec_wrap > figure {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px){
  .sec_wrap > figure {
    font-size: 2.304rem;
  }
}

@media screen and (max-width: 540px){
  .sec_wrap > figure {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 375px){
  .sec_wrap > figure {
    font-size: 1.365rem;
  }
}

.sec_wrap > figure > figcaption {
  width: 50%;
}

.sec_wrap > figure figcaption > p {
  margin-bottom: 1.5em;
}

.vision .sec_wrap > hgroup > p {
  letter-spacing: 0.1em;
}

.vision .sec_wrap > figure > picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46%;
  aspect-ratio: 460 / 369;
}

@media screen and (max-width: 1080px){
  .vision .sec_wrap > figure {
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px){
  .sec_wrap > hgroup h1,
  .sec_wrap > hgroup h2,
  .sec_wrap > h1 {
    margin-bottom: 30px;
    padding-top: 50px;
    font-size: 3rem;
  }

  .sec_wrap > hgroup > p {
    font-size: 3.5rem;
  }

  .sec_wrap > hgroup > h2 + p {
    font-size: 2.016rem;
  }

  .sec_wrap > figure figcaption > p {
    font-size: 2rem;
  }

  .vision .sec_wrap > figure {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .vision .sec_wrap > figure > figcaption,
  .vision .sec_wrap > figure > picture {
    width: 100%;
  }

  main > section {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 540px){
  .sec_wrap > hgroup h1,
  .sec_wrap > hgroup h2,
  .sec_wrap > h1 {
    font-size: 2rem;
  }

  .sec_wrap > hgroup > p {
    font-size: 2.5rem;
  }

  .sec_wrap > figure figcaption > p {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 375px){
  .sec_wrap > hgroup h1,
  .sec_wrap > hgroup h2,
  .sec_wrap > h1 {
    font-size: 1.707rem;
  }

  .sec_wrap > hgroup > p {
    font-size: 2.133rem;
  }

  .sec_wrap > figure figcaption > p {
    font-size: 1.195rem;
  }
}

.service {
  padding-bottom: 152px;
}

body[data-pagetype="top"] section.service h1 {
  position: relative;
}

body[data-pagetype="top"] section.service h1 .anchor_pile {
  top: unset;
  bottom: calc(50% + 1em);
  transform: translateY(-50%);
}

.service .sec_wrap > ul > li {
  display: block;
  margin-bottom: 40px;
}

.service .sec_wrap .service_container > li {
  position: relative;
}

.service .sec_wrap > ul
.service .sec_wrap > ul > li:last-of-type {
  margin-bottom: 0;
}

.service .sec_wrap > ul hgroup > h2 {
  height: 4.25em;
  margin-bottom: 1.4em;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
}

.service .sec_wrap > ul hgroup > h2 > img {
  display: flex;
  width: auto;
  height: 100%;
  aspect-ratio: 4 / 3;
}

.service .sec_wrap > ul hgroup > h2 > span {
  display: flex;
  align-items: center;
  margin-left: 0.75em;
  padding-inline: 0.1em;
  border-bottom: 2px solid #357eec;
  font-size: inherit;
  line-height: 1.75;
  color: #357eec;
  position: relative;
}

.service .sec_wrap > ul hgroup > h2 > span::before {
  content: '\3000';
  display: flex;
  width: 1em;
  height: 100%;
  border-bottom: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  transform-origin: right bottom;
  transform: rotateZ(-45deg) scaleX(0.7);
  position: absolute;
  left: calc(-1em + 1px);
  bottom: -1.414px;
}

.service .sec_wrap > ul hgroup > p {
  margin-bottom: 1.4em;
  font-size: 1.6rem;
}

.service_list {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
  row-gap: 20px;
}

.service_list > div {
  padding-block: 15px;
  padding-inline: 30px 20px;
  background-color: #fdfdfd;
  border: 1px solid #d0d9e2;
}

.service_list dt {
  height: fit-content;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.service_list dt::before {
  width: 1em;
  height: 1em;
}

.service_list .dt2rows dt {
  height: 3em;
  align-items: flex-start;
}

.service_list .dt2rows dt::before {
  transform: translateY(0.75em);
}

.service_list dd {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px){
  .service {
    padding-bottom: 60px;
  }

  .service .sec_wrap > ul > li {
    margin-bottom: 60px;
  }

  .service .sec_wrap > ul > li:last-of-type {
    margin-bottom: 0;
  }

  .service .sec_wrap > ul hgroup > h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .service .sec_wrap > ul hgroup > h2 > img {
    width: 30%;
    height: auto;
  }

  .service .sec_wrap > ul hgroup > p {
    margin-bottom: 10px;
    font-size: 2rem;
  }

  .service_list {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 10px;
  }

  .service_list > div {
    border-color: #357eec;
  }

  .service_list dt {
    font-size: 2.16rem;
  }

  .service_list .dt2rows dt {
    height: fit-content;
    align-items: center;
  }

  .service_list .dt2rows dt::before {
    transform: initial;
  }

  .service_list dd {
    font-size: 1.68rem;
  }
}

@media screen and (max-width: 540px){
  .service .sec_wrap > ul hgroup > h2 {
    font-size: 1.8rem;
  }

  .service .sec_wrap > ul hgroup > h2 > img {
    width: 33%;
  }

  .service .sec_wrap > ul hgroup > p {
    font-size: 1.4rem;
  }

  .service_list dt {
    font-size: 1.6rem;
  }

  .service_list dd {
    font-size: 1.4rem;
  }

  .detail_anchor {
    height: 2.857em;
    font-size: 1.4rem;
  }

  .detail_anchor::after {
    font-size: 1.4rem;
    right: 1em;
  }
}

@media screen and (max-width: 375px){
  .service .sec_wrap > ul hgroup > h2 {
    font-size: 1.536rem;
  }

  .service .sec_wrap > ul hgroup > p {
    font-size: 1.195rem;
  }

  .service_list dt {
    font-size: 1.366rem;
  }

  .service_list dd {
    font-size: 1.195rem;
  }

  .detail_anchor {
    font-size: 1.195rem;
  }

  .detail_anchor::after {
    font-size: 1.4rem;
  }
}

.office .sec_wrap > figure {
  width: 100%;
  margin-bottom: 20px;
  display: block;
  position: relative;
}

.office .sec_wrap > figcaption {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.office .sec_wrap > figure > picture {
  width: 100%;
  aspect-ratio: 100 / 52;
}

body:not([data-pagetype="top"]) .sec_wrap > hgroup h2 > span:first-of-type {
  font-size: 2.142em;
}

@media screen and (max-width: 768px){
  .office .sec_wrap > figure > picture {
    aspect-ratio: 350 / 266;
  }
}

body[data-pagetype="cs"] .service {
  padding-bottom: 0;
}

body[data-pagetype="cs"] .service .sec_wrap > figure {
  display: block;
  margin-bottom: 80px;
  background-color: #f6f6f9;
}

body[data-pagetype="cs"] .service .sec_wrap > figure > ul {
  padding: 30px;
  display: flex;
  justify-content: space-between;
}

body[data-pagetype="cs"] .service .left {
  width: 60%;
}

body[data-pagetype="cs"] .service .left .inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 10px;
}

body[data-pagetype="cs"] .service .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(40% - 50px);
  padding-bottom: 1.2em;
  background-color: #ffffff;
  border: 2px solid #357eec;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

body[data-pagetype="cs"] .service .left .inner > li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

body[data-pagetype="cs"] .service .left .inner > li > div {
  width: 100%;
}

body[data-pagetype="cs"] .service .left .inner > li > div:empty {
  visibility: hidden;
}

body[data-pagetype="cs"] .service .left .top,
body[data-pagetype="cs"] .service .left .bottom {
  border-radius: 4px;

  line-height: 1;
}

body[data-pagetype="cs"] .service .left .top,
body[data-pagetype="cs"] .service .left .bottom,
body[data-pagetype="cs"] .service .right {
  font-size: 1.6rem;
}

body[data-pagetype="cs"] .service .left .top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.8em;
  background-color: #e2eaf8;
  color: #606265;
}

body[data-pagetype="cs"] .service .left .middle {
  margin-block: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
}

body[data-pagetype="cs"] .service .left .middle:not(:empty)::before,
body[data-pagetype="cs"] .service .left .middle:not(:empty)::after {
  content: '';
  display: flex;
  width: auto;
  height: 1.45em;
  aspect-ratio: 28 / 42;
  margin-inline: auto;
  background-image: url(../img/new_icon/icon_arrow01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  z-index: 0;
  transform: translateY(1px);
}

body[data-pagetype="cs"] .service .left .middle:not(:empty)::after {
  transform: rotateZ(180deg);
}

body[data-pagetype="cs"] .service .left .middle > ul,
body[data-pagetype="cs"] .service .left .bottom > ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body[data-pagetype="cs"] .service .left .middle > ul {
  width: 100%;
  aspect-ratio: 2 / 1;
  background-color: #ffffff;
  border: 1px solid #353535;
  position: relative;
  z-index: 2;
}

body[data-pagetype="cs"] .service .left .middle > ul > li:not(:last-child),
body[data-pagetype="cs"] .service .left .bottom > ul > li:not(:last-child) {
  margin-bottom: 0.5em;
}

body[data-pagetype="cs"] .service .left .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: auto;
  height: 11em;
  aspect-ratio: 1 / 1;
  padding-top: 1.25em;
  background-color: #ffffff;
  border: 2px solid #357eec;
  border-radius: 5px;
  font-weight: 700;
  color: #357eec;
  overflow: hidden;
}

body[data-pagetype="cs"] .service .left .bottom ul {
  height: 5.25em;
}

body[data-pagetype="cs"] .service .left .bottom::after {
  content: '';
  display: flex;
  width: auto;
  height: 3.75em;
  aspect-ratio: 3 / 1;
  background-image: url(../img/new_top/top_anchor_menu01.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

body[data-pagetype="cs"] .service .left .inner > li:nth-of-type(2) .bottom::after {
  background-image: url(../img/new_top/top_anchor_menu03.webp);
  transform: scale(1.25) translateY(17.75%);
}

body[data-pagetype="cs"] .service .left .inner > li:nth-of-type(3) .bottom::after {
  background-image: url(../img/new_top/top_anchor_menu02.webp);
}

body[data-pagetype="cs"] .service .right .inner,
body[data-pagetype="cs"] .service .right > span {
  width: calc(100% - 3em);
  font-size: 1.8rem;
}

body[data-pagetype="cs"] .service .right > span {
  display: flex;
  justify-content: center;
  align-items: center;
}

body[data-pagetype="cs"] .service .right > span:nth-of-type(1){
  width: 100%;
  height: 3em;
  background-color: #357eec;
  color: #ffffff;
  line-height: 1;
}

body[data-pagetype="cs"] .service .right > span:nth-of-type(2){
  justify-content: flex-end;
  font-size: 1.6rem;
}

body[data-pagetype="cs"] .service .right > span:nth-of-type(3){
  height: 3.25em;
  margin-top: auto;
  background-color: #357eec;
  color: #ffffff;
  line-height: 1;
}

body[data-pagetype="cs"] .service .right .inner {
  margin-top: 1.25em;
}

body[data-pagetype="cs"] .service .right .inner > li {
  height: fit-content;
  margin-bottom: 0.75em;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1;
}

body[data-pagetype="cs"] .service .right .inner > li:last-of-type {
  margin-bottom: 0;
}

body[data-pagetype="cs"] .service .right .inner > li::before {
  transform: translateY(1px);
}

body[data-pagetype="cs"] .service .right::after {
  content: '';
  display: block;
  width: 1.5em;
  aspect-ratio: 1 / 1;
  border: inherit;
  background-color: #ffffff;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotateZ(-45deg) skew(10deg, 10deg);
  position: absolute;
  left: -0.9em;
  bottom: 4.8em;
  z-index: 2;
}

body[data-pagetype="cs"] .service .sec_wrap > dl > div {
  margin-bottom: 100px;
}

body[data-pagetype="cs"] .sec_wrap > dl > div > dt {
  width: 13.5em;
  margin-bottom: 1em;
  padding-bottom: 0.75em;
  border-bottom: 2px solid #d0d9e2;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: #357eec;
  position: relative;
}

body[data-pagetype="cs"] .sec_wrap > dl > div > dt::after {
  content: '';
  display: block;
  width: 1.5em;
  height: 0;
  position: absolute;
  border-bottom: 2px solid #357eec;
  bottom: -2px;
  left: 0;
  z-index: 1;
}


body[data-pagetype="cs"] .sec_wrap > dl > div > dd > p {
  margin-bottom: 1.25em;
  font-size: 1.6rem;
}

body[data-pagetype="cs"] .use_case,
body[data-pagetype="cs"] .flow,
body[data-pagetype="cs"] .pdca {
  padding-bottom: 100px;
}

body[data-pagetype="cs"] .use_case,
body[data-pagetype="cs"] .pdca {
  background-color: #f6f6f6;
}

body[data-pagetype="cs"] .contact_us {
  padding-bottom: 200px;
  background-color: #ffffff;
}

body[data-pagetype="cs"] .service .sec_wrap > hgroup,
body[data-pagetype="cs"] .use_case .sec_wrap > hgroup,
body[data-pagetype="cs"] .pdca .sec_wrap > hgroup,
body[data-pagetype="cs"] .use_case .sec_wrap > hgroup > h2,
body[data-pagetype="cs"] .pdca .sec_wrap > hgroup > h2,
body[data-pagetype="cs"] .office .sec_wrap > hgroup > h2 {
  margin-bottom: 5rem;
}

body[data-pagetype="cs"] .service .sec_wrap > hgroup > h2 {
  margin-bottom: 1em;
}

body[data-pagetype="cs"] .contact_us .sec_wrap > hgroup > h2 {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding-top: 0;
}

body[data-pagetype="cs"] .use_case .sec_wrap > hgroup > h2 + p,
body[data-pagetype="cs"] .pdca .sec_wrap > hgroup > h2 + p  {
  margin-bottom: 0;
}

body[data-pagetype="cs"] .use_case .sec_wrap > dl > div > dt {
  color: #353535;
}

.case_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.case_list > div > dt {
  margin-bottom: 0.75em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #357eec;
}

.case_list .inner > div,
.case_list2 > div {
  display: grid;
  grid-template-columns: 25.1% 74.9%;
  margin-bottom: 2px;
  font-size: 1.6rem;
  color: #353535;
  line-height: 1.4;
}

.case_list .inner > div {
  grid-template-columns: 25.1% 74.9%;
}


.case_list2 > div {
  grid-template-columns: 20% 80%;
}

.case_list .inner > div > dt,
.case_list2 > div > dt,
.case_list .inner > div > dd,
.case_list2 > div > dd {
  display: flex;
  align-items: center;
  padding-block: 0.8em;
  padding-inline: 1em;
}

.case_list .inner > div > dt,
.case_list2 > div > dt {
  background-color: #e8f0fb;
}

.case_list .inner > div > dd,
.case_list2 > div > dd {
  background-color: #ffffff;
}

.flow_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.flow_list > li {
  overflow-x: visible;
  position: relative;
  z-index: 0;
}

.flow_list > li:not(:first-of-type)::before {
  content: '';
  display: block;
  width: 40%;
  height: 0;
  border-bottom: 2px solid #357eec;
  position: absolute;
  top: calc(50% - 1px);
  left: -20%;
  transform: translateY(-50%);
}

.flow_list > li > span:nth-of-type(1) {
  display: flex;
  font-size: 5rem;
  font-family: var(--ubuntu);
  font-weight: 500;
  color: #357eec;
  opacity: 0.5;
  transform: translateX(0.25em) translateY(0.25em);
}

.flow_list > li > picture {
  width: 60%;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border: 2px solid #357eec;
  border-radius: 50%;
}

.flow_list > li > span:nth-of-type(2) {
  width: 100%;
  height: 3.75em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  text-align: center;
}

body[data-pagetype="cs"] .pdca .sec_wrap > figure {
  width: calc(100% - 80px);
  margin-inline: auto;
  display: flex;
  position: relative;
}

body[data-pagetype="cs"] .pdca .sec_wrap > figure > picture {
  width: 100%;
  aspect-ratio: 1386 / 604;
}

body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div {
  font-size: 3rem;
  position: absolute;
}

body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div:nth-of-type(-n+2) {
  top: 0;
}

body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div:nth-of-type(n+3) {
  bottom: 1.55em;
}

body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div:nth-of-type(1),
body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div:nth-of-type(4) {
  left: 0;
  text-align: left;
}

body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div:nth-of-type(2),
body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div:nth-of-type(3) {
  right: 0;
  text-align: right;
}

body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div dt {
  margin-bottom: 0.5em;
  display: flex;
  align-items: flex-end;
  font-weight: 700;
  color: #357eec;
  line-height: 1;
}

body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div:nth-of-type(2) dt,
body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div:nth-of-type(3) dt {
  justify-content: flex-end;
}

body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div dt > span:nth-of-type(2){
  margin-left: 0.33em;
  font-size: 0.8em;
  color: #353535;
}

body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div dd {
 font-size: 0.533em;
}

body[data-pagetype="cs"] .office .sec_wrap > figure {
  position: relative;
  display: flex;
}

body[data-pagetype="cs"] .office .sec_wrap > figure > picture,
body[data-pagetype="company"] .office .sec_wrap > figure > picture {
  width: 63.3%;
  aspect-ratio: 1268 / 1040;
  margin-inline: auto;
}

body[data-pagetype="cs"] .office .sec_wrap > figure > figcaption,
body[data-pagetype="company"] .office .sec_wrap > figure > figcaption {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

body[data-pagetype="cs"] .contact_us .sec_wrap > div {
  width: 100%;
  aspect-ratio: 4 / 1;
  background-color: #f6f6f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

body[data-pagetype="cs"] .contact_us .sec_wrap > div > a {
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #357eec;
  line-height: 1;
  position: relative;
  z-index: 1;
}

body[data-pagetype="cs"] .contact_us .sec_wrap > div > a::before,
body[data-pagetype="cs"] .contact_us .sec_wrap > div > a::after {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 110%;
}

body[data-pagetype="cs"] .contact_us .sec_wrap > div > a::before {
  content: '';
  width: 2.5em;
  aspect-ratio: 1 / 1;
  background-color: #357eec;
  border-radius: 50%;
  font-size: 1.6rem;
  transform: translateX(-50%) translateY(-50%);
}

body[data-pagetype="cs"] .contact_us .sec_wrap > div > a::after {
  content: '\ff1e';
  width: fit-content;
  height: fit-content;
  font-size: 1rem;
  color: #ffffff;
  transform:  translateX(-50%) translateY(-50%) scaleY(1.5);
}

body[data-pagetype="cs"] .contact_us .sec_wrap > div > p {
  display: flex;
  justify-content: center;
  margin-top: 1em;
  font-size: 1.6rem;
}

body[data-pagetype="cs"] .contact_us .sec_wrap > div .contact_us_bg {
  display: flex;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

body[data-pagetype="cs"] .contact_us .sec_wrap > div .contact_us_bg:nth-of-type(1) {
  width: 4.85%;
  aspect-ratio: 97 / 188;
  background-image: url(../img/new_cs/cs_contact_us01.webp);
  top: 47.8%;
  left: 7%;
}

body[data-pagetype="cs"] .contact_us .sec_wrap > div .contact_us_bg:nth-of-type(2) {
  width: 4.1%;
  aspect-ratio: 82 / 190;
  background-image: url(../img/new_cs/cs_contact_us02.webp);
  top: 18.3%;
  left: 16.2%;
}

body[data-pagetype="cs"] .contact_us .sec_wrap > div .contact_us_bg:nth-of-type(3) {
  width: 12.85%;
  aspect-ratio: 257 / 150;
  background-image: url(../img/new_cs/cs_contact_us03.webp);
  top: 54.4%;
  left: 82%;
}

@media screen and (max-width: 768px){
  body[data-pagetype="cs"] .service .sec_wrap > hgroup, body[data-pagetype="cs"] .use_case .sec_wrap > hgroup, body[data-pagetype="cs"] .pdca .sec_wrap > hgroup, body[data-pagetype="cs"] .use_case .sec_wrap > hgroup > h2, body[data-pagetype="cs"] .pdca .sec_wrap > hgroup > h2, body[data-pagetype="cs"] .office .sec_wrap > hgroup > h2 {
    margin-bottom: 50px;
  }

  body[data-pagetype="cs"] .service .sec_wrap > figure {
    background-color: initial;
  }

  body[data-pagetype="cs"] .service .sec_wrap > figure > ul {
    flex-wrap: wrap;
    padding: 0;
  }

  body[data-pagetype="cs"] .service .left .top, body[data-pagetype="cs"] .service .left .bottom, body[data-pagetype="cs"] .service .right {
    font-size: inherit;
  }

  body[data-pagetype="cs"] .service .sec_wrap > figure > ul .left,
  body[data-pagetype="cs"] .service .sec_wrap > figure > ul .right {
    width: 100%;
    padding-bottom: 8px;
  }

  body[data-pagetype="cs"] .service .left .inner {
    column-gap: 8px;
    font-size: 1.728rem;
  }

  body[data-pagetype="cs"] .service .left .middle {
    font-size: 1em;
  }

  body[data-pagetype="cs"] .service .left .inner > li .bottom {
    width: 100%;
    height: auto;
    aspect-ratio: 10 / 11;
    line-height: 1;
  }

  body[data-pagetype="cs"] .service .left .bottom::after {
    width: 100%;
    height: auto;
  }

  body[data-pagetype="cs"] .service .left .middle > ul > li:not(:last-child), body[data-pagetype="cs"] .service .left .bottom > ul > li:not(:last-child) {
    margin-bottom: 0.25em;
  }

  body[data-pagetype="cs"] .service .right .inner, body[data-pagetype="cs"] .service .right > span {
    width: 80%;
  }

  body[data-pagetype="cs"] .service .right {
    margin-top: calc(10px + 1em);
  }

  body[data-pagetype="cs"] .service .right::before {
    content: '\25b2';
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1em;
    aspect-ratio: 1 / 1;
    font-size: inherit;
    color: #357eec;
    line-height: 1;
    position: absolute;
    top: calc(-1em + 2px);
    left: 50%;
    transform-origin: center bottom;
    transform: translateX(-50%) scale(2, 1.414);
  }

  body[data-pagetype="cs"] .service .right::after {
    display: none;
  }

  body[data-pagetype="cs"] .service .right > span:nth-of-type(1),
  body[data-pagetype="cs"] .service .right > span:nth-of-type(3),
  body[data-pagetype="cs"] .service .right .inner > li {
    font-size: 2.304rem;
  }

  body[data-pagetype="cs"] .service .right > span:nth-of-type(2) {
    margin-bottom: 1em;
    font-size: 2.016rem;
  }

  .case_list {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .case_list .inner > div > dt,
  .case_list2 > div > dt {
    background-color: #d7e5fb;
    font-weight: 700;
    color: #357eec;
  }

  .case_list2 > div > dt {
    background-color: #eaf2fd;
  }

  .flow_list {
    grid-template-columns: 1fr;
  }

  .flow_list > li {
    display: flex;
    align-items: center;
  }

  .flow_list > li > span:nth-of-type(1) {
    font-size: 5.76rem;
    transform: translateX(0.5em) translateY(-1.5em);
  }

  .flow_list > li > picture {
    width: auto;
    height: 70%;
    background-color: #ffffff;
    position: relative;
  }

  .flow_list > li > span:nth-of-type(2) {
    width: 50%;
    padding-left: 5%;
    font-size: 2.016rem;
    justify-content: flex-start;
    text-align: initial;
  }

  .flow_list > li:not(:first-of-type)::before {
    content: '';
    display: block;
    width: 0;
    height: 50%;
    border-right: 2px solid #357eec;
    position: absolute;
    top: -16%;
    left: calc(32% - 2px);
    transform: translateX(-50%);
  }

  body[data-pagetype="cs"] .pdca .sec_wrap > figure {
    width: 100%;
    font-size: 3.6rem;
  }

  body[data-pagetype="cs"] .pdca .sec_wrap > figure > picture {
    aspect-ratio: 878 / 537;
    margin-block: 4em;
  }

  body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div {
    font-size: inherit;
  }

  body[data-pagetype="cs"] .pdca .sec_wrap > figure > dl > div:nth-of-type(n+3) {
    bottom: 0.833em;
  }

  body[data-pagetype="cs"] .use_case,
  body[data-pagetype="cs"] .flow, body[data-pagetype="cs"] .pdca {
    padding-bottom: 50px;
  }

  body[data-pagetype="cs"] .office .sec_wrap > figure > figcaption,
  body[data-pagetype="company"] .office .sec_wrap > figure > figcaption {
    height: auto;
    position: static;
  }

  body[data-pagetype="cs"] .office .sec_wrap > figure,
  body[data-pagetype="company"] .office .sec_wrap > figure {
    display: flex;
    flex-wrap: wrap;
  }

  body[data-pagetype="cs"] .office .sec_wrap > figure > figcaption,
  body[data-pagetype="company"] .office .sec_wrap > figure > figcaption {
    order: -1;
  }

  body[data-pagetype="cs"] .office .sec_wrap > figure > picture,
  body[data-pagetype="company"] .office .sec_wrap > figure > picture {
    width: 100%;
    aspect-ratio: 700 / 533;
  }

  body[data-pagetype="cs"] .contact_us {
    padding-bottom: 60px;
  }

  body[data-pagetype="cs"] .contact_us .sec_wrap > div {
    aspect-ratio: initial;
    padding-block: 40px;
    border: 1px solid #357eec;
  }

  body[data-pagetype="cs"] .contact_us .sec_wrap > div .contact_us_bg {
    display: none;
  }

  body[data-pagetype="cs"] .contact_us .sec_wrap > div > a {
    height: auto;
    font-size: 2.88rem;
    line-height: 1.4;
  }

  body[data-pagetype="cs"] .contact_us .sec_wrap > div > a > span {
    line-height: inherit;
  }

  body[data-pagetype="cs"] .contact_us .sec_wrap > div > a::before,
  body[data-pagetype="cs"] .contact_us .sec_wrap > div > a::after {
    left: 115%;
  }
}

@media screen and (max-width: 540px){
  body:not([data-pagetype="top"]) .sec_wrap > hgroup h2 > span:first-of-type {
    margin-bottom: 0.1em;
    font-size: 2.5em;
    letter-spacing: 0.1em;
  }

  #hd h1 {
    aspect-ratio: 390 / 140;
    font-size: 2rem;
  }

  #hd .breadcrumb li {
    font-size: 1.4rem;
  }

  .sec_wrap > hgroup > h2 + p {
    font-size: 1.4rem;
  }

  body[data-pagetype="cs"] .service .sec_wrap > figure > ul .left {
    padding-bottom: 0;
  }

  body[data-pagetype="cs"] .service .right .inner {
    width: 70%;
  }

  body[data-pagetype="cs"] .service .right > span:nth-of-type(2) {
    width: 80%;
  }

  body[data-pagetype="cs"] .service .right > span:nth-of-type(3) {
    width: 75%;
  }

  body[data-pagetype="cs"] .service .left .inner {
    column-gap: 5px;
    font-size: 1.2rem;
  }

  body[data-pagetype="cs"] .service .left .inner > li .bottom {
    padding-top: 0.33em;
    font-size: 1.35rem;
  }

  body[data-pagetype="cs"] .service .left .middle > ul > li:not(:last-child),
  body[data-pagetype="cs"] .service .left .bottom > ul > li:not(:last-child) {
    margin-bottom: 0.33em;
  }

  body[data-pagetype="cs"] .service .right > span:nth-of-type(1),
  body[data-pagetype="cs"] .service .right > span:nth-of-type(3),
  body[data-pagetype="cs"] .service .right .inner > li {
    font-size: 1.6rem;
  }

  body[data-pagetype="cs"] .service .right > span:nth-of-type(2) {
    font-size: 1.6rem;
  }

  body[data-pagetype="cs"] .service .right > span:nth-of-type(3) {
    height: 3.5em;
  }

  body[data-pagetype="cs"] .sec_wrap > dl > div > dt {
    font-size: 1.8rem;
  }

  body[data-pagetype="cs"] .sec_wrap > dl > div > dd > p {
    font-size: 1.4rem;
    text-align: justify;
  }

  body[data-pagetype="cs"] .service .sec_wrap > dl > div {
    margin-bottom: 30px;
  }

  body[data-pagetype="cs"] .service .sec_wrap > dl > div:last-of-type {
    margin-bottom: 60px;
  }

  body[data-pagetype="cs"] .service .sec_wrap > hgroup,
  body[data-pagetype="cs"] .use_case .sec_wrap > hgroup,
  body[data-pagetype="cs"] .pdca .sec_wrap > hgroup,
  body[data-pagetype="cs"] .use_case .sec_wrap > hgroup > h2,
  body[data-pagetype="cs"] .pdca .sec_wrap > hgroup > h2,
  body[data-pagetype="cs"] .office .sec_wrap > hgroup > h2 {
    margin-bottom: 24px;
  }

  .case_list .inner > div > dt,
  .case_list2 > div > dt,
  .case_list .inner > div > dd,
  .case_list2 > div > dd {
    padding-inline: 0.75em 1.25em;
    font-size: 1.4rem;
  }

  .flow_list > li > span:nth-of-type(1) {
    margin-right: -5%;
    font-size: 4rem;
    transform: translateX(0em) translateY(-1.75em);
  }

  .flow_list > li > picture {
    height: 75%;
  }

  .flow_list > li > span:nth-of-type(2) {
    font-size: 1.4rem;
  }

  .flow_list > li:not(:first-of-type)::before {
    top: -13%;
    left: calc(30% - 2px);
  }

  body[data-pagetype="cs"] .flow {
    padding-bottom: 30px;
  }

  body[data-pagetype="cs"] .pdca .sec_wrap > figure {
    font-size: 2.6rem;
  }

  body[data-pagetype="cs"] .contact_us .sec_wrap > hgroup > h2 {
    margin-bottom: 0.75em;
  }

  body[data-pagetype="cs"] .contact_us .sec_wrap > div {
    padding-block: 20px;
  }

  body[data-pagetype="cs"] .contact_us .sec_wrap > div > a {
    font-size: 2rem;
  }

  body[data-pagetype="cs"] .contact_us .sec_wrap > div > p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 375px){
  #hd h1 {
    font-size: 1.707rem;
  }

  #hd .breadcrumb li {
    font-size: 1.195rem;
  }

  .sec_wrap > hgroup > h2 + p {
    font-size: 1.195rem;
  }

  body[data-pagetype="cs"] .service .left .inner {
    font-size: 1.024rem;
  }

  body[data-pagetype="cs"] .service .left .inner > li .bottom {
    font-size: 1.152rem;
  }

  body[data-pagetype="cs"] .service .right > span:nth-of-type(1), body[data-pagetype="cs"] .service .right > span:nth-of-type(3), body[data-pagetype="cs"] .service .right .inner > li {
    font-size: 1.365rem;
  }

  body[data-pagetype="cs"] .service .right > span:nth-of-type(2) {
    font-size: 1.365rem;
  }

  body[data-pagetype="cs"] .sec_wrap > dl > div > dt {
    font-size: 1.536rem;
  }

  body[data-pagetype="cs"] .sec_wrap > dl > div > dd > p {
    font-size: 1.195rem;
  }

  .case_list > div > dt {
    font-size: 1.536rem;
  }

  .case_list .inner > div > dt,
  .case_list2 > div > dt,
  .case_list .inner > div > dd,
  .case_list2 > div > dd {
    font-size: 1.195rem;
    padding-inline: 0.5em;
  }

  .case_list .inner > div > dt,
  .case_list2 > div > dt {
    padding-inline: 0.5em 0;
  }

  .flow_list > li > span:nth-of-type(1) {
    font-size: 3.413rem;
  }

  .flow_list > li > span:nth-of-type(2) {
    font-size: 1.195rem;
  }

  body[data-pagetype="cs"] .pdca .sec_wrap > figure {
    font-size: 2.219rem;
  }

  body[data-pagetype="cs"] .contact_us .sec_wrap > div > a {
    font-size: 1.707rem;
  }

  body[data-pagetype="cs"] .contact_us .sec_wrap > div > p {
    font-size: 1.195rem;
  }
}

body[data-pagetype="company"] .sec_wrap > hgroup > p {
  font-size: 3em;
  font-weight: 700;
  color: #357eec;
  line-height: 1;
}

body[data-pagetype="company"] .sec_wrap > hgroup > h2 {
  margin-bottom: 5rem;
}

body[data-pagetype="company"] .sec_wrap > hgroup > h2 > .anchor_pile {
  position: static;
  transform: translateY(-10px);
}

body[data-pagetype="company"] .message .sec_wrap > div > p {
  margin-bottom: 1.333em;
  font-size: 1.6rem;
}

body[data-pagetype="company"] .message .sec_wrap > div > p:last-of-type {
  margin-bottom: 3.5em;
}

body[data-pagetype="company"] .message .sec_wrap > div > span {
  display: block;
  width: fit-content;
  height: fit-content;
  margin-left: auto;
  line-height: 1;
}

body[data-pagetype="company"] .message .sec_wrap > div > .role {
  margin-bottom: 0.5em;
  font-size: 1.6rem;
}

body[data-pagetype="company"] .message .sec_wrap > div > .signature {
  font-size: 2.2rem;
  font-weight: 700;
}

body[data-pagetype="company"] main > section.overview {
  padding-bottom: 0;
}

body[data-pagetype="company"] main > section.history {
  padding-bottom: 80px;
  background-color: #f6f6f9;
}

.historical_list {
  overflow: hidden;
}

.historical_list > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5em;
  font-size: 1.6rem;
  line-height: 1;
}

.historical_list > div > dt {
  width: 26.8%;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.historical_list > div > dt::before,
.historical_list > div > dt::after {
  content: '';
  position: absolute;
  top: 1.5em;
  right: 30%;
  font-size: 0.75em;
}

.historical_list > div > dt::before {
  width: 0;
  height: calc(100% + 2em);
  border-right: 1px solid #d0d9e2;
  z-index: 1;
  transform: translateX(calc(-0.5em + 0.5px));
}

.historical_list > div:last-of-type > dt::before {
  display: none;
}

.historical_list > div > dt::after {
  width: 1em;
  aspect-ratio: 1 / 1;
  background-color: #f6f6f9;
  box-sizing: border-box;
  border: 2px solid #357eec;
  border-radius: 50%;
  z-index: 2;
}

.historical_list > div > dt .year {
  font-size: 3.125em;
  font-family: var(--ubuntu);
  font-weight: 500;
  color: #357eec;
}

.historical_list > div > dd {
  width: 73.2%;
  padding-block: 1em;
  padding-inline: 2.5em;
  background-color: #ffffff;
}

.historical_list > div > dd > ul > li {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
}

.historical_list > div > dd > ul > li:last-of-type {
  margin-bottom: 0;
}

.historical_list > div > dd .month {
  width: 2.25em;
  margin-right: 1em;
  font-size: 1.125em;
  font-weight: 700;
}

body[data-pagetype="company"] .office {
  padding-bottom: 80px;
  background-color: #ffffff;
}

body[data-pagetype="company"] .office .sec_wrap > figure {
  margin-bottom: 50px;
  position: relative;
}

body[data-pagetype="company"] .office .sec_wrap > figure > picture {
  width: 65%;
  margin-inline: 14.2% auto;
}

body[data-pagetype="company"] .list_ttl {
  width: fit-content;
  height: 1.55em;
  margin-bottom: 0.5em;
  padding-bottom: 0.1em;
  padding-inline: 0.92em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #357eec;
  border-radius: 5px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

body[data-pagetype="company"] hgroup + figure .list_ttl + p {
  font-size: 1.8rem;
}

body[data-pagetype="company"] .office .sec_wrap > ul > li {
  margin-bottom: 20px;
}

body[data-pagetype="company"] .office .sec_wrap > ul .list_ttl {
  margin-bottom: 1.25em;
}

body[data-pagetype="company"] .office .sec_wrap > ul > li > dl {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 40px;
}

body[data-pagetype="company"] .office .sec_wrap > ul > li dt,
body[data-pagetype="company"] .certify .sec_wrap > h3 {
  margin-bottom: 1em;
  padding-bottom: 0.75em;
  border-bottom: 2px solid #d0d9e2;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

body[data-pagetype="company"] .office .sec_wrap > ul > li dt::after,
body[data-pagetype="company"] .certify .sec_wrap > h3::after {
  content: '';
  display: block;
  width: 1.5em;
  height: 0;
  position: absolute;
  border-bottom: 2px solid #357eec;
  bottom: -2px;
  left: 0;
  z-index: 1;
}

body[data-pagetype="company"] .office .sec_wrap > ul > li dd .inner {
  margin-bottom: 30px;
}

body[data-pagetype="company"] .office .sec_wrap > ul > li dd .inner > a[target="_blank"] {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #357eec;
}

body[data-pagetype="company"] .office a[target="_blank"]::after {
  background-image: url(../img/new_icon/icon_targetblank2.webp);
}

body[data-pagetype="company"] .office .sec_wrap > ul > li dd .inner > p {
  font-size: 1.6rem;
}

body[data-pagetype="company"] .office .sec_wrap > ul > li > ul {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #357eec;
  line-height: 1;
}

body[data-pagetype="company"] .office .sec_wrap > ul > li > ul li {
  display: flex;
  align-items: center;
  margin-right: 2em;
}

body[data-pagetype="company"] .office .sec_wrap > ul > li > ul li a[target="_blank"] {
  display: flex;
  align-items: center;
}

body[data-pagetype="company"] .certify .sec_wrap > h3 {
  width: 13em;
}

body[data-pagetype="company"] .certify .sec_wrap ul .ttl {
  display: block;
  margin-bottom: 1em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #357eec;
}

body[data-pagetype="company"] .certify .case_list2 {
  align-items: center;
  padding-block: 2px 1px;
  padding-inline: 1px;
  background-color: #f6f6f9;
}

body[data-pagetype="company"] .certify li {
  margin-bottom: 50px;
}

body[data-pagetype="company"] .overview > .sec_wrap {
  padding-bottom: 3px;
}

@media screen and (max-width: 768px){
  .case_list2 > div {
    grid-template-columns: 22.5% 77.5%;
  }

  body[data-pagetype="company"] .case_list2 > div > dt {
    font-weight: inherit;
    color: inherit;
  }

  .historical_list > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 1.5em;
    font-size: 1.6rem;
    line-height: 1;
    position: relative;
  }

  .historical_list > div dt {
    width: 100%;
    position: static;
  }

  .historical_list > div dd {
    width: calc(100% - 2em);
    padding-inline: 1em;
  }

  .historical_list > div > dt .year {
    margin-bottom: 16px;
    font-size: 3.6em;
    text-indent: 0.5em;
  }

  .historical_list > div > dt::before,
  .historical_list > div > dt::after {
    right: unset;
    left: 0.5em;
    top: 1.75em;
  }

  .historical_list > div > dt::before {
    border-right: none;
    border-left: 1px solid #d0d9e2;
    transform: translateX(calc(0.5em + 0.5px));
  }

  .historical_list > div > dd > ul > li {
    align-items: flex-start;
    display: grid;
    grid-template-columns: 17.5% 82.5%;
  }

  .historical_list > div > dd .month {
    width: unset;
    margin-right: 0;
  }

  .historical_list > div dd .event {
    line-height: 1.5;
    transform: translateY(-0.2em);
  }

  body[data-pagetype="company"] .office .sec_wrap > ul > li > dl {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  body[data-pagetype="company"] .office .sec_wrap > ul > li > dl > div > dt {
    width: 58%;
  }

  body[data-pagetype="company"] .office .sec_wrap > ul .list_ttl {
    margin-bottom: 16px;
  }

  body[data-pagetype="company"] .office .sec_wrap > ul > li {
    margin-bottom: 5px;
  }

  body[data-pagetype="company"] .office .sec_wrap > ul > li > ul {
    flex-wrap: wrap;
    row-gap: 0.8em;
  }

  body[data-pagetype="company"] .office {
    padding-bottom: 50px;
  }

  body[data-pagetype="company"] .office .sec_wrap > figure > picture {
    width: 100%;
    margin-inline: 0;
    aspect-ratio: 700 / 533;
  }

  body[data-pagetype="company"] .certify .sec_wrap ul .ttl {
    line-height: 1.3;
  }
}

@media screen and (max-width: 540px){
  body[data-pagetype="company"] .sec_wrap > hgroup > p {
    font-size: 2.5rem;
  }

  body[data-pagetype="company"] .message .sec_wrap > div > p {
    font-size: 1.4rem;
  }

  body[data-pagetype="company"] .message .sec_wrap > div > p:last-of-type {
    margin-bottom: 1.5em;
  }

  body[data-pagetype="company"] .message .sec_wrap > div > .role {
    font-size: 1.4rem;
  }

  body[data-pagetype="company"] .message .sec_wrap > div > .signature {
    font-size: 1.8rem;
  }

  .case_list2 > div {
    grid-template-columns: 28% 72%;
  }

  .case_list2 > div > dt {
    padding-inline: 0.75em;
  }

  body[data-pagetype="company"] .overview > .sec_wrap {
    padding-bottom: 3px;
  }

  body[data-pagetype="company"] .history .sec_wrap > hgroup > h2 {
    margin-bottom: 30px;
  }

  .historical_list > div {
    font-size: 1.1111rem;
  }

  .historical_list > div > dt::before, .historical_list > div > dt::after {
    font-size: 1em;
  }

  .historical_list > div > dt::before,
  .historical_list > div > dt::after {
    left: 0.1em;
    top: 1.25em;
  }

  .historical_list > div > dt::before {
    transform: translateX(calc(0.5em - 0.5px));
  }

  .historical_list > div > dd .month {
    font-size: 1.4em;
  }

  .historical_list > div > dd .event {
    font-size: 1.25em;
  }

  body[data-pagetype="company"] .certify .sec_wrap > hgroup h2 > span:first-of-type {
    letter-spacing: 0.05em;
  }

  body[data-pagetype="company"] main > section.history {
    padding-bottom: 50px;
  }

  body[data-pagetype="company"] .list_ttl {
    font-size: 1.8rem;
  }

  body[data-pagetype="company"] hgroup + figure .list_ttl + p {
    font-size: 1.6rem;
  }

  body[data-pagetype="company"] .office .sec_wrap > ul > li dt,
  body[data-pagetype="company"] .certify .sec_wrap > h3 {
    font-size: 1.8rem;
  }

  body[data-pagetype="company"] .office .sec_wrap > ul > li dt {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  body[data-pagetype="company"] .office .sec_wrap > ul > li dd .inner > a[target="_blank"] {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }

  body[data-pagetype="company"] .office .sec_wrap > ul > li dd .inner > p {
    font-size: 1.4rem;
  }

  body[data-pagetype="company"] .office .sec_wrap > ul > li > ul {
    row-gap: 1em;
    font-size: 1.8rem;
  }

  body[data-pagetype="company"] .office .sec_wrap > ul > li > ul li {
    margin-right: 0.8em;
  }

  body[data-pagetype="company"] .sec_wrap > hgroup > h2 {
    margin-bottom: 30px;
  }

  body[data-pagetype="company"] .certify .sec_wrap > h3 {
    padding-bottom: 8px;
    margin-bottom: 10px;
  }

  body[data-pagetype="company"] .certify .sec_wrap ul .ttl {
    font-size: 1.6rem;
  }

  .case_list2 > div > dd {
    padding-inline: 0.5em 0.25em;
  }
}

body[data-pagetype="contact"] > main > .contact {
  padding-bottom: 200px;
}

body[data-pagetype="contact"] .sec_wrap > hgroup h2 {
  margin-bottom: 5rem;
}

body[data-pagetype="contact"] .sec_wrap > p {
  margin-bottom: 1em;
  font-size: 1.6rem;
}

body[data-pagetype="contact"] .sec_wrap > p > a[target="_blank"]::after {
  transform: translateY(-0.25em);
}

body[data-pagetype="contact"] .sec_wrap hgroup.gh3 > h3 {
  width: 13.75em;
  margin-block: 5rem 1em;
  padding-bottom: 1.25em;
  border-bottom: 2px solid #d0d9e2;
  white-space: nowrap;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: #357eec;
  position: relative;
}

body[data-pagetype="contact"] .sec_wrap hgroup.gh3 > h3::after {
  content: '';
  display :block;
  width: 1.5em;
  height: 0;
  position: absolute;
  border-bottom: 2px solid #357eec;
  bottom: -2px;
  left: 0;
  z-index: 1;
}

body[data-pagetype="contact"] .sec_wrap > hgroup.gh3 > p {
  margin-bottom: 1.5em;
  font-size: 1.6rem;
  font-weight: inherit;
  line-height: 1;
  color: inherit;
}

body[data-pagetype="contact"] .sec_wrap hgroup.gh3 + ul {
  display: flex;
  justify-content: space-between;
}

body[data-pagetype="contact"] .sec_wrap hgroup.gh3 + ul > li {
  width: 32%;
  aspect-ratio: 320 / 137;
  display: flex;
  box-shadow: 0px 2px 4px #35353529;
  border: 0.5px solid #84919D;
  border-radius: 5px;
  font-size: 1.8rem;
}

body[data-pagetype="contact"] .sec_wrap hgroup.gh3 + ul > li > a {
  width: 100%;
  height: 100%;
  padding: 1.25em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

body[data-pagetype="contact"] .sec_wrap hgroup.gh3 + ul > li > a > picture {
  width: 29%;
  aspect-ratio: 4 / 3;
  overflow: visible;
}

body[data-pagetype="contact"] .sec_wrap hgroup.gh3 + ul > li > a > span {
  display: flex;
  margin-top: 0.833em;
  font-weight: 700;
  line-height: 1;
}

body[data-pagetype="contact"] .sec_wrap > p > a {
  color: #357eec;
}

body[data-pagetype="contact"] .sec_wrap > p > a[target="_blank"]::after {
  background-image: url(../img/new_icon/icon_targetblank2.webp);
  margin-left: 2px;
}

@media screen and (max-width: 768px){
  body[data-pagetype="contact"] .sec_wrap > hgroup h2 {
    margin-bottom: 30px;
  }

  body[data-pagetype="contact"] .sec_wrap hgroup.gh3 > h3 {
    margin-block: 30px 20px;
    padding-bottom: 10px;
  }

  body[data-pagetype="contact"] .sec_wrap > hgroup.gh3 > p {
    margin-bottom: 16px;
  }

  body[data-pagetype="contact"] .sec_wrap hgroup.gh3 + ul {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  body[data-pagetype="contact"] .sec_wrap hgroup.gh3 + ul > li {
    width: 100%;
    aspect-ratio: 350 / 134;
  }

  body[data-pagetype="contact"] > main > .contact {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 540px){
  body[data-pagetype="contact"] .sec_wrap > p {
    font-size: 1.345rem;
    letter-spacing: -0.01em;
  }

  body[data-pagetype="contact"] .sec_wrap hgroup.gh3 > h3 {
    font-size: 1.8rem;
  }

  body[data-pagetype="contact"] .sec_wrap > hgroup.gh3 > p {
    font-size: 1.345rem;
    letter-spacing: -0.01em;
    text-align: justify;
  }

  body[data-pagetype="contact"] .sec_wrap hgroup.gh3 + ul > li {
    font-size: 1.6rem;
  }
}

body[data-pagetype="form"] #hd ~ section {
  padding-bottom: 200px;
}

body[data-pagetype="form"] #hd ~ section form[method="post"] .input_wrap > label {
  margin-bottom: 0.75em;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1;
}

body[data-pagetype="form"] #hd ~ section form[method="post"] .input_wrap > label > span {
  width: 3.43em;
  height: 1.5em;
  margin-inline: 0 0.5em;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #357eec;
  border-radius: 5px;
  font-size: 1.4rem;
  color: #ffffff;
  transform: translateY(0.1em);
}

body[data-pagetype="form"] #hd ~ section form[method="post"] .input_wrap > label > span.any {
  background-color: #e6e6e8;
  color: inherit;
}

body[data-pagetype="form"] #hd ~ section form[method="post"] .input_wrap > label input[name="privacy-confi"] {
  order: 1;
}

body[data-pagetype="form"] #hd ~ section form[method="post"] .input_wrap > label input[name="privacy-confi"] ~ span {
  order: 2;
}

body[data-pagetype="form"] #hd ~ section .input_wrap {
  width: 100%;
  margin-inline: 0;
}

body[data-pagetype="form"] #hd ~ section .input_wrap.note {
  margin-bottom: 2.5em;
  padding: 1.428em;
  background-color: #f6f6f9;
  font-size: 1.4rem;
}

body[data-pagetype="form"] #hd ~ section .input_wrap.note > p {
  margin-bottom: 1em;
}

body[data-pagetype="form"] #hd ~ section .input_wrap.note > p:last-of-type {
  margin-bottom: 0;
}

body[data-pagetype="form"] #hd ~ section .input_wrap input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
body[data-pagetype="form"] #hd ~ section .input_wrap textarea {
  width: 100%;
  padding: 0.7em;
  border: 1px solid #d0d9e2;
  border-radius: 5px;
  outline: none;
  transition: none;
  font-size: 1.4rem;
}

body[data-pagetype="form"] #hd ~ section .input_wrap input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]) {
  height: 4.4rem;
}

body[data-pagetype="form"] .sec_wrap > hgroup h2 {
  margin-bottom: 5rem;
}

body[data-pagetype="form"] .sec_wrap > h3,
body[data-pagetype="form"] .sec_wrap > .gh3 h3 {
  width: 13.75em;
  margin-block: 0 2.5em;
  padding-bottom: 1em;
  border-bottom: 2px solid #d0d9e2;
  white-space: nowrap;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: #357eec;
  position: relative;
}

body[data-pagetype="form"] .sec_wrap > .gh3 h3 {
  margin-bottom: 1em;
}

body[data-pagetype="form"] .sec_wrap > h3::after,
body[data-pagetype="form"] .sec_wrap > .gh3 h3::after {
  content: '';
  display: block;
  width: 1.5em;
  height: 0;
  position: absolute;
  border-bottom: 2px solid #357eec;
  bottom: -2px;
  left: 0;
  z-index: 1;
}

body[data-pagetype="form"] .sec_wrap > .gh3 h3 + p {
  margin-bottom: 2em;
  font-size: 1.6rem;
  color: inherit;
}

body[data-pagetype="form"] .sec_wrap .form_wrap label[for="privacy-confi"] {
  margin-bottom: 3em;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1;
}

body[data-pagetype="form"] .sec_wrap .form_wrap #privacy-confi {
  margin-right: 0.5em;
  transform-origin: right center;
  transform: translateY(0.15em) scale(1.25);
  font-size: 1rem;
}


body[data-pagetype="form"] .sec_wrap .confirm_wrap {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
}

body[data-pagetype="form"] .sec_wrap label[for^="btn_"],
body[data-pagetype="form"] .sec_wrap #btn_confirm.web_confirm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  aspect-ratio: 300 / 40;
  margin-inline: auto;
  font-size: 1.8rem;
  background-color: #357eec;
  border-radius: 2em;
  color: #ffffff;
  line-height: 1;
  position: relative;
}

body[data-pagetype="form"] .sec_wrap #btn_confirm.web_confirm {
  margin-top: 0;
  padding: 0;
  box-shadow: none;
  transform: translateY(100%);
}

body[data-pagetype="form"] .sec_wrap .confirm_wrap label[for^="btn_"] {
  margin-inline: 0;
}

body[data-pagetype="form"] .sec_wrap label[for^="btn_"]::after {
  content: '\2518';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  font-size: 0.8em;
  line-height: 1;
  position: absolute;
  top: calc(50% + 0.02em);
  right: 1em;
  transform: translateY(-50%) rotateZ(-45deg);
}

body[data-pagetype="form"] .sec_wrap label.web_confirm[for^="btn_"] {
  background-color: transparent;
  user-select: none;
  pointer-events: none;
}

body[data-pagetype="form"] .sec_wrap label[for="btn_back"] {
  background-color: #e6e6e8;
  color: inherit;
}

body[data-pagetype="form"] .sec_wrap label[for="btn_back"]::after {
  left: 1em;
  right: unset;
  transform: translateY(-50%) rotateZ(-225deg);
}

body[data-pagetype="form"] .sec_wrap .h4_confirm {
  margin-bottom: 0.75em;
  font-size: 2rem;
  line-height: 1;
}

body[data-pagetype="form"] .sec_wrap .h4_confirm + p {
  width: 21em;
  margin-bottom: 2.5em;
  padding-bottom: 1em;
  border-bottom: 2px solid #357eec77;
  white-space: nowrap;
  font-size: 1.8rem;
  line-height: 1;
}

body[data-pagetype="form"] p[id^="form_checkbox"] > label {
  margin-right: 1em;
}

body[data-pagetype="form"] p[id^="form_checkbox"] > label:last-of-type {
  margin-right: 0;
}

body[data-pagetype="form"] input[type="checkbox"]:not([name="privacy-confi"]){
  margin-right: 0.5em;
}

body[data-pagetype="form"] .confirm_wrap > input {
  display: none;
}

@media screen and (max-width: 768px){
  body[data-pagetype="form"] #hd ~ section {
    padding-bottom: 50px;
  }

  body[data-pagetype="form"] .sec_wrap label[for^="btn_"],
  body[data-pagetype="form"] .sec_wrap #btn_confirm.web_confirm {
    width: 250px;
    aspect-ratio: 250 / 40;
  }
}

@media screen and (max-width: 540px){
  body[data-pagetype="form"] .sec_wrap > h3,
  body[data-pagetype="form"] .sec_wrap > .gh3 h3 {
    font-size: 1.8rem;
    margin-block: 0 20px;
    padding-bottom: 8px;
  }

  body[data-pagetype="form"] .sec_wrap > .gh3 h3 + p {
    margin-block: -10px 20px;
    font-size: 1.4rem;
  }

  body[data-pagetype="form"] #hd ~ section form[method="post"] .input_wrap > label {
    font-size: 1.6rem;
  }

  body[data-pagetype="form"] #hd ~ section form[method="post"] .input_wrap > label > span {
    font-size: 1.2rem;
  }

  body[data-pagetype="form"] p[id^="form_checkbox"] > label {
    font-size: 1.6rem;
  }

  body[data-pagetype="form"] #hd ~ section .input_wrap.note {
    font-size: 1.2rem;
    line-height: 1.7;
  }

  body[data-pagetype="form"] .sec_wrap .form_wrap label[for="privacy-confi"] {
    font-size: 1.6rem;
  }

  body[data-pagetype="form"] .sec_wrap label[for^="btn_"], body[data-pagetype="form"] .sec_wrap #btn_confirm.web_confirm {
    font-size: 1.6rem;
  }

  body[data-pagetype="form"] .sec_wrap .h4_confirm + p {
    font-size: 1.6rem;
    width: fit-content;
  }

  body[data-pagetype="form"] .sec_wrap .confirm_wrap {
    margin-top: 40px;
  }

  body[data-pagetype="form"] .sec_wrap #btn_confirm.web_confirm {
    width: 8em;
    height: 3em;
  }
}

@media screen and (max-width: 375px){
  body[data-pagetype="form"] .sec_wrap > h3,
  body[data-pagetype="form"] .sec_wrap > .gh3 h3 {
    font-size: 1.536rem;
  }

  body[data-pagetype="form"] .sec_wrap > .gh3 h3 + p {
    font-size: 1.195rem;
  }

  body[data-pagetype="form"] .sec_wrap .h4_confirm + p {
    font-size: 1.365rem;
  }

  body[data-pagetype="form"] #hd ~ section form[method="post"] .input_wrap > label {
    font-size: 1.365rem;
  }

  body[data-pagetype="form"] #hd ~ section form[method="post"] .input_wrap > label > span {
    font-size: 1.024rem;
  }

  body[data-pagetype="form"] p[id^="form_checkbox"] > label {
    font-size: 1.365rem;
  }

  body[data-pagetype="form"] #hd ~ section .input_wrap.note {
    font-size: 1.024rem;
  }

  body[data-pagetype="form"] .sec_wrap .form_wrap label[for="privacy-confi"] {
    font-size: 1.365rem;
  }

  body[data-pagetype="form"] .sec_wrap label[for^="btn_"], body[data-pagetype="form"] .sec_wrap #btn_confirm.web_confirm {
    font-size: 1.536rem;
  }
}

#header #nav_sw {
  display: none;
  width: 0;
  overflow: hidden;
  visibility: hidden;
}

#btn_confirm:not(.web_confirm),
#btn_submit,
#btn_back {
  display: none;
  width: 0;
  overflow: hidden;
  visibility: hidden;
}

body[data-pagetype="form"] .g-recaptcha > div {
  margin-inline: auto;
}

/* css animation */
body[data-pagetype]:not([data-pagetype="other"]) .animation_fadein {
  opacity: 0;
}

body[data-pagetype]:not([data-pagetype="other"]) .animation_fadein[data-effected] {
  opacity: 1;
  animation: fadein 1s ease 0.2s both;
}

@media screen and (max-width: 768px){
  body[data-pagetype]:not([data-pagetype="other"]) .animation_fadein[data-effected] {
    animation-name: fadein_m;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadein_m {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}