@charset "UTF-8";


/*------------------------------------------------------------
	Foundation
------------------------------------------------------------*/

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  font-size: 10px;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
.scroll-prevent {
  position: fixed;
  width: 100%;
  height: 100%;
}
body {
  line-height: 1.6;
  letter-spacing: .5px;
  font-size: 1.7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--text-black_color);
  margin:119px 0 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

:root {
	--text-black_color: #000;
	--theme-white_color: #fff;
  --theme-main_color: #00105B;
  --theme-sub_color: #0088D2;
  --theme-sub2_color: #E3ECF8;
  --theme-sub3_color: #004D9A;
  --theme-sub4_color: #D3E5FD;
  --theme-main_grad: linear-gradient(270deg, #0088D2 0%, #004D9A 100%);
  --theme-main2_grad: linear-gradient(180deg, #0088D2 0%, #004D9A 100%);
  --theme-sub_grad:linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), linear-gradient(270deg, #0088D2 0%, #004D9A 100%);
	--font_english: "Montserrat", sans-serif;
}

.anker-tag{
  padding-top: 120px;
  margin-top: -120px;
}

@media(max-width:1000px){
  body{
    margin-top: 60px;
  }
  .anker-tag{
    padding-top: 60px;
    margin-top: -60px;
  }

}


/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
.l-header{
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  background: var(--theme-sub2_color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: .3s;
}
.l-header--white{
  background: var(--theme-white_color);
}
.l-header__menu{
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  width: calc(100% - 546px);
}
.l-header_menu-button{
  display: none;
}

.l-footer{
  background: url(../images/background/dot-footer.svg)no-repeat left -200px bottom -100px / 590px;
  background-color: var(--theme-main_color);
  color: var(--theme-white_color);
  position: relative;
}
.l-footer__inner{
  display: flex;
  justify-content: space-between;
  width: 1280px;
  max-width: 100%;
  padding: 80px 80px 50px 20px;
  box-sizing: border-box;
  margin: 0 auto;
}
.l-footer__info-box{
  text-align: left;
}
.l-footer__logo {
  margin-bottom: 40px;
}
.l-footer__logo img{
  width: 120px;
  max-width: 100%;
  margin-bottom: 20px;
  transition: .3s;
}
.l-footer__logo span{
  font-size: 2rem;
  font-weight: bold;
}
.l-footer__info-text{
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 40px;
}
.l-footer__info-text span{
  display: inline-block;
  margin-top: 10px;
}
.l-footer__link-list{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 500px;
}
.l-footer__link-list-item{
  width: calc(50% - 30px);
  margin-bottom: 30px;
}
.l-footer__link-list-item:nth-of-type(1){
  margin-right: 60px;
}
.l-footer__link-list-item:nth-of-type(4){
  margin-right: 60px;
}
.l-footer__link-list-item--wide{
  width: 100%;
}
.l-footer__link-list-title{
  display: block;
  width: 100%;
  line-height: 1.2;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 50px;
  transition: .3s;
}
.l-footer__link-list-title:before{
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--theme-white_color);
  position: absolute;
  left: 0;
  bottom: -22px;
  z-index: 1;
  opacity: .8;
  pointer-events: none;
}
.l-footer__link-list-title::after{
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--theme-sub_color);
  position: absolute;
  left: 0;
  bottom: -22px;
  z-index: 2;
  pointer-events: none;
}
.l-footer__link-child-title{
  display: inline-block;
  line-height: 1.2;
  font-size: 1.7rem;
  margin-bottom: 25px;
  transition: .3s;
}
.l-footer__link-child-list{
  margin-bottom: 30px;
}
.l-footer__link-child-list-item{
  display: block;
  padding-left: 17px;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 16px;
}
.l-footer__link-child-list-item::before{
  content:'';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--theme-white_color);
  border-radius: 10px;
  position: absolute;
  top:9px;
  left: 0;
}
.l-footer__link-child-list-item a{
  transition: .3s;
}
.l-footer__link-list-item--wide{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.l-footer__link-list-item--wide .l-footer__link-child-box{
  width: calc(50% - 40px);
}
.l-footer__link-list-item--wide .l-footer__link-child-box:nth-of-type(1){
  margin-right: 80px;
}
.l-footer__bottom{
  background: var(--theme-white_color);
  color: var(--theme-main_color);
}
.l-footer__bottom-inner{
  display: flex;
  justify-content: space-between;
  width: 1280px;
  max-width: 100%;
  padding: 16px 20px 14px;
  box-sizing: border-box;
  margin: 0 auto;
}
.l-footer__copyright-box{
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.l-footer__copyright{
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  margin-right: 20px;
}
.l-footer__p-mark{
  width: 71px;
  height: auto;
}
.l-footer__bottom-link{
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  margin-right: 30px;
}
.l-footer__bottom-link-item{
  display: inline-block;
  padding-left: 16px;
  font-size: 1.7rem;
  font-weight: bold;
  position: relative;
  margin-left: 60px;
  transition: .3s;
}
.l-footer__bottom-link-item:before{
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--theme-main_color);
  border-radius: 10px;
  position: absolute;
  top:10px;
  left: 0;
}


.l-section-inner{
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
}
.l-button{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:30px;
}
.l-button--align-left{
  justify-content: flex-start;
  font-size: 1.6rem;
}

@media(max-width:1550px){
  .l-header__menu{
    width: calc(100% - 350px);
  }
  .l-header__menu .c-button{
    width: 180px;
    padding: 18px 10px 19px;
  }
}

/*------------------------------------------------------------
	Object
------------------------------------------------------------*/

/* Component */
.c-button{
  display: inline-block;
  width: 230px;
  max-width: 100%;
  padding: 18px 18px 19px;
  border-radius: 30px;
  background: var(--theme-main_grad);
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  color: var(--theme-white_color);
  overflow: hidden;
  position: relative;
}
.c-button--wide{
  width: 280px;
}
.c-button:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--theme-sub_grad);
  position: absolute;
  top:0;
  right:0;
  z-index: 1;
  opacity: 0;
  transition: .3s;
}
.c-button span {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
.c-button span:before{
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: var(--theme-white_color);
  border:solid 2px var(--theme-white_color);
  border-radius: 20px;
  box-sizing: border-box;
  position: absolute;
  top:7px;
  right: 7px;
  transition: .3s;
}

.c-button--contact{
  padding: 18px 46px 19px;
  background: var(--theme-white_color);
  color: var(--theme-main_color);
  transition: .3s;
}
.c-button--contact-reverce{
  background: var(--theme-main_grad);
  color: var(--theme-white_color);
}
.c-button--contact span{
  display: inline-block;
  width: auto;
  padding-left: 35px;
}
.c-button--contact span:before{
  width: 25px;
  height: 100%;
  background: url(../images/icon/tel.svg)no-repeat center center / contain;
  border:none;
  border-radius: 0;
  top:0;
  left: 0;
  right: auto;
}
.c-button--contact-reverce span:before{
  background: url(../images/icon/tel-white.svg)no-repeat center center / contain;
}
.c-button .c-button__pc-none{
  display: none;
}

.c-text-link{
  display: inline-block;
  padding-right: 15px;
  background: url(../images/icon/arrow-link.svg)no-repeat center right / 6px;
  color: var(--theme-main_color);
  transition: .3s;
}
.c-text-link--prev{
  padding-right:0;
  padding-left: 15px;
  background: url(../images/icon/arrow-link--prev.svg)no-repeat center left / 6px;
}
.c-text-link:hover{
  text-decoration: underline;
  opacity: .5;
}

/* Project */
.p-logo{
  width: 516px;
  max-width: 100%;
}
.p-logo-link{
  transition: .3s;
}
.p-nav{
  display: flex;
  align-content: center;
  align-items: center;
}
.p-nav-list-box .pc-none{
  display: none;
}
.p-nav-list{
  display: flex;
  align-content: center;
  align-items: center;
}
.p-nav-list__item{
  margin-right: 60px;
}
.p-nav-list__item-link{
  display: inline-block;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--theme-main_color);
  position: relative;
}
.p-nav-list__item-link:before{
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  background: var(--theme-sub_color);
  position: absolute;
  right: 0;
  bottom: -10px;
  opacity: 0;
  transition: .3s;
  transition-delay: .3s;
}
.p-nav-list__item-link:after{
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--theme-main_color);
  position: absolute;
  left: 0;
  bottom: -10px;
  opacity: 0;
  transition: .3s;
}

.p-breadcrumb{
  max-width: 1280px;
  padding: 0 20px;
  line-height: 1;
  margin:0 auto 120px;
}
.p-breadcrumb--mbn{
  margin-bottom: 0;
}
.p-breadcrumb__list{
  display: flex;
  justify-content: flex-start;
}
.p-breadcrumb__list-item{
  display: inline-block;
  padding-right: 45px;
  font-weight: bold;
  font-size: 1.7rem;
  position: relative;
  transition: .3s;
}
.p-breadcrumb__list-item:not(:last-child)::before{
  content: '';
  display: block;
  width: 7px;
  height: 100%;
  background: url(../images/icon/text-link-arrow.svg)no-repeat center center / contain;
  position: absolute;
  top:0;
  right: 19px;
}
.p-breadcrumb__list-item a{
  transition: .3s;
}

.p-title-box{
  margin-bottom: 70px;
}
.p-title-box--center{
  text-align: center;
}
.p-title-box__title{
  line-height: 1;
  font-size: 11rem;
  background: var(--theme-main2_grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-title-box__text{
  display: inline-block;
  line-height: 1.4;
  font-size: 4rem;
  font-weight: bold;
  color: var(--theme-main_color);
  margin-top: 15px;
}

.p-nav-list__item--parent{
  position: relative;
}
.p-nav-list__item--parent .p-nav-list__item-link{
  padding-right: 25px;
  cursor: pointer;
}
.p-nav-list__item--parent .p-nav-list__item-link:before{
  content: '';
  display: block;
  width: 18px;
  height: 100%;
  background: url(../images/icon/head-arrow.svg)no-repeat center center / contain;
  position: absolute;
  top:0;
  right:0;
  transform: translateY(1px);
  opacity: 1;
}
.p-nav-list__item--parent .p-nav-list__item-link:after{
  display: none;
}
.p-nav-list__child{
  width: 1440px;
  max-width: calc(100% - 40px);
  padding: 70px;
  background: var(--theme-sub3_color);
  border-radius: 40px;
  box-sizing: border-box;
  position: fixed;
  top:119px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  transition:.3s;
  transition-delay:.3s;
  visibility: hidden;
}
.p-nav-list__child-inner{
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.p-nav-list__child-title{
  display: inline-block;
  width: 185px;
  line-height: 1;
  font-size: 3rem;
  font-weight: bold;
  color: var(--theme-white_color);
  margin-right: 55px;
}
.p-nav-list__child-list{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap:30px;
  width: calc(100% - 240px);
  margin-bottom: 80px;
}
.p-nav-list__child-list--second{
  margin-bottom: 0;
}
.p-nav-list__child-list-item{
  width:calc(50% - 15px);
  border-radius: 12px;
}
.p-nav-list__child-list-link{
  display: block;
  width: 100%;
  height: 100%;
  padding: 35px 40px;
  border-radius: 12px;
  background-color: var(--theme-sub4_color);
  overflow: hidden;
  font-size: 2rem;
  font-weight: bold;
  color: var(--theme-sub3_color);
  position: relative;
  transition: .3s;
}
.p-nav-list__child-list-item--large .p-nav-list__child-list-link{
  padding: 50px 40px;
}

.p-card-list{
  display:flex;
  flex-wrap: wrap;
  gap:33px;
  width: 1240px;
  max-width: calc(100% - 40px);
  margin: 0 auto 60px;
}
.p-card-list__item{
  width: calc(100% / 3 - 22px);
}
.p-card-list__item a{
  display: block;
  padding: 35px 30px 30px;
  background: var(--theme-white_color);
  border-radius: 10px;
  box-sizing: border-box;
  transition: .3s;
}
.p-card-list__item-date{
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--theme-main_color);
  margin-bottom: 20px;
}
.p-card-list__item-category{
  display: inline-block;
  padding:8px 30px 9px;
  background: var(--theme-main_color);
  border-radius: 20px;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--theme-white_color);
  margin-left: 15px;
}
.p-card-list__item-title{
  line-height: 1.8;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.p-card-list__item-text{
  font-weight: 500;
}

.p-card-list--pc-simple{
  display: block;
}
.p-card-list--pc-simple .p-card-list__item{
  width: 100%;
  margin-bottom: 20px;
}
.p-card-list--pc-simple .p-card-list__item a{
  padding: 40px 60px 40px 50px;
  background: url(../images/icon/arrow-link.svg)no-repeat center right 40px / 11px;
  background-color: var(--theme-white_color);
}
.p-card-list--pc-simple .p-card-list__item-date{
  font-size: 1.7rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.p-card-list--pc-simple .p-card-list__item-category{
  padding: 5px 30px 6px;
  letter-spacing: 0;
  font-size: 1.7rem;
}
.p-card-list--pc-simple .p-card-list__item-title{
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0;
}

.p-check-list{
  margin-bottom: 30px;
}
.p-check-list__item{
  display: block;
  padding: 11px 11px 13px 50px;
  box-sizing: border-box;
  border-radius: 50px;
  background: url(../images/icon/check.svg)no-repeat center left 20px / 20px;
  background-color: var(--theme-white_color);
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--theme-main_color);
  margin: 0 auto 6px;
}

.p-main-visual{
  padding:70px 0 175px;
  background: var(--theme-sub2_color);
  position: relative;
  overflow: hidden;
}
.p-main-visual--no-illust{
  padding:70px 0 115px;
}
.p-main-visual:before{
  content: '';
  display: block;
  width: calc(100% + 40px);
  height: 500px;
  max-height: 50%;
  background: url(../images/background/wave02.svg)no-repeat top center / 100% 100%;
  position: absolute;
  left: -20px;
  bottom: 0;
  z-index: 2;
}
.p-main-visual:after{
  content: '';
  display: block;
  width: 100%;
  height: 201px;
  max-height: 50%;
  background: url(../images/background/wave02-reverce.svg)no-repeat center bottom / 100% 100%;
  position: absolute;
  bottom:0;
  left: 0;
  z-index: 3;
}
.p-main-visual .l-section-inner{
  max-width: calc(100% - 40px);
  padding-right: 280px;
  position: relative;
  z-index: 5;
}
.p-main-visual__dot:before{
  content: '';
  display: block;
  width: 100%;
  height: 55%;
  background: url(../images/background/dot02.png)no-repeat top center / cover;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.p-main-visual--no-illust .p-main-visual__dot:before{
  height: 75%;
}
.p-main-visual__image{
  display: block;
  width: 1240px;
  max-width:100%;
  height: calc(100% - 60px);
  text-align: right;
  position: absolute;
  top:60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 5;
}
.p-main-visual__image-item{
  width: 100%;
  height: 100%;
  text-align: right;
}
.p-main-visual__image-item img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.p-main-visual__title-batch{
  display: inline-block;
  padding: 7px 15px 8px;
  background: var(--theme-white_color);
  border-radius: 6px;
  line-height: 1;
  font-weight: bold;
  color: var(--theme-sub_color);
  margin-bottom: 30px;
}
.p-main-visual__title-catch{
  display: block;
  line-height: 1;
  font-size: 8rem;
  font-weight: bold;
  color: var(--theme-sub_color);
  transform:translateX(-15px);
  margin-bottom: 30px;
}
.p-main-visual__title-en{
  display: block;
  line-height: 1;
  font-family: var(--font_english);
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: .4rem;
}
.p-main-visual__title-en:before{
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  background-color: var(--theme-sub_color);
  border-radius: 10px;
  left: -15px;
  top: 2px;
}
.p-main-visual__title-text{
  font-size: 3rem;
  font-weight: bold;
}

.p-service-chart{
  padding: 95px 0 120px;
}
.p-service-chart .l-section-inner{
  max-width:calc(100% - 40px);
}
.p-service-chart__title{
  display: block;
  padding-left: 45px;
  line-height: 1.2;
  font-size: 6rem;
  font-weight: bold;
  color: var(--theme-main_color);
  position: relative;
  margin-bottom: 60px;
}
.p-service-chart__title:before{
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--theme-main_grad);
  position: absolute;
  top:27px;
  left: 0;
}
.p-service-chart__list{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.p-service-chart__list-item{
  display: flex;
  justify-content:flex-start;
  align-content: flex-start;
  align-items: flex-start;
  width: 50%;
  padding: 0 30px 40px 0;
  border-bottom: solid 2px var(--theme-sub2_color);
  box-sizing: border-box;
  margin-bottom: 40px;
}
.p-service-chart__list-item:nth-of-type(2n){
  padding-left: 30px;
  padding-right: 0;
}
.p-service-chart__list-item:last-of-type{
  border-bottom: none;
  margin-bottom: 0;
}
.p-service-chart__list-item-image{
  width: 180px;
  margin-right: 30px;
}
.p-service-chart__list-item-box{
  width: calc(100% - 210px);
}
.p-service-chart__list-item-title{
  line-height: 1.4;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--theme-sub_color);
  margin-bottom: 20px;
}
.p-service-chart__list-item-text{
  line-height:2;
  font-weight: 500;
}
.p-service-chart__list-item-text span{
  display: block;
  font-size: 1.2rem;
  margin-top: 10px;
}
.p-service-chart__list-item-text a{
  color: var(--theme-sub_color);
  text-decoration: underline;
  transition: .1s;
}
.p-service-chart__attention{
  display: block;
  font-size: 2rem;
  font-weight: 500;
}
.p-text-section{
  padding: 0 0 120px;
}
.p-text-section .l-section-inner{
  max-width: calc(100% - 40px);
}
.p-text-section__title{
  display: block;
  padding-top: 30px;
  font-size: 5rem;
  font-weight: bold;
  color: var(--theme-main_color);
  position: relative;
  margin-bottom: 40px;
}
.p-text-section__title:before{
  content:'';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--theme-main_grad);
  position: absolute;
  top:0;
  left: 0;
}
.p-text-section__title br{
  display: none;
}
.p-text-section__text{
  line-height: 2;
  font-size: 2rem;
  font-weight: 500;
}
.p-text-section--image .l-section-inner{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.p-text-section__image{
  width: 237px;
  margin-right: 43px;
}
.p-text-section__box{
  width: calc(100% - 280px);
}

.p-case-chart{
  position: relative;
}
.p-case-chart::before{
  content: '';
  display: block;
  width: 50%;
  height: 100%;
  background: #F4F4F4;
  position: absolute;
  top:0;
  left: 0;
  z-index: 1;
}
.p-case-chart-inner{
  width: 1440px;
  max-width: calc(100% - 40px);
  padding: 120px 100px 95px;
  background: #F4F4F4;
  border-radius: 0 40px 40px 0;
  position: relative;
  margin: 0 auto;
  z-index: 2;
}
.p-case-chart-inner .pc-none{
  display: none;
}
.p-case-chart-inner::before{
  content:'';
  display: block;
  width: 220px;
  height: 245px;
  background: url(../../images/relationship/case-image-top.svg)no-repeat top left / contain;
  position: absolute;
  top:-70px;
  right: 78px;
}
.p-case-chart-inner::after{
  content:'';
  display: block;
  width: 209px;
  height: 223px;
  background: url(../../images/relationship/case-image-bottom.svg)no-repeat right bottom / contain;
  position: absolute;
  left: -165px;
  bottom: -57px;
}
.p-case-chart__title{
  display: block;
  padding-left: 20px;
  line-height: 1.4;
  font-size: 4.2rem;
  font-weight: bold;
  color: var(--theme-main_color);
  position: relative;
  margin-bottom: 60px;
}
.p-case-chart__title::before{
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border:solid 2px var(--theme-main_color);
  border-radius: 50px;
  box-sizing: border-box;
  position: absolute;
  top:22px;
  left: 0;
}
.p-case-chart__list-item{
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.p-case-chart__list-item-image{
  width: 390px;
  padding: 14px 60px;
  box-sizing: border-box;
  border-radius: 10px;
  background: var(--theme-white_color);
  text-align: center;
  position: relative;
  margin-right: 35px;
}
.p-case-chart__list-item-box{
  width: calc(100% - 425px);
}
.p-case-chart__list-item-title{
  font-size: 2.6rem;
  letter-spacing: -.5px;
  font-weight: bold;
  color: var(--theme-sub_color);
  margin-bottom: 30px;
}
.p-case-chart__list-item-title--worries{
  min-height: 50px;
  padding-left: 63px;
  background: url(../images/icon/worries.svg)no-repeat top left / 50px;
  font-size: 3rem;
  color: #5B6879;
  margin-bottom: 15px;
}
.p-case-chart__list-item-title--lamp{
  min-height: 50px;
  padding-left: 63px;
  background: url(../images/icon/lamp.svg)no-repeat top left / 50px;
  font-size: 3rem;
  color:var(--theme-sub_color);
  margin-bottom: 15px;
}

.p-case-chart__list-item--arrow{
  margin-bottom: 59px;
  z-index: 2;
}
.p-case-chart__list-item--arrow .p-case-chart__list-item-image{
  z-index: 2;
}
.p-case-chart__list-item--arrow .p-case-chart__list-item-image:before{
  content: '';
  display: block;
  width: 80px;
  height: 79px;
  background: url(../images/icon/down-arrow.svg)no-repeat center center / contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -69px;
  margin: 0 auto;
}

.p-service-links{
  padding-bottom: 20px;
  background: var(--theme-sub2_color);
  overflow-x: clip;
  margin-top: 180px;
}
.p-service-links .p-title-box{
  position: relative;
  margin-bottom: 80px;
  z-index: 1;
}
.p-service-links .p-title-box::before{
  content:'';
  display: block;
  width: 1352px;
  height: 232px;
  background: url(../images/service-text.svg)no-repeat center center / contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -150px;
  margin: 0 auto;
  opacity: .5;
  transform: translateX(-18px);
}
.p-service-links .p-title-box__title{
  transform: translateY(-50%);
}
.p-service-links .l-section-inner{
  max-width: calc(100% - 40px);
}

.p-service-links__box{
  width: 100%;
  position: relative;
  z-index: 2;
}
.p-service-links__box-inner{
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.p-service-links__title{
  display: inline-block;
  width: 185px;
  line-height: 1;
  font-size: 3rem;
  font-weight: bold;
  color: var(--theme-main_color);
  margin-right: 55px;
}
.p-service-links__list{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap:30px;
  width: calc(100% - 240px);
  margin-bottom: 80px;
}
.p-service-links__list-item{
  width:calc(50% - 15px);
  border-radius: 12px;
}
.p-service-links__list-item-link{
  display: block;
  width: 100%;
  height: 100%;
  padding: 35px 30px;
  border-radius: 12px;
  background-color: var(--theme-white_color);
  overflow: hidden;
  letter-spacing: -.5px;
  font-size: 2rem;
  font-weight: bold;
  color: var(--theme-sub3_color);
  position: relative;
  transition: .3s;
}
.p-service-links__list-item--large .p-service-links__list-item-link{
  padding: 50px 30px;
}

.p-service-links__list-item-link--image01{
  background: url(../images/head-image01.svg)no-repeat center right -5% / contain;
}
.p-service-links__list-item-link--image02{
  background: url(../images/head-image02.svg)no-repeat center right -5% / contain;
}
.p-service-links__list-item-link--image03{
  background: url(../images/head-image03.svg)no-repeat center right / contain;
}
.p-service-links__list-item-link--image04{
  background: url(../images/head-image04.svg)no-repeat center right / contain;
}
.p-service-links__list-item-link--image05{
  background: url(../images/head-image05.svg)no-repeat center right / contain;
}
.p-service-links__list-item-link--image06{
  background: url(../images/head-image06.svg)no-repeat center right / contain;
}
.p-service-links__list-item-link{
  background-color: var(--theme-white_color);
}

.p-outline{
  padding: 60px 0 0;
}
.p-outline__list{
  display: flex;
  justify-content: center;
  width: 900px;
  max-width: calc(100% - 40px);
  padding: 13px;
  box-sizing: border-box;
  background: var(--theme-sub2_color);
  border-radius: 10px;
  margin: 0 auto;
}
.p-outline__list-item{
  width: 50%;
  text-align: center;
  position: relative;
}
.p-outline__list-item:first-child:after{
  content: '';
  display: block;
  width: 1px;
  height:100%;
  background: #AEAEAE;
  position: absolute;
  top:0;
  right: 0;
}
.p-outline__list-item a{
  display: inline-block;
  padding-left: 32px;
  line-height: 1.7;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  transition: .3s;
}
.p-outline__list-item a::before{
  content: '';
  display: block;
  width: 12px;
  height: 100%;
  background: url(../images/icon/anker-arrow.svg)no-repeat center center / contain;
  position: absolute;
  top:0;
  left: 0;
  transition: .3s;
}

.p-service-outline {
  margin: 120px auto;
}
.p-service-outline .l-section-inner{
  width: 100%;
}
.p-service-outline__title{
  display: block;
  width: 1240px;
  max-width:calc(100% - 40px);
  padding-left: 45px;
  line-height: 1.2;
  font-size: 6rem;
  font-weight: bold;
  color: var(--theme-main_color);
  position: relative;
  margin:0 auto 30px;
}
.p-service-outline__title:before{
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--theme-main_grad);
  position: absolute;
  top:27px;
  left: 0;
}
.p-service-outline__text{
  width: 1240px;
  max-width:calc(100% - 40px);
  font-size: 2.4rem;
  font-weight:500;
  margin: 0 auto 40px;
}
.p-service-outline__box{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 1440px;
  max-width: calc(100% - 40px);
  padding: 100px;
  gap:25px 21px;
  border-radius: 32px;
  box-sizing: border-box;
  background: var(--theme-sub2_color);
  margin: 0 auto;
}
.p-service-outline__item{
  width: calc(100% / 3 - 14px);
  padding: 40px;
  box-sizing: border-box;
  border-radius: 20px;
  background: var(--theme-white_color);
  position: relative;
}
.p-service-outline__item:before{
  content: '';
  display: block;
  width: 103px;
  height: 114px;
  background: url(../../images/secretariat/agency-image02.svg) no-repeat top left / contain;
  position: absolute;
  right: 19px;
  bottom: -65px;
}
.p-service-outline__item--medium{
  width: calc(50% - 11px);
}
.p-service-outline__item--wide{
  width: 100%;
}
.p-service-outline__item--wide:before{
  width: 216px;
  height: 239px;
  background: url(../../images/secretariat/agency-image01.svg) no-repeat top left / contain;
  top: -151px;
  right: 39px;
  bottom: auto;
}
.p-service-outline__item-title{
  display: block;
  width: 100%;
  padding-bottom: 20px;
  line-height: 1.4;
  font-size: 3.4rem;
  font-weight: bold;
  color: #014E9B;
  position: relative;
  margin: 0 auto 30px;
}
.p-service-outline__item-title:before{
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--theme-sub_color);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.p-service-outline__item-title:after{
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--theme-sub2_color);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.p-service-outline__list{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap:20px;
}
.p-service-outline__list-item{
  width: 100%;
  padding:0 0 0 35px;
  box-sizing: border-box;
  background: url(../images/icon/check02.svg)no-repeat top 5px left / 25px;
  position: relative;
}
.p-service-outline__item--wide .p-service-outline__list-item{
  width: calc(50% - 10px);
}
.p-service-outline__list-item-title{
  font-size: 2rem;
  font-weight: 500;
}
.p-service-outline__sp-slide-attention{
  display: none;
}

.p-step__list{
  max-width: calc(100% - 40px);
  margin:0 auto 60px;
}
.p-step__list-item{
  display: flex;
  padding: 35px 50px 35px 0;
  border-radius: 20px;
  box-sizing: border-box;
  background: var(--theme-sub2_color);
  position: relative;
  margin:0 auto 46px;
}
.p-step__list-item:not(:last-child):before{
  content: '';
  display: block;
  width: 78px;
  height: 26px;
  background: url(../images/icon/triangle.svg)no-repeat top center / contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  margin:0 auto;
}
.p-step__list-num{
  display: block;
  padding: 39px 100px;
  border-right: solid 1px #CCD3EB;
  text-align: center;
  line-height: 1;
  font-size: 4.2rem;
  font-weight: bold;
  color: var(--theme-main_color);
}
.p-step__list-num span{
  display: block;
  line-height: 1;
  font-size: 1.7rem;
}
.p-step__list-content{
  display: flex;
  align-items: center;
  padding-left: 60px;
}
.p-step__list-content-image{
  display: flex;
  align-items: flex-end;
  width: 130px;
}
.p-step__list-box{
  width: calc(100% - 130px);
  padding-left: 60px;
}
.p-step__list-box-title{
  font-size: 2.4rem;
  font-weight: bold;
  color:var(--theme-sub_color);
  margin-bottom: 20px;
}
.p-step__list-box-text{
  line-height: 2.2;
}
.p-img-list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: calc(100% - 40px);
  margin:0 auto 45px;
}
.p-img-list__item{
  width: 50%;
  text-align: center;
  margin-bottom: 75px;
}
.p-img-list__item-image{
    width:481px;
    max-width: 100%;
    height: 414px;
    object-fit: contain;
    position: relative;
    margin: 0 auto 30px;
}
.p-img-list__item-title{
  font-size: 3.2rem;
  font-weight: bold;
  color:var(--theme-sub_color);
  margin-bottom: 15px;
}
.p-img-list__item-text{
  width: 400px;
  max-width: 100%;
  text-align: left;
  margin: 0 auto;
}


/* Utility */
.u-bg-blue{
  background: var(--theme-sub2_color);
}
.u-text-english{
  font-family: var(--font_english);
  font-optical-sizing: auto;
  font-style: normal;
}

@media(min-width:1001px){
  .l-header--scroll{
    background: rgba(255, 255, 255, 0.8);
  }
  .l-footer__link-list-title:hover{
    color: var(--theme-sub_color);
  }
  .l-footer__link-child-list-item a:hover{
    color: var(--theme-sub_color);
  }
  a.l-footer__link-child-title:hover{
    color: var(--theme-sub_color);
  }
  .l-footer__bottom-link-item:hover{
    color: var(--theme-sub_color);
  }
 
  /* Project */
  .p-breadcrumb__list-item a:hover{
    color: var(--theme-sub_color);
  }
  .p-nav-list__child-list-link--pattern01{
    background: url(../images/head-image01.svg)no-repeat center right / contain;
  }
  .p-nav-list__child-list-link--pattern02{
    background: url(../images/head-image02.svg)no-repeat center right / contain;
  }
  .p-nav-list__child-list-link--pattern03{
    background: url(../images/head-image03.svg)no-repeat center right / contain;
  }
  .p-nav-list__child-list-link--pattern04{
    background: url(../images/head-image04.svg)no-repeat center right / contain;
  }
  .p-nav-list__child-list-link--pattern05{
    background: url(../images/head-image05.svg)no-repeat center right / contain;
  }
  .p-nav-list__child-list-link--pattern06{
    background: url(../images/head-image06.svg)no-repeat center right / contain;
  }
  .p-nav-list__child-list-link{
    background-color:var(--theme-sub4_color);
  }
  .p-nav-list__item-link:hover:before{
    opacity: 1;
  }
  .p-nav-list__item-link:hover:after{
    width: calc(100% - 6px);
    opacity: 1;
  }
  .p-nav-list__item--parent:hover .p-nav-list__child{
    opacity: 1;
    visibility: visible;
  }
  .p-nav-list__child-list-item a:hover{
    opacity: .6;
  }
  .p-card-list__item a:hover{
    background: var(--theme-sub_color);
    color: var(--theme-white_color);
  }
  .p-card-list--pc-simple .p-card-list__item a:hover{
    background: url(../images/icon/arrow-link--white.svg)no-repeat center right 40px / 11px;
    background-color: var(--theme-sub_color);
  }
  .p-service-chart__list-item-text a:hover{
    opacity: .6;
  }
  .p-service-links__list-item-link:hover{
    background-color: var(--theme-sub_color);
    color:var(--theme-white_color)
  }
}

@media(min-width:769px){

  .l-footer__logo img:hover{
    opacity: .6;
  }

  /* Component */
  .c-button:hover:before{
    opacity: 1;
  }
  .c-button:hover span:before{
    width: 12px;
    height: 12px;
    background:none;
    border:solid 2px var(--theme-white_color);
    top:6px;
    right: 6px;
  }
  .c-button--contact:hover {
    color: var(--theme-white_color);
  }
  .c-button--contact:hover span:before{
    width: 25px;
    height: 100%;
    background:url(../images/icon/tel-white.svg)no-repeat center center / contain;
    border:none;
    top:0;
    left: 0;
    right:auto;
  }

  .p-logo-link:hover{
    opacity: .6;
  }
  .p-outline__list-item a:hover{
    color: var(--theme-sub_color);
  }
  .p-outline__list-item a:hover::before{
    transform: translateY(5px);
  }
}

@media(max-width:1550px){
  .p-logo{
    width: 350px;
  }
  .p-nav-list__item{
    margin-right: 30px;
  }
}

@media(max-width:1400px){
  .p-nav-list__child-list-link{
    padding:35px 20px;
    font-size: 1.8rem;
  }
  .p-nav-list__child-list-item--large .p-nav-list__child-list-link{
    padding:30px 20px;
  }
}

@media(max-width:1370px){
  .p-service-outline__item-title{
    font-size: 2.8rem;
  }
}

@media(max-width:1260px){
  .p-service-outline__box{
    padding: 100px 40px;
  }
  .p-service-outline__item-title{
    font-size: 2.8rem;
  }
  .p-service-outline__list-item-title{
    font-size:1.8rem;
  }
  .p-service-outline__list-item-text{
    font-weight: 400;
  }
}

@media(max-width:1250px){
  /* Project */
  .p-main-visual .l-section-inner{
    max-width: calc(100% - 40px);
    padding-right:25vw;
  }
  .p-main-visual__image{
    width: 25vw;
    top: 60px;
    left: auto;
    right: 20px;
  }
  .p-main-visual__title-catch{
    font-size: 7rem;
  }
  .p-main-visual__title-text{
    font-size: 2.5rem;
  }
  .p-case-chart-inner{
    padding: 60px 40px 95px;
  }
  .p-case-chart-inner::before{
    width: 150px;
    right: 20px;
  }
  .p-case-chart-inner::after{
    width: 150px;
    left: 10px;
  }

  .p-service-links .p-title-box::before{
    width:calc(100% + 36px);
  }
  .p-service-links__list-item--large .p-service-links__list-item-link{
    padding: 40px 30px;
  }
}

@media (max-width: 1200px) {
  .l-header{
    padding: 30px 20px;
  }
  .l-header__menu{
    width: calc(100% - 250px);
  }

  /* Project */
  .p-logo{
    width: 250px;
  }
  .p-nav-list__item {
      margin-right: 20px;
  }
  .p-nav-list__item-link{
    font-size: 1.7rem;
  }
  .p-nav-list__child-title{
    width: 160px;
    font-size: 2.6rem;
    margin-top: 10px;
  }
  .p-nav-list__child-list{
    width: calc(100% - 215px);
  }
  .p-nav-list__child-list-link{
    padding:20px 20px;
    font-size: 1.7rem;
  }
  .p-nav-list__child-list-item--large .p-nav-list__child-list-link {
    padding:20px 20px;
  }
  
  .p-service-links__box-inner{
    display: block;
  }
  .p-service-links__title{
    width: 100%;
    margin-bottom: 20px;
  }
  .p-service-links__list{
    width: 100%;
  }
  .p-service-links__list-item--large .p-service-links__list-item-link{
    padding: 50px 30px;
  }
}


@media(max-width:1150px){
    /* Project */
    .p-service-chart__title{
      font-size: 4rem;
    }
    .p-service-chart__title:before{
      top:14px;
    }
    .p-service-chart__list-item-image {
      width: 100px;
      margin-right: 20px;
    }
    .p-service-chart__list-item-box {
      width: calc(100% - 120px);
    }
    .p-service-outline__title{
      font-size: 4rem;
    }
    .p-service-outline__title:before{
      top:14px;
    }
    .p-text-section__image{
      width: 180px;
      margin-right: 20px;
    }
    .p-text-section__box{
      width: calc(100% - 200px);
    }
    .p-text-section__title{
      font-size: 4.5rem;
    }
}

@media(max-width:1120px){
  /* Project */
  .p-main-visual__title-catch{
    font-size: 6rem;
  }
  .p-main-visual__title-text{
    font-size: 2rem;
  }
}

@media(max-width:1100px){
  .p-check-list__item{
    font-size: 1.7rem;
  }
  .p-card-list{
    display: block;
    margin-bottom: 50px;
  }
  .p-card-list__item{
    width: 100%;
    margin-bottom: 15px;
  }
  .p-card-list__item a{
    display: block;
    padding: 17px 15px 20px;
    background: var(--theme-white_color);
    border-radius: 10px;
    box-sizing: border-box;
    transition: .3s;
  }
  .p-card-list__item-date{
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .p-card-list__item-category{
    display: inline-block;
    padding:3px 10px 4px;
    font-size: 1.3rem;
    margin-left: 10px;
  }
  .p-card-list__item-title{
    line-height: 1.6;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .p-card-list__item-text{
    font-size: 1.4rem;
  }

  .p-card-list--pc-simple .p-card-list__item a{
    padding: 17px 40px 20px 15px;
    background: url(../images/icon/arrow-link.svg)no-repeat center right 10px / 8px;
    background-color: var(--theme-white_color);
  }
  .p-card-list--pc-simple .p-card-list__item-date{
    flex-wrap: wrap;
    font-size: 1.4rem;
    margin-bottom: 13px;
  }
  .p-card-list--pc-simple .p-card-list__item-category{
    padding: 3px 10px 4px;
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 2px;
    margin-bottom: 2px;
  }
  .p-card-list--pc-simple .p-card-list__item-title{
    font-size: 1.7rem;
  }


  .p-nav-list__child-list-link{
    background: var(--theme-sub4_color);
  }
  .p-nav-list__child-list-item--large .p-nav-list__child-list-link {
    background: var(--theme-sub4_color);
  }

  .p-service-outline__box{
    padding: 60px 20px;
  }
  .p-service-outline__item{
    padding: 20px;
  }
  .p-service-outline__item-title{
    font-size: 2.4rem;
  }
  .p-service-outline__item--wide:before{
    width: 170px;
    height: 170px;
    top: -130px;
    right: 39px;
  }
  .p-step__list-num{
    padding: 39px 60px;
  }
}

@media(max-width:1000px){
  .c-button .c-button__pc-none{
    display:block;
  }
  .c-button .c-button__sp-none{
    display: none;
  }
  
  .l-header{
    padding: 13px 13px 13px 10px;
  }
  .l-header__menu{
    width: calc(100% - 210px);
  }
  .l-header_menu-button{
    display: block;
    width: 38px;
    height: 28px;
    position: relative;
  }
  .l-header_menu-button div{
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background: var(--theme-sub3_color);
    position: absolute;
    top:0;
    left: 0;
    transition: .3s;
  }
  .l-header_menu-button div:nth-child(2){
    width: 32px;
    top:12px;
  }
  .l-header_menu-button div:nth-child(3){
    width: 25px;
    top:24px;
  }
  .open .l-header_menu-button div:nth-child(1){
    left: 12px;
    transform-origin: top left;
    transform: rotate(45deg);
  }
  .open .l-header_menu-button div:nth-child(2){
    transform: translateX(20px);
    opacity: 0;
  }
  .open .l-header_menu-button div:nth-child(3){
    width: 38px;
    top:26px;
    left: 12px;
    transform-origin: bottom left;
    transform: rotate(-45deg);
  }
  .l-header__menu .c-button--top{
    width: auto;
    padding: 10px 18px;
    font-size: 1.2rem;
    margin-right: 11px;
    transition: .3s;
  }
  .open .l-header__menu .c-button--top{
    opacity: 0;
    visibility: hidden;
  }
  .l-header__menu .c-button span:before{
    display: none;
  }
  .p-logo{
    width: 210px;
  }
  .p-nav-list-box{
    display: block;
    width: 100%;
    height:calc(100vh - 61px);
    height:calc(100dvh - 61px);
    padding: 10px 0 0;
    box-sizing: border-box;
    background: var(--theme-white_color);
    position: fixed;
    top:61px;
    left: 0;
    overflow-y: scroll;
    transform:translateX(100%);
    transition: .3s;
  }
  .p-nav-list-box--open{
    background: url(../images/background/menu-bg.svg)no-repeat center bottom / 100% calc(100% - 765px);
    background-color:var(--theme-white_color);
    transform:translateX(0)
  }
  .p-nav-list-box .pc-none{
    display: block;
  }
  .p-nav-list{
    display: block;
    width: 700px;
    max-width: calc(100% - 30px);
    padding: 15px 20px;
    box-sizing: border-box;
    border-radius: 8px;
    background:url(../images/background/dot03-sp.png)no-repeat right 0% bottom 90% / 140%;
    background-color: var(--theme-sub4_color);
    background-blend-mode:color-burn;
    margin: 0 auto 25px;
  }
  .p-nav-list__item{
    margin-right: 0;
    margin-bottom: 15px;
  }
  .p-nav-list__item:last-of-type{
    margin-bottom: 10px;
  }
  .p-nav-list__item-link{
    display: block;
    width: 100%;
    line-height: 1.6;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .p-nav-list__item--parent .p-nav-list__item-link:before {
    width: 22px;
    height: 4px;
    border-radius: 10px;
    background: var(--theme-main_color);
    top: 14px;
    transform: translateY(0);
  }
  .p-nav-list__item--parent .p-nav-list__item-link:after {
    content: '';
    display: block;
    width: 22px;
    height: 4px;
    border-radius: 10px;
    background: var(--theme-main_color);
    position: absolute;
    top: 14px;
    left: auto;
    right: 0;
    bottom: auto;
    transform: rotate(-90deg);
    opacity: 1;
  }
  .p-nav-list__item--parent .p-nav-list__item-link.on:after {
    transform: rotate(0);
  }
  .p-nav-list__child{
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: none;
    position: relative;
    visibility:initial;
    opacity: 1;
    top:0;
    transition: 0s;
    transition-delay: 0s;
    margin:0;
  }
  .p-nav-list__child-inner{
    display: block;
  }
  .p-nav-list__child-title{
    display: block;
    width: 100%;
    font-size: 1.7rem;
    color: var(--theme-main_color);
    margin: 0 0 10px;
  }
  .p-nav-list__child-list{
    display: block;
    width: 100%;
    margin:0 0 20px;
  }
  .p-nav-list__child-list--second{
    margin-bottom: 0;
  }
  .p-nav-list__child-list-item{
    width: 100%;
  }
  .p-nav-list__child-list-item .p-nav-list__child-list-link{
    padding: 0 0 0 13px;
    background: none;
    font-size: 1.4rem;
    color: var(--text-black_color);
    position: relative;
    margin-bottom: 10px;
  }
  .p-nav-list__child-list-item .p-nav-list__child-list-link:before{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background:#438BE3;
    position: absolute;
    top:9px;
    left: 0;
  }
  .p-nav-list-box .l-button{
    width: 700px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
  }
  .p-nav-list-box .c-button--contact-reverce {
    width: 100%;
    margin-bottom: 25px;
  }
  .p-nav-list-box .c-button--contact-reverce span:before{
    display: block;
  }
  .p-nav-list-box__sp-box{
    padding: 25px 15px 20px;
    box-sizing: border-box;
    background: url(../images/background/dot-footer.svg)no-repeat left -40vw bottom -30vw / 100%;
    background-color: var(--theme-main_color);
    color: var(--theme-white_color);
    position: relative;
    z-index: 2;
  }
  .p-nav-list-box__sp-list{
    width: 700px;
    max-width: 100%;
    margin:0 auto 45px;
  }
  .p-nav-list-box__sp-list-item{
    display: block;
    width: 100%;
    padding-left: 13px;
    font-size: 1.4rem;
    position: relative;
    margin-bottom: 12px;
  }
  .p-nav-list-box__sp-list-item:before{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background:var(--theme-white_color);
    position: absolute;
    top:9px;
    left: 0;
  }
  .p-nav-list-box__sp-info{
    display: block;
    width: 700px;
    max-width: 100%;
    margin:0 auto;
  }
  .p-nav-list-box__sp-info-logo a{
    display: block;
    width: 95px;
    margin-bottom: 12px;
  }
  .p-nav-list-box__sp-info-logo span{
    display: inline-block;
    font-size: 1.9rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .p-nav-list-box__sp-info-text{
    line-height: 1.8;
    font-size: 1.4rem;
  }
  .p-nav-list-box__sp-info-text span{
    display: inline-block;
    margin-top: 5px;
  }

  .p-main-visual{
    padding: 40px 0 0;
  }
  .p-main-visual--no-illust{
    padding: 40px 0 20px;
  }

  .p-main-visual:before{
    height: 15vw;
    max-height: 20%;
    background: url(../images/background/wave02-sp.svg) no-repeat center bottom / 100% 100%;
  }
  .p-main-visual:after {
    height: 15vw;
    max-height: 20%;
    background: url(../images/background/wave02-reverce-sp.svg) no-repeat center bottom / 100% 100%;
    bottom: -1px;
  }
  .p-main-visual__dot:before{
    width: 100%;
    height: 145vw;
    max-height: 500px;
    background: url(../images/background/dot02-sp.png) no-repeat top bottom / 100%;
    bottom:-80%;
  }
  .p-main-visual--no-illust .p-main-visual__dot:before{
    height: 85vw;
    bottom: -120%;
  }
  .p-main-visual .l-section-inner{
    max-width:calc(100% - 40px);
    padding: 0;
    margin: 0 auto;
  }
  .p-main-visual__title-catch{
    font-size: 7.8vw;
    margin-bottom: 20px;
    transform: translateX(-5px);
  }
  .p-main-visual__title-batch {
    padding: 3px 10px 4px;
    margin-bottom: 20px;
  }
  .p-main-visual__title-en{
    font-size: 3vw;
    margin-bottom: 10px;
  }
  .p-main-visual__title-en:before{
    width: 8px;
    height: 8px;
    left: -12px;
    top: .5vw;
  }
  .p-main-visual__title-text{
    font-size: 4vw;
    font-weight: 500;
  }
  .p-main-visual__image{
    width: 50vw;
    height: 200px;
    position: relative;
    top: 0;
    right: -50px;
  }
  .p-main-visual__image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .p-service-chart{
    padding: 60px 0 60px;
  }
  .p-service-chart__title {
    padding-left: 25px;
    font-size: 3rem;
    margin-bottom: 40px;
  }
  .p-service-chart__list{
    margin-bottom: 20px;
  }
  .p-service-chart__list-item{
    width: 100%;
    padding: 0 0 20px;
    margin-bottom: 20px;
  }
  .p-service-chart__list-item:nth-of-type(2n){
    padding-left: 0;
  }
  .p-service-chart__title:before{
    width: 15px;
    height: 15px;
    top:12px;
  }
  .p-service-chart__list-item-image {
    width: 80px;
    margin-right: 20px;
  }
  .p-service-chart__list-item-box {
    width: calc(100% - 100px);
  }
  .p-service-chart__list-item-title{
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .p-service-chart__list-item-text{
    line-height: 1.8;
    font-size: 1.5rem;
    font-weight: 500;
  }
  .p-service-chart__list-item-text span{
    font-size: 1rem;
  }
  .p-service-chart__attention{
    font-size: 1.4rem;
  }

  .p-text-section__title{
    padding-top: 20px;
    line-height: 1.4;
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
  .p-text-section--image .p-text-section__title{
    padding-left: 60px;
  }
  .p-text-section--image .p-text-section__title:before{
    left: 60px;
  }
  .p-text-section__text{
    font-size: 1.7rem;
  }
  .p-text-section__image{
    width: 70px;
    height: 70px;
    position: absolute;
    top:-5px;
    left: -20px;
  }
  .p-text-section__box{
    width:100%;
  }

  .p-case-chart{
    overflow-x: clip;
  }
  .p-case-chart-inner{
    padding: 40px 20px;
  }
  .p-case-chart-inner .pc-none{
    display: block;
  }
  .p-case-chart-inner::before{
    width: 100px;
    right: -30px;
  }
  .p-case-chart-inner::after{
    width: 100px;
    left: 10px;
    bottom: -70px;
  }
  .p-case-chart__title{
    font-size: 3rem;
    margin-bottom: 40px;
  }
  .p-case-chart__title::before {
    top:14px;
  }
  .p-service-links__title{
    font-size: 2.5rem;
  }
  .p-case-chart__list{
    max-width: 700px;
    margin: 0 auto;
  }
  .p-case-chart__list-item{
    display: block;
    margin-bottom: 40px;
  }
  .p-case-chart__list-item-image{
    width: 100%;
    margin: 0 auto 15px;
  }
  .p-case-chart__list-item-box{
    width: 100%;
  }
  .p-case-chart__list-item-title{
    line-height: 1.8;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .p-case-chart__list-item-title--worries{
    min-height: 36px;
    padding-left: 46px;
    background-size: 36px;
    margin-bottom: 10px;
  }
  .p-case-chart__list-item-title--lamp{
    min-height: 36px;
    padding-left: 46px;
    background-size: 36px;
    margin-bottom: 10px;
  }
  .p-case-chart__list-item .c-button--wide{
    width: 100%;
  }

  .p-case-chart__list-item--arrow{
    position: relative;
    margin-bottom:105px;
  }
  .p-case-chart__list-item--arrow:before{
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background: url(../images/icon/down-arrow.svg)no-repeat center center / contain;
    position: absolute;
    left: 0;
    right: 0;
    bottom:-85px;
    margin: 0 auto;
  }
  .p-case-chart__list-item--arrow .p-case-chart__list-item-image:before{
    display: none;
  }

  .p-service-links{
    padding-bottom: 0;
  }
  .p-service-links .p-title-box{
    margin-bottom: 40px;
  }
  .p-service-links .p-title-box::before{
    bottom: -120px;
  }
  .p-service-links__list{
    gap:20px;
    margin-bottom: 60px;
  }
  .p-service-links__list-item,
  .p-service-links__list-item--large{
    width: 100%;
  }
  .p-service-links__list-item-link,
  .p-service-links__list-item--large .p-service-links__list-item-link{
    padding: 30px 20px;
    font-size: 1.7rem;
  }

  .p-outline{
    padding: 40px 0 0;
  }
  .p-outline__list{
    flex-wrap: wrap;
    width: 600px;
    padding:0;
    background: none;
  }
  .p-outline__list-item{
    width: 100%;
    border-radius: 10px;
    background: var(--theme-sub2_color);
  }
  
  .p-outline__list-item:first-child{
    margin-bottom: 10px;
  }
  .p-outline__list-item:first-child:after {
    display: none;
  }
  .p-outline__list-item a{
    display: block;
    width: 100%;
    padding:13px 50px;
    font-size: 1.7rem;
  }
  .p-outline__list-item a::before{
    left: 20px;
  }

  .p-service-outline{
    margin: 80px auto 100px;
  }
  .p-service-outline__title {
    padding-left: 25px;
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  .p-service-outline__title:before{
    width: 15px;
    height: 15px;
    top:12px;
  }
  .p-service-outline__text{
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  .p-service-outline__box{
    max-width: 100%;
    border-radius: 0;
    padding:40px 20px;
  }
  .p-service-outline__item{
    width:100%;
  }
  .p-service-outline__item--wide .p-service-outline__list-item{
    width: 100%;
  }
  .p-service-outline__item-title{
    padding-bottom: 15px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .p-service-outline__list{
    gap:15px;
  }
  .p-service-outline__list-item{
    padding-left: 20px;
    background: url(../images/icon/check02.svg)no-repeat top 6px left / 14px;
  }
  .p-service-outline__list-item-title{
    line-height: 1.6;
    font-size: 1.7rem;
    margin-bottom: 2px;
  }
  .p-service-outline__list-item-title br{
    display: none;
  }
  .p-service-outline__list-item-text{
    line-height: 1.6;
    font-size: 1.4rem;
  }
  .p-step__list-item{
    display: block;
    padding: 20px;
  }
  .p-step__list-num{
    padding: 0 0 20px;
    border-right: none;
    border-bottom: solid 1px #CCD3EB;
    margin-bottom: 20px;
  }
  .p-step__list-content{
    display: block;
    padding: 0;
    align-items: flex-start;
  }
  .p-step__list-content-image{
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
  }
  .p-step__list-box{
    width: 100%;
    padding-left: 0;
  }
  .p-step__list-box-title{
    text-align: center;
    margin-bottom: 10px;
  }
  .p-step__list-box-text{
    line-height: 2;
  }
  .p-img-list__item{
    width: 100%;
    margin: 0 auto 60px;
  }
  .p-img-list__item-image{
    width: 250px;
    max-width: 100%;
    height: 230px;
    margin: 0 auto 20px;
  }
}

@media(max-width:950px){
  .l-footer{
    background: url(../images/background/dot-footer.svg) no-repeat right -50vw bottom 18% / 120%;
    background-color: var(--theme-main_color);
    color: var(--theme-white_color);
    position: relative;
  }
  .l-footer:before{
    content: '';
    display: block;
    width: 100%;
    height: 500px;
    background: url(../images/background/dot-footer.svg) no-repeat top 40% left -50vw / 110%;
    background-color: var(--theme-main_color);
    color: var(--theme-white_color);
    position: absolute;
    top:0;
    left: 0;
    z-index: 1;
  }
  .l-footer__inner{
    display: block;
    width: 700px;
    max-width: 100%;
    padding: 60px 15px 45px;
    position: relative;
    z-index: 2;
  }
  .l-footer__info-box{
    width: 100%;
    margin-bottom: 18px;
  }
  .l-footer__logo{
    margin-bottom: 10px;
  }
  .l-footer__logo img{
    width: 95px;
    margin-bottom: 12px;
  }
  .l-footer__logo span{
    font-size: 1.9rem;
  }
  .l-footer__info-text{
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .l-footer__info-text span{
    margin-top: 5px;
  }
  .l-footer__info-box .c-button--contact{
    width: 360px;
    max-width: 100%;
  }
  .l-footer__link-list{
    display: block;
    width: 100%;
  }
  .l-footer__link-list-item{
    width: 100%;
    padding-top: 25px;
    margin: 0 auto;
  }
  .l-footer__link-list-item:nth-of-type(1){
    margin-right: auto;
  }
  .l-footer__link-list-item:nth-of-type(4){
    margin-right: auto;
  }
  .l-footer__link-list-item--wide{
    display: block;
  }
  .l-footer__link-list-title{
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .l-footer__link-list-title:before{
    bottom: -15px;
  }
  .l-footer__link-list-title:after{
    width: 95px;
    bottom: -15px;
  }
  .l-footer__link-child-list{
    margin: 35px 0 10px;
  }
  .l-footer__link-child-title{
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .l-footer__link-child-list-item{
    font-size: 1.8rem;
  }
  .l-footer__link-child-list-item:last-of-type{
    margin-bottom: 0;
  }
  .l-footer__link-list-item--wide .l-footer__link-child-box{
    width: 100%;
    padding-top: 15px;  }
  .l-footer__link-list-item--wide .l-footer__link-child-box:nth-of-type(1){
    margin: 0;
  }
  .l-footer__link-child-box .l-footer__link-child-list{
    margin: 0 0 20px;
  }
  .l-footer__link-child-box .l-footer__link-child-list-item {
    line-height: 1.4;
    font-size: 1.8rem;
    font-weight: 500;
  }

  .l-footer__bottom-inner{
    flex-direction: column-reverse;
    width: 700px;
    max-width: 100%;
    padding: 15px 15px 10px;
  }
  .l-footer__bottom-link{
    display: block;
    margin: 0;
  }
  .l-footer__bottom-link-item {
    display: block;
    padding-left: 14px;
    line-height: 1.4;
    font-size: 1.4rem;
    margin-left:0;
    margin-bottom: 10px;
  }
  .l-footer__bottom-link-item:before {
    width: 5px;
    height: 5px;
    top: 7px;
  }
  .l-footer__copyright-box{
    justify-content: center;
  }
  .l-footer__copyright {
    font-size: 1.2rem;
    margin-right: 9px;
  }
  .l-footer__p-mark{
    width: 36px;
  }
}

@media(max-width:900px){
  .p-title-box__title{
    font-size: 12vw;
  }
  .p-title-box__text{
    font-size: 4vw;
  }
  .p-check-list{
    margin-bottom: 20px;
  }
  .p-check-list__item {
    padding: 14px 15px 15px 42px;
    background: url(../images/icon/check.svg)no-repeat center left 17px / 15px;
    background-color: var(--theme-white_color);
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}

@media(max-width:768px){
  .l-header__menu {
    width: calc(100% - 180px);
  }
  .l-header__menu .c-button--top{
    padding: 10px;
    font-size: 1rem;
  }
  .p-logo {
    width: 180px;
  }
  .p-title-box{
    margin-bottom: 25px;
  }
  .p-title-box__title{
    font-size: 11vw;
  }
  .p-title-box__text{
    font-size: 5vw;
    margin-top: 10px;
  }  
  .p-text-section__image{
    top:10px;
  }
  .p-text-section__title br{
    display: block;
  }

  .p-service-outline__sp-slide{
    overflow-x: scroll;
  }
  .p-service-outline__sp-slide-attention{
    display: inline-block;
    padding-right: 17px;
    font-size: 1.3rem;
    font-weight: 400;
    position: relative;
    margin-bottom: 20px;
  }
  .p-service-outline__sp-slide-attention:before{
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: url(../images/icon/hand.svg)no-repeat center center / contain;
    position: absolute;
    top:2px;
    right: 0;
  }
  .p-service-outline__sp-slide .p-service-outline__list{
    width: 520px;
    gap:20px;
  }
  .p-service-outline__sp-slide .p-service-outline__list-item{
    width:calc(50% - 18px);
  }
  .p-breadcrumb{
    padding: 0 0 0 20px;
    margin: 20px auto 60px;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .p-breadcrumb--mbn{
    margin-bottom: 0;
  }
  .p-breadcrumb__list{
    width: max-content;
  }
  .p-breadcrumb__list-item{
    padding-right: 20px;
    font-weight: 500;
    font-size: 1.2rem;
  }
  .p-breadcrumb__list-item:not(:last-child)::before{
    width: 5px;
    right: 8px;
  }
}

/*------------------------------------------------------------
	Animation
------------------------------------------------------------*/

.fade-content{
  transform: translateY(50px);
  transition: .8s ease-in-out;
  opacity: 0;
}
.fade-content__on{
  transform: translateY(0);
  opacity: 1;
}


/*------------------------------------------------------------
  page-navi
------------------------------------------------------------*/
.p-page-navi__list{
  width: 1240px;
  max-width: calc(100% - 40px);
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--theme-sub2_color);
  border-radius: 10px;
}
.p-page-navi__list--line4 .p-page-navi__list-item{
  width: calc(100% / 4);
}
.p-page-navi__list--line5 .p-page-navi__list-item{
  width: calc(100% / 5);
}
.p-page-navi__list .p-page-navi__list-item a{
  display: block;
  text-align: center;
  padding: 15px 5px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  transition: .3s;
}
.p-page-navi__list .p-page-navi__list-item a:hover{
  color: var(--theme-sub_color);
}
.p-page-navi__list .p-page-navi__list-item a:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--theme-sub_color);
  border-bottom: 2px solid var(--theme-sub_color);
  transform: translateY(-50%) rotate(45deg);
  margin-right: 15px;
  transition: .3s;
}
.p-page-navi__list .p-page-navi__list-item a:hover:before{
  transform: translateY(-20%) rotate(45deg);
}
.p-page-navi__list .p-page-navi__list-item a:after{
  content: '';
  position: absolute;
  right: 0;
  top: 15px;
  width: 1px;
  height: calc(100% - 30px);
  background-color: #AEAEAE;
}
.p-page-navi__list .p-page-navi__list-item:last-child a:after{
  display: none;
}
@media (max-width: 1200px) {
  .p-page-navi__list .p-page-navi__list-item a{
    font-size: 1.7rem;
  }
}
@media (max-width: 870px) {
  .p-page-navi .l-section-inner{
    margin-bottom: 40px;
    overflow-x: scroll;
  }
  .p-page-navi__list{
    width: max-content;
    max-width: max-content;
    flex-wrap: nowrap;
    border-radius: 5px;
    margin: 0 20px;
  }
  .p-page-navi__list--line4 .p-page-navi__list-item,
  .p-page-navi__list--line5 .p-page-navi__list-item{
    width: auto;
    margin-right: 5px;
  }
  .p-page-navi__list .p-page-navi__list-item a{
    padding: 10px ;
    font-size: 1.4rem;
  }
  .p-page-navi__list .p-page-navi__list-item a:before {
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);
    margin-right: 10px;
  }
  .p-page-navi__list .p-page-navi__list-item a:after{
    display: none;
  }
  .p-page-navi__list .p-page-navi__list-item:last-child a:after{
    display: none;
  }
}

/*------------------------------------------------------------
  ポリシー系ページ共通
------------------------------------------------------------*/
.p-policy__midashi{
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.4;
  color: #014E9B;
  margin: 50px 0 30px;
  padding-bottom: 20px;
  position: relative;
}
.p-policy__midashi:first-of-type{
  margin-top: 0;
}
.p-policy__midashi:before,
.p-policy__midashi:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
}
.p-policy__midashi:before{
  width: 80px;
  background-color: var(--theme-sub_color);
  z-index: 1;
}
.p-policy__midashi:after{
  width: 100%;
  background-color: var(--theme-sub2_color);
}
.p-policy__komidashi{
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 10px;
}
.p-policy__text{
  font-size: 1.7rem;
  line-height: 2;
}
@media (max-width: 1000px) {
  .p-policy__midashi{
    font-size: 2.4rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
  }
  .p-policy__midashi:before,
  .p-policy__midashi:after{
    height: 1px;
  }
  .p-policy__midashi:before{
    width: 40px;
  }
  .p-policy__komidashi{
    font-size: 1.5rem;
  }
  .p-policy__text{
    font-size: 1.4rem;
  }
}