span.jyun {
    margin: 0 0 0 auto;
	font-size: 14px;
	padding-right: 15px;
}

@media screen and (max-width: 900px) {
span.jyun {
    margin: 0 0 0 auto;
	font-size: 14px;
	padding-right: 0px;
}
}

dt {
    position: relative;
    padding-bottom: 5px;
    font-size: 16px;
	font-weight: 100;
	margin-top: 20px;
}

dt span {
    position: absolute;
    bottom: 0;
    margin-bottom: 7px;
    font-size: 12px;
}

.parts-note {
    color: #ff0000;
    font-size: 12px;
    padding-left: 10px;
	
}

.form-ex {
    color: #666;
    font-size: 14px;
    margin-top: 4px;
}

.form-ex2 {
    color: #000;
    font-size: 14px;
    margin-top: 30px;
}

.form-ex2 a {
  text-decoration: underline;
}

.form-ex2 a:hover {
  opacity: 0.5;
}


.error-message, .formrun-system-show {
color: #ff0000;
    margin: 4px 0 0;
    font-size: 14px;
    font-weight:500;
}

.form_contents_btn button {
    background: #324356;
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
	font-weight: bold;
    width: 100%;
    height: 80px;
    text-align: center;
	border-radius: 0px;
}

.form_contents_btn {
    margin: 30px auto 0;
    width: 100%;
    text-align: center;
}


html { 
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #2f2f2f;
}

body {
    min-width: 390px;
}

body.js-active {
    overflow: hidden;
}

main {
    overflow: hidden;
    margin-top: 66px;
}

main.page-lower {
    margin-top: 0;
}

@media screen and (max-width: 900px) {
    main {
        margin-top: 54px;
    }
}

span {
    display: inline-block;
}

picture {
    display: block;
}

img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

a {
    display: inline-block;
}

@media screen and (min-width: 901px) {
    a.--nomal {
        transition: opacity .5s;
        -webkit-transition: opacity .5s;
        -moz-transition: opacity .5s;
        -ms-transition: opacity .5s;
        -o-transition: opacity .5s;
    }

    a.--nomal:hover {
        opacity: 0.6;
    }
}

/* utility */
.u-en {
    font-family: 'Red Hat Display', sans-serif;
}

/* text */

/* common */
.pc-only {
    display: block;
}

.br-pc-only {
    display: inline-block;
}

.sp-only {
    display: none;
}

.br-sp-only {
    display: none;
}

.l-wrapper {
    padding-left: 100px;
    padding-right: 100px;
}

.l-wrapper2 {
    padding-left: 40px;
    padding-right: 40px;
}

.l-wrapper8 {
    padding-left: 0px;
    padding-right: 0px;
}

.l-inner {
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 900px) {
    .l-wrapper {
        padding-left: 7vw;
        padding-right: 7vw;
    }
	
	.l-wrapper2 {
        padding-left: 0vw;
        padding-right: 0vw;
}
	
	.l-wrapper8 {
        padding-left: 0vw;
        padding-right: 0vw;
}
}



@media screen and (max-width: 900px) {

    .l-inner {
        max-width: 600px;
    }
}



@media screen and (max-width: 900px) {
    .pc-only {
        display: none;
    }

    .br-pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .br-sp-only {
        display: inline-block;
    }

    .l-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }

}

@media screen and (max-width: 600px) {
    .l-inner {
        max-width: 375px;
    }
}

/*===========================================================================*/
/*  fade in  */
/*===========================================================================*/
.fadeIn-mv01,
.fadeIn-mv02,
.fadeIn-mv03,
.fadeIn-mv04,
.fade-top-header,
.fade-header,
.loading-fade01,
.fadeInNomal {
    opacity: 0;
}

.fadeIn-mv01.fade-active,
.fadeIn-mv02.fade-active,
.fadeIn-mv03.fade-active,
.fadeIn-mv04.fade-active,
.fade-top-header.fade-active,
.fade-header.fade-active,
.loading-fade01.fade-active,
.fadeInNomal.fade-active {
    opacity: 1;
    animation: fadeOpacity .8s ease-out;
}

@keyframes fadeOpacity {
    0% {
        opacity: 0;
    }
    100% { 
        opacity: 1;
    }
}

.fadeInTxt {
    opacity: 0;
    transform: translate(0, 40px);
}

.fadeInTxt.fade-active {
    opacity: 1;
    transform: translate(0, 0);
    animation: fadeTxt .8s ease-out;
}

@keyframes fadeTxt {
    0% {
        opacity: 0;
        transform: translate(0, 40px);
    }
    100% { 
        opacity: 1;
        transform: translate(0, 0);
    }
}

.fadeInImg {
    opacity: 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.fadeInImg.fade-active {
    opacity: 1;
    animation: fadeImg01 .6s ease-out;
}

@keyframes fadeImg01 {
    0% {
        opacity: 0;
    }
    100% { 
        opacity: 1;
    }
}

.fadeInImg::before {
    background-color: #252731;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.fadeInImg.fade-active::before {
    animation: fadeImg02 1.2s ease-out;
    transform: translate(0px, -101%);
}

@keyframes fadeImg02 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, 0);
    }
    100% { 
        transform: translate(0, -101%);
    }
}

.fadeInImg img {
    transform: scale(1.1, 1.1);
    z-index: -1;
    position: relative;
}

.fadeInImg.fade-active img {
    transform: scale(1, 1);
    animation: fadeImg03 1.2s ease-out;
}

@keyframes fadeImg03 {
    0% {
        transform: scale(1.1, 1.1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% { 
        transform: scale(1, 1);
    }
}

/*===========================================================================*/
/*  component  */
/*===========================================================================*/
/* btn */
.c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 47px;
    background-color: #284669;
    border-radius: 100vh;
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: .025em;
    color: #fff;
	margin: 0 auto;
}

.c-btn.--contact {
    background-color: #FF9600;
}

@media screen and (min-width: 901px) {
    .c-btn span {
        display: inline;
        background-image: linear-gradient(90deg, #fff, #fff);
        background-repeat: no-repeat;
        background-position: left bottom;
        background-size: 0 1px;
        transition: background-size 0.6s;
    }

    .c-btn:hover span {
        background-size: 100% 1px;
    }
}

@media screen and (max-width: 900px) {
    .c-btn {
        width: 250px;
    }
}

/* text */
.c-subHead {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #ccc2aa;
}

.c-h2 {
    font-weight: bold;
    font-size: 34px;
    line-height: 170%;
    letter-spacing: .05em;
    padding-bottom: 20px;
    position: relative;
	text-align: center;
}

.second_text{
    font-weight: bold;
    font-size: 28px;
    line-height: 190%;
    letter-spacing: .05em;
	padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
	text-align: center;
}

span.second_text_plus {
	background: linear-gradient(transparent 60% , #FFC045 60%);
    display: inline-block;
	font-size: 40px;
	color: #2B3A4E;
}

@media screen and (max-width: 1180px) {
.second_text{
    font-size: 22px;
	padding-top: 60px;
    padding-bottom: 60px;
}

span.second_text_plus {
	font-size: 34px;
}
}

@media screen and (max-width: 900px) {
.second_text{
    font-size: 15px;
	padding-top: 40px;
    padding-bottom: 40px;
}

span.second_text_plus {
	font-size: 22px;
}
}

.c2-h2 {
    font-weight: bold;
    font-size: 30px;
    line-height: 190%;
    letter-spacing: .05em;
	padding-top: 40px;
    padding-bottom: 0px;
    position: relative;
	text-align: center;
}

.c3-h2 {
	font-weight: bold;
    font-size: 30px;
    line-height: 190%;
    letter-spacing: .05em;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    text-align: center;
    background: #324356;
	color: #fff;
	border-radius: 10px;
    font-family: "Noto Sans JP", sans-serif;
}
.line {
    background-color: #FF9601;
    height: 4px;
    position: relative;
    bottom: 0;
    width: 60px;
	margin: 0 auto;
}

.c-txt {
    font-weight: 500;
    font-size: 15px;
    line-height: 192%;
    letter-spacing: 0.05em;
}
.c-txt.--mt {
    margin-top: 40px;
}

.c-txts {
    display: flex;
    align-items: center;
}

.c-txts__left {
    width:100%;
}

.c-txts__right {
    width: calc(100% - 290px);
    padding-top: 9px;
}

@media screen and (max-width: 900px) {
    .c-subHead {
        font-size: 16px;
        line-height: 21px;
    }
    
    .c-h2 {
        font-size: 24px;
        padding-bottom: 15px;
    }
    .c-h2::before {
        height: 2px;
    }
	
	.c2-h2 {
        font-size: 22px;
        padding-bottom: 15px;
    }
    .c2-h2::before {
        height: 2px;
    }
	
		.c3-h2 {
font-size: 20px;
    padding-bottom: 15px;
    font-weight: bold;
    margin: 20px 30px 0px 20px;
    line-height: 150%;
    letter-spacing: .05em;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
    background: #324356;
    color: #fff;
    border-radius: 10px;
    font-family: "Noto Sans JP", sans-serif;
    }
    .c3-h2::before {
        height: 2px;
    }
    
    .c-txt {
        font-size: 13px;
        line-height: 180%;
    }
    .c-txt.--mt {
        margin-top: 22px;
    }

    .c-txts {
        display: block;
    }
    
    .c-txts__left {
        width: 100%;
    }
    
    .c-txts__right {
        width: 100%;
        margin-top: 22px;
        padding-top: 0;
    }
}

/* form */
input[type="text"],
input[type="email"],
input[type="tel"]{
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    padding: 10px 18px;
    font-weight: 500;
    font-size: 13px;
    line-height: 153.8%;
    letter-spacing: .025em;
			border:1px solid #CCCCCC;
}

textarea {
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    padding: 14px 18px;
    font-weight: 500;
    font-size: 13px;
    line-height: 153.8%;
    letter-spacing: .025em;
    min-height: 144px;
    resize: vertical;
}

::placeholder {
    color: #828282;
}

@media screen and (max-width: 900px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"]{
        padding: 16px 20px;
    }

    textarea {
        padding: 16px 20px;
        min-height: 156px;
    }
}

/* slide */
.slick-dots {
    display: flex;
}

.slick-dots li {
    position: relative;
    width: 8px;
    height: 8px;
    margin-left: 14px;
    background-color: #fff;
    border-radius: 100vh;
}
.slick-dots li:nth-of-type(1) {
    margin-left: 0;
}

.slick-dots li.slick-active::before {
    width: 14px;
    height: 14px;
    content: '';
    position: absolute;
    border-radius: 100vh;
    border: 1px solid #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.slick-dots li button {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    opacity: 0;
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 11px 40px 11px 35px;
    z-index: 90;
    background-color: #F7F2F0;
}
header.--lower {
    position: relative;
}

.p-header__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
	max-width: 1440px;
    margin: auto;
}

.p-header__logo {
    max-width: 178px;
    /*padding-bottom: 5px;*/
}

.p-header__right {
    display: flex;
    align-items: center;
}

.p-header__navList {
    display: flex;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .025em;
    color: #433d38;
}

.p-header__navList li {
    margin-left: 30px;
}

.p-header__navList li:nth-of-type(1) {
    margin-left: 0;
}

.p-header__btns {
    margin-left: 45px;
    padding-left: 45px;
    border-left: 1px solid #c9c9c9;
    display: flex;
}

.p-header__btn {
    width: 180px;
    height: 42px;
    font-size: 14px;
    line-height: 20px;
    padding-left: 22px;
}
.p-header__btns .p-header__btn:nth-of-type(2) {
    margin-left: 12px;
    padding-left: 24px;
}

.p-header__btn span {
    position: relative;
}
.p-header__btn span::before {
    background: url('../img/icon-document.png') no-repeat center center/contain;
    content: '';
    height: 17px;
    left: -22px;
    position: absolute;
    top: calc(50% - 8.5px);
    width: 12px;
}
.p-header__btns .p-header__btn:nth-of-type(2) span::before {
    background: url('../img/icon-mail.png') no-repeat center center/contain;
    height: 14px;
    left: -24px;
    top: calc(50% - 7px);
    width: 16px;
}

.p-hamburger__nav {
    display: none;
}

@media screen and (min-width: 901px) {
    .p-header__navList a {
        display: inline;
        background-image: linear-gradient(90deg, #433d38, #433d38);
        background-repeat: no-repeat;
        background-position: left bottom;
        background-size: 0 1px;
        transition: background-size 0.6s;
    }

    .p-header__navList a:hover {
        background-size: 100% 1px;
    }
}

@media screen and (max-width: 1360px) {
    header {
        padding: 10px 25px 10px 20px;
    }

    .p-header__navList li {
        margin-left: 15px;
    }

    .p-header__btns {
        margin-left: 25px;
        padding-left: 25px;
    }
}

@media screen and (max-width: 1210px) {


    .p-hamburger__nav {
        display: block;
        width: 100%;
        position: fixed;
        height: calc(100vh - 95px);
        background-color: #f0f1f1;
        left: 0;
        top: 95px;
        padding: 40px 30px;
        opacity: 0;
        pointer-events: none;
        transition: opacity .6s;
        z-index: 90;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .p-hamburger__nav::-webkit-scrollbar{
        display: none;
    }
    .p-hamburger__nav.js-active {
        opacity: 1;
        pointer-events: all;
    }

    .p-hamburger__nav--list {
        max-width: 330px;
        margin: 0 auto;
    }

    .p-hamburger__nav--list li {
        padding: 20px 0 10px;
        border-bottom: 1px solid #ccc2aa;
    }

    .p-hamburger__nav--list li .--large {
        font-weight: 500;
        font-size: 18px;
        line-height: 190.3%;
        letter-spacing: .05em;
        color: #2f2f2f;
    }

    .p-hamburger__nav--list li .--small {
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        color: #ccc2aa;
        margin-left: 6px;
    }

    .p-hamburger__nav--btns {
        padding-top: 20px;
        max-width: 330px;
        margin: 0 auto;
    }

    .p-header__btn {
        margin: 15px auto 0;
        width: 290px;
        height: 58px;
        font-size: 18px;
        line-height: 26px;
        padding-left: 25px;
    }
    .p-header__btn.--contact {
        padding-left: 27px;
    }

    .p-header__btn::before {
        width: 14px;
        height: 22px;
        left: -25px;
        top: calc(50% - 11px);
    }

    .p-header__btn.--contact span::before {
        background: url('../img/icon-mail.png') no-repeat center center/contain !important;
        width: 19px !important;
        height: 16px !important;
        left: -27px !important;
        top: calc(50% - 8px) !important;
    }
}

@media screen and (max-width: 900px) {
	.p-header__right {
		display: none;
    }
    header {
        padding: 0px;
    }
    
    .p-header__logo {
        max-width: 120px;
        padding-bottom: 0px;
margin: 0px 0px 0px 20px;
		padding: 12px 0px 12px 0px;
    }

    .p-hamburger__nav {
        height: calc(100vh - 60px);
        top: 60px;
    }
}

/* hamburger */
.p-hamburger {
    width: 32px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
}

.p-hamburger__trigger {
    cursor: pointer;
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 99;
}

.p-hamburger__trigger span {
    background-color: #FF9600;
    height: 2px;
    right: 0;
    position: absolute;
    width: 26px;
}

.p-hamburger__trigger, 
.p-hamburger__trigger span {
    display: inline-block;
    transition: all .6s;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.p-hamburger__trigger span:nth-of-type(1) {
    top: 0;
}

.p-hamburger__trigger span:nth-of-type(2) {
    top: 8px;
    left: 0;
}

.p-hamburger__trigger span:nth-of-type(3) {
    bottom: 0;
}

.p-hamburger__trigger.js-active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
    -webkit-transform: translateY(8px) rotate(-45deg);
    -moz-transform: translateY(8px) rotate(-45deg);
    -ms-transform: translateY(8px) rotate(-45deg);
    -o-transform: translateY(8px) rotate(-45deg);
    width: 100%;
}

.p-hamburger__trigger.js-active span:nth-of-type(2) {
    opacity: 0;
}

.p-hamburger__trigger.js-active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
    -webkit-transform: translateY(-8px) rotate(45deg);
    -moz-transform: translateY(-8px) rotate(45deg);
    -ms-transform: translateY(-8px) rotate(45deg);
    -o-transform: translateY(-8px) rotate(45deg);
    width: 100%;
}

@media screen and (max-width: 1210px) {
    .js-active.p-header__nav {
        opacity: 1;
        pointer-events: all;
    }

    .p-hamburger {
        display: flex;
    }
}

/*===========================================================================*/
/*  mv  */
/*===========================================================================*/
.p-mv {
    position: relative;
    height: 730px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    /*min-height: 500px;*/
	max-width: 1440px;
	margin: 0 auto;
}

.p-mv2 {
    position: relative;
    height: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    min-height: 610px;
	/*max-width: 1600px;*/
	margin: 0 auto;
	background: #fff;
}

.p-mv__inner {
    width: 1230px;
	margin: 70px 70px;
}

.p-mv__head {
    font-weight: 700;
    font-size: 44px;
    line-height: 150.8%;
    letter-spacing: .075em;
    color: #fff;
}

.p-mv__txt {
    margin-top: 20px;
    font-weight: 700;
    font-size: 17px;
    line-height: 192%;
    letter-spacing: .05em;
    color: #fff;
}

.slide-dots01 {
    margin-top: 60px;
}

.p-mv__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.p-mv__slide--content {
    width: 100vw;
    height: 780px;
    min-height: 110px;
}

.p-mv__slide--content picture {
    width: 100%;
    height: 100%;
}

.p-mv__slide--content picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 0;
}

.p-mv__logos {
    z-index: 1;
    position: absolute;
    width: 544px;
    left: 0;
    bottom: 0;
    padding: 19px 34px 19px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 0 8px 0 0;
}

.p-mv__logos li:nth-of-type(1) {
    width: 98px;
}
.p-mv__logos li:nth-of-type(2) {
    width: 75px;
}
.p-mv__logos li:nth-of-type(3) {
    width: 70px;
}
.p-mv__logos li:nth-of-type(4) {
    width: 80px;
}

.p-mv__form {
    position: relative;
    min-width: 360px;
	max-width: 800px;
    width: 60%;
	margin: 0 auto;
    height: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0);
}

.p-mv__form--inner {
    width: 100%;
}

.p-mv__form--subHead {
    max-width: 194px;
    margin: 0 auto;
}

.p-mv__form--head {
    font-weight: 700;
    font-size: 24px;
    line-height: 153.8%;
    text-align: center;
    margin-top: 3px;
	margin-bottom: 30px;
}

.p-mv__form--input {
    margin-top: 17px;
}
.p-mv__form--input.--01 {
    margin-top: 20px;
}

.p-mv__form--caution {
    margin-top: 8px;
    font-weight: 500;
    font-size: 10px;
    line-height: 153.8%;
}

.p-mv__form--contentHead {
    margin-top: 20px;
    font-weight: 500;
    font-size: 13px;
    line-height: 153.8%;
    text-align: center;
    letter-spacing: 0.025em;
}

.p-mv__form--radioWrapper {
    margin-top: 9px;
    padding-bottom: 23px;
    border-bottom: 1px solid #2f2f2f;
    display: flex;
    justify-content: center;
    font-weight: 500;
    font-size: 13px;
    line-height: 153.8%;
    letter-spacing: .025em;
}

.p-mv__form--radioWrapper label:nth-of-type(2) {
    margin-left: 19px;
}

.p-mv__form--radioWrapper label input {
    transform: translate(0px, -1px);
}

.p-mv__form--agreement {
    margin-top: 24px;
    font-weight: 500;
    font-size: 13px;
    line-height: 153.8%;
    text-align: center;
    letter-spacing: .025em;
}

.p-mv__form--agreement a {
    color: #FF9600;
    text-decoration: underline;
}

.p-mv__form--btn {
    position: relative;
    width: 277px;
    height: 53px;
    flex-direction: column;
    margin: 23px auto 0;
}

.p-mv__form--btn .--small {
    font-size: 10px;
    line-height: 153.8%;
    letter-spacing: -0.005em;
}
.p-mv__form--btn .--large {
    font-size: 14px;
    line-height: 153.8%;
    letter-spacing: -0.005em;
}

.p-mv__form--btn input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

@media screen and (max-width: 1380px) {
    .p-mv {
position: relative;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
}

@media screen and (max-width: 1340px) {
    .p-mv {
position: relative;
    height: 670px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
}

@media screen and (max-width: 1280px) {
    .p-mv {
position: relative;
    height: 640px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
	
    .p-mv2 {
        align-items: flex-start;
    }
    
    .p-mv__inner {
        width: 100%;
    }
}

@media screen and (max-width: 1240px) {
    .p-mv {
position: relative;
    height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
}

@media screen and (max-width: 1200px) {
    .p-mv {
position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
}

@media screen and (max-width: 1150px) {
    .p-mv {
position: relative;
    height: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
}

@media screen and (max-width: 1100px) {
    .p-mv {
position: relative;
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
}

@media screen and (max-width: 1050px) {
    .p-mv {
position: relative;
    height: 525px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
}

@media screen and (max-width: 1000px) {
    .p-mv {
position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
}

@media screen and (max-width: 950px) {
    .p-mv {
position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
}
@media screen and (max-width: 1050px) {
    .p-mv__head {
        font-size: 38px;
    }
}

@media screen and (max-width: 900px) {
    .p-mv {
        height: auto;
        display: block;
        padding: 0;
        /*min-height: unset;*/
    height: 460px;
    }
	
    .p-mv2 {
        height: auto;
        display: block;
        padding: 0;
        /*min-height: unset;*/
    }
    
    .p-mv__inner {
        width: 390px;
        padding: 80px 5px 130px 25px;
        margin: 0 auto;
    }
    
    .p-mv__head {
        font-size: 25px;
    }
    
    .p-mv__txt {
        margin-top: 17px;
        font-size: 13px;
    }

    .slide-dots01 {
        margin-top: 50px;
    }
    
    .p-mv__slide {
        width: 100%;
        height: 487px;
    }
    
    .p-mv__slide--content {
        height: 487px;
    }
    
    .p-mv__slide--content picture {
        width: 100%;
        height: 100%;
    }
    
    .p-mv__slide--content picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
		border-radius: 0px;
    }
    
    .p-mv__logos {
        width: 330px;
        left: calc(50% - 165px);
        bottom: unset;
        top: 426px;
        padding: 16px 23px;
        border-radius: 6px 6px 0 0;
    }
    
    .p-mv__logos li:nth-of-type(1) {
        width: 64px;
    }
    .p-mv__logos li:nth-of-type(2) {
        width: 52px;
    }
    .p-mv__logos li:nth-of-type(3) {
        width: 49px;
    }
    .p-mv__logos li:nth-of-type(4) {
        width: 56px;
    }
    
    .p-mv__form {
        position: relative;
        width: 100%;
        height: auto;
        padding: 30px;
        display: block;
        background: #fff;
        backdrop-filter: unset;
        padding: 70px 30px;
        z-index: 5;
    }

    .p-mv__form--inner {
        max-width: 580px;
        margin: 0 auto;
    }
    
    .p-mv__form--subHead {
        max-width: 194px;
        margin: 0 auto;
    }
    
    .p-mv__form--head {
        font-size: 22px;
        margin-top: 5px;
    }
    
    .p-mv__form--input {
        margin-top: 12px;
    }
    .p-mv__form--input.--01 {
        margin-top: 20px;
    }
    
    .p-mv__form--caution {
        margin-top: 10px;
    }
    
    .p-mv__form--contentHead {
        margin-top: 15px;
    }
    
    .p-mv__form--radioWrapper {
        padding-bottom: 20px;
    }
    
    .p-mv__form--agreement {
        margin-top: 20px;
    }
    
    .p-mv__form--btn {
        width: 280px;
        margin: 20px auto 0;
    }
}


@media screen and (max-width: 850px) {
    .p-mv {
position: relative;
    height: 410px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
}

@media screen and (max-width: 800px) {
    .p-mv {
position: relative;
    height: 390px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
}

@media screen and (max-width: 750px) {
    .p-mv {
position: relative;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px;
    max-width: 1440px;
    margin: 0 auto;
    }
}


/*===========================================================================*/
/*  strength  */
/*===========================================================================*/
.p-strength {
    margin-top: 100px;
    margin-bottom: 120px;
    position: relative;
}

.p-strength::before {
    background-color: #fff;
    content: '';
    height: 400px;
    right: 0;
    position: absolute;
    top: 300px;
    width: 100%;
    z-index: -1;
	border-radius: 0px 0px 0px 0px; 
}

.p-strength__list {
    padding-top: 26px;
    display: flex;
    justify-content: center;
    position: relative;
}

.p-strength__list li {
    width: 340px;
    margin: 34px 17px 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px 30px;
    position: relative;
	-webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
    box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
}

.p-strength__list_8 {
    padding-top: 26px;
    display: flex;
    justify-content: center;
    position: relative;
	flex-wrap: wrap;
}

.p-strength__list_8 li {
    width: 30%;
    margin: 34px 17px 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 30px 30px;
    position: relative;
	-webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
    box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
}

img.st1 {
    height: 100%;
    position: relative;
    top: 0px;
}

img.st2 {
    height: 140px;
    position: relative;
    top: 0px;
}

img.st3 {
    height: 140px;
    position: relative;
    top: 20px;
}

img.st4 {
    height: 140px;
    position: relative;
    top: 0px;
}
.p-strength__list--head {
    margin-top: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    letter-spacing: 0.01em;
	color: #000;
  font-family:"Noto Sans JP", sans-serif;
}
p.number {
    position: absolute;
    top: -55px;
	left: 25px;
	font-size: 54px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
	color:rgba(0,0,0,0);
	font-weight: 900;
  font-family:"Noto Sans JP", sans-serif;
}
h3.p-strength__list--head.st4_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 17px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
	margin-top: 15px;
    margin-bottom: 15px;
}

@media screen and (max-width: 1200px) {
	
	.p-strength__list--head {
    margin-top: 30px;
    font-weight: 400;
    font-size: 14px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #000;
}

	h3.p-strength__list--head.st4_text {
    font-size: 15px;
	margin-top: 10px;
	margin-bottom: 20px;
}

}

@media screen and (max-width: 1220px) {
.p-strength__list_8 {
    padding-top: 10px;
    display: flex;
    justify-content: center;
    position: relative;
	flex-wrap: wrap;
}
.p-strength__list_8 li {
    width: 30%;
    margin: 24px 10px 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 30px 30px;
    position: relative;
	-webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
    box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
}
}

@media screen and (max-width: 900px) {
    .p-strength {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    
    .p-strength::before {
        height:1140px;
        top: 290px;
    }
    
    .p-strength__list {
        padding-top: 0px;
        display: block;
        width: 100%;
        left: 0;
    }
    
    .p-strength__list li {
        width: 100%;
        margin: 70px 0 0;
        padding: 30px 20px 30px 20px;
    }
	
	    .p-strength__list_8 {
        padding-top: 0px;

        width: 100%;
        left: 0;
			display: flex;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
    }
    
    .p-strength__list_8 li {
	width: 47%;
    margin: 14px 5px 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 30px 30px;
    /* margin: 20px 0 0; */
    padding: 20px 20px 20px 20px;
    }
    
    .p-strength__list li::before {
        height: 119px;
        left: 61px;
        top: 101px;
        width: 209px;
    }
    .p-strength__list li:nth-of-type(2):before {
        height: 138px;
        left: 96px;
        top: 93px;
        width: 138px;
    }
    .p-strength__list li:nth-of-type(3):before {
        height: 136px;
        left: 97px;
        top: 92px;
        width: 136px;
    }
    
    .p-strength__list--subHead {
        font-size: 12px;
        line-height: 16px;
    }
    
    .p-strength__list--head {
        margin-top: 20px;
        font-size: 16px;
    }
	
	h3.p-strength__list--head.st4_text {
    font-size: 20px;
	margin-top: 10px;
	margin-bottom: 20px;
}
	
    .p-strength__list li:nth-of-type(1) .p-strength__list--head {
        letter-spacing: .005em;
    }
    
}


.p-strength2 {
    margin-top: 90px;
    margin-bottom: 120px;
    position: relative;
}

.p-strength2::before {
    background-color: #fafafa;
    content: '';
    height: 400px;
    right: 0;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: -1;
	border-radius: 0px 0px 0px 0px; 
}

.p-strength2__list {
    padding-top: 0px;
    display: flex;
    justify-content: center;
    position: relative;
}

.p-strength2__list li {
    width: 282px;
    margin: 30px 12px 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 20px 0px;
    position: relative;
	-webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
    box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
}

img.st5 {
    height: 100px;
    position: relative;
    top: 20px;
}

img.st6 {
    height: 100px;
    position: relative;
    top: 20px;
}

img.st7 {
    height: 100px;
    position: relative;
    top: 20px;
}

img.st8 {
    height: 100px;
    position: relative;
    top: 20px;
}
.p-strength2__list--head {
    margin-top: 35px;
    font-weight: 700;
    font-size: 18px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
}

h3.p-strength2__list--head.st5_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 18px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #000;
	margin-top: 50px;
    margin-bottom: 15px;
}

h3.p-strength2__list--head.st6_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 18px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #000;
	margin-top: 50px;
    margin-bottom: 15px;
}

h3.p-strength2__list--head.st7_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 18px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #000;
	margin-top: 50px;
    margin-bottom: 15px;
}

h3.p-strength2__list--head.st8_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 18px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #000;
	margin-top: 35px;
    margin-bottom: 15px;
}


@media screen and (max-width: 1200px) {
 
	
	h3.p-strength2__list--head.st5_text {
    font-size: 14px;
}

h3.p-strength2__list--head.st6_text {
    font-size: 14px;
}

h3.p-strength2__list--head.st7_text {
    font-size: 14px;
}

h3.p-strength2__list--head.st8_text {
    font-size: 14px;
}
	
    }










@media screen and (max-width: 900px) {
    .p-strength2 {
        margin-top: 80px;
        margin-bottom: 60px;
    }
    
    .p-strength2::before {
        height: 540px;
width: 106.7%;
    margin: 0 auto;
    }
    
    .p-strength2__list {
        padding-top: 15px;
        flex-wrap: wrap;
        width: 100%;
        left: 0;
    }
    
    .p-strength2__list li:nth-of-type(1) {
        width: 165px;
        margin: 0 7px 7px 0 ;
        padding: 10px 0px 10px 0px;
    }
	
	    .p-strength2__list li:nth-of-type(2) {
        width: 165px;
        margin: 0 0 7px 7px;
        padding: 10px 0px 10px 0px;
    }
	
	    .p-strength2__list li:nth-of-type(3) {
        width: 165px;
        margin: 7px 7px 0 0;
        padding: 10px 0px 10px 0px;
    }
	
	    .p-strength2__list li:nth-of-type(4) {
        width: 165px;
        margin: 7px 0 0 7px;
        padding: 10px 0px 10px 0px;
    }
	
	
    
    .p-strength2__list li::before {
        height: 119px;
        left: 61px;
        top: 101px;
        width: 209px;
    }
    .p-strength2__list li:nth-of-type(2):before {
        height: 138px;
        left: 96px;
        top: 93px;
        width: 138px;
    }
    .p-strength2__list li:nth-of-type(3):before {
        height: 136px;
        left: 97px;
        top: 92px;
        width: 136px;
    }
    
    .p-strength2__list--subHead {
        font-size: 12px;
        line-height: 16px;
    }
    
    .p-strength2__list--head {
        margin-top: 0px;
        font-size: 20px;
    }
	
	h3.p-strength2__list--head.st4_text {
    font-size: 20px;
	margin-top: 10px;
	margin-bottom: 20px;
}
	
	h3.p-strength2__list--head.st5_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
	margin-top: 50px;
    margin-bottom: 15px;
}

h3.p-strength2__list--head.st6_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
	margin-top: 50px;
    margin-bottom: 15px;
}

h3.p-strength2__list--head.st7_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
	margin-top: 50px;
    margin-bottom: 15px;
}

h3.p-strength2__list--head.st8_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
	margin-top: 35px;
    margin-bottom: 15px;
}
	
    }








@media screen and (max-width: 900px) {
    .p-strength2 {
        margin-top: 80px;
        margin-bottom: 60px;
    }
    
    .p-strength2::before {
        height: 640px;
		left: -12px;
		width: 375px;
    }
    
    .p-strength2__list {
        padding-top: 15px;
        flex-wrap: wrap;
        width: 100%;
        left: 0;
    }
    
    .p-strength2__list li:nth-of-type(1) {
        width: 165px;
        margin: 0 7px 7px 0 ;
        padding: 10px 0px 10px 0px;
    }
	
	    .p-strength2__list li:nth-of-type(2) {
        width: 165px;
        margin: 0 0 7px 7px;
        padding: 10px 0px 10px 0px;
    }
	
	    .p-strength2__list li:nth-of-type(3) {
        width: 165px;
        margin: 7px 7px 0 0;
        padding: 10px 0px 10px 0px;
    }
	
	    .p-strength2__list li:nth-of-type(4) {
        width: 165px;
        margin: 7px 0 0 7px;
        padding: 10px 0px 10px 0px;
    }
	
	
    
    .p-strength2__list li::before {
        height: 119px;
        left: 61px;
        top: 101px;
        width: 209px;
    }
    .p-strength2__list li:nth-of-type(2):before {
        height: 138px;
        left: 96px;
        top: 93px;
        width: 138px;
    }
    .p-strength2__list li:nth-of-type(3):before {
        height: 136px;
        left: 97px;
        top: 92px;
        width: 136px;
    }
    
    .p-strength2__list--subHead {
        font-size: 12px;
        line-height: 16px;
    }
    
    .p-strength2__list--head {
        margin-top: 0px;
        font-size: 20px;
    }
	
	h3.p-strength2__list--head.st4_text {
    font-size: 20px;
	margin-top: 10px;
	margin-bottom: 20px;
}
	
	h3.p-strength2__list--head.st5_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
	margin-top: 50px;
    margin-bottom: 15px;
}

h3.p-strength2__list--head.st6_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
	margin-top: 50px;
    margin-bottom: 15px;
}

h3.p-strength2__list--head.st7_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
	margin-top: 50px;
    margin-bottom: 15px;
}

h3.p-strength2__list--head.st8_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
	margin-top: 35px;
    margin-bottom: 15px;
}
	
    }



.p-strength3 {
    margin-top: 60px;
    margin-bottom: 120px;
    position: relative;
}

.p-strength3::before {
    background-color: #EBE2D8;
    content: '';
    height: 110%;
    right: -120px;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: -1;
	border-radius: 0px 0px 0px 0px; 
}

.p-strength3__list {
    padding-top: 26px;
    display: flex;
    justify-content: center;
    position: relative;
}

.p-strength3__list li {
    width: 282px;
    margin: 34px 17px 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px 50px;
    position: relative;
	-webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
    box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
}

.p-strength8 {
    margin-top: 60px;
    margin-bottom: 120px;
    position: relative;
}

.p-strength8::before {
    background-color: #EBE2D8;
    content: '';
    height: 110%;
    right: -120px;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: -1;
	border-radius: 0px 0px 0px 0px; 
}

.p-strength8__list {
    padding-top: 26px;
    display: flex;
    justify-content: center;
    position: relative;
}

.p-strength8__list li {
    width: 282px;
    margin: 34px 17px 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px 50px;
    position: relative;
	-webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
    box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
}

img.st9 {
    height: 130px;
    position: relative;
    top: 20px;
}

img.st10 {
    height: 130px;
    position: relative;
    top: 20px;
}

img.st11 {
    height: 130px;
    position: relative;
    top: 20px;
}

.p-strength3__list--head {
    margin-top: 4px;
    font-weight: 700;
    font-size: 18px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
}

h3.p-strength3__list--head.st4_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 18px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
	margin-top: 15px;
    margin-bottom: 15px;
}
.p-strength8__list--head {
    margin-top: 4px;
    font-weight: 700;
    font-size: 18px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
}

h3.p-strength8__list--head.st4_text {
    margin-top: 4px;
    font-weight: 700;
    font-size: 18px;
    line-height: 169%;
    text-align: center;
    letter-spacing: 0.02em;
	color: #284669;
	margin-top: 15px;
    margin-bottom: 15px;
}



@media screen and (max-width: 900px) {
    .p-strength3 {
        margin-top: 50px;
        margin-bottom: 60px;
    }
    
    .p-strength3::before {
        height: 105%;
        top: 0px;
    }
    
    .p-strength3__list {
        padding-top: 15px;
        display: block;
        width: 100%;
        left: 0;
    }
    
    .p-strength3__list li {
        width: 100%;
        margin: 15px 0 0;
        padding: 30px 30px 50px 30px;
    }
    
    .p-strength3__list li::before {
        height: 119px;
        left: 61px;
        top: 101px;
        width: 209px;
    }
    
    .p-strength3__list--subHead {
        font-size: 12px;
        line-height: 16px;
    }
    
    .p-strength3__list--head {
        margin-top: 0px;
        font-size: 20px;
    }
	
	
	
    .p-strength8 {
        margin-top: 70px;
        margin-bottom: 80px;
    }
    
    .p-strength8::before {
    height: 110%;
    top: -21px;
    background-color: #EBE2D8;
    content: '';
    right: -70px;
    position: absolute;
    width: 100%;
    z-index: -1;
	border-radius: 0px 0px 0px 0px; 
    }
    
    .p-strength8__list {
        padding-top: 15px;
        display: block;
        width: 100%;
        left: 0;
    }
    
    .p-strength8__list li {
        width: 100%;
        margin: 15px 0 0;
        padding: 30px 30px 50px 30px;
    }
    
    .p-strength8__list li::before {
        height: 119px;
        left: 61px;
        top: 101px;
        width: 209px;
    }
    
    .p-strength8__list--subHead {
        font-size: 12px;
        line-height: 16px;
    }
    
    .p-strength8__list--head {
        margin-top: 0px;
        font-size: 20px;
    }
    
}

@media screen and (max-width: 767px) {

    .p-strength8::before {
    height: 114%;
    top: -21px;
    background-color: #EBE2D8;
    content: '';
    right: -70px;
    position: absolute;
    width: 100%;
    z-index: -1;
	border-radius: 0px 0px 0px 0px; 
    }
    
}

/*===========================================================================*/
/*  cta  */
/*===========================================================================*/
.p-cta {
    margin: 0 auto;
	text-align: center;
}


.p-cta__content {
    width: 100%;
    position: relative;
    padding: 50px 20px 50px;
    background-color: #324356;
    color: #fff;
	text-align:center; 
}
.p-cta__content.--02 {
    background-color: #373737;
}

.p-cta__content--bg {
    height: 100%;
    right: 64px;
    position: absolute;
    top: 0;
    width: auto;
    display: inline;
}

.p-cta__content--bg img {
    height: 100%;
    width: auto;
}

.p-cta__inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.p-cta__subHead {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
}

.p-cta__subHead--txt {
    position: relative;
    padding-left: 25px;
}

.p-cta__subHead--txt::before {
    background: url('../img/cta-illust-download.png') no-repeat center center/contain;
    content: '';
    height: 21px;
    left: 0;
    position: absolute;
    top: calc(50% - 10.5px);
    width: 15px;
}
.p-cta__content.--02 .p-cta__subHead--txt::before {
    background: url('../img/cta-illust-contact.png') no-repeat center center/contain;
    height: 15px;
    top: calc(50% - 7.5px);
    width: 18px;
}

.p-cta__head {
    font-weight: 700;
    font-size: 28px;
    line-height: 160%;
    letter-spacing: .06em;
	margin-bottom: 30px;
	text-align: center;
	/*text-decoration: underline;
text-decoration-thickness: 2px;*/
}

.p-cta__txt {
    margin-top: 2px;
    font-weight: 500;
    font-size: 15px;
    line-height: 192%;
    letter-spacing: .05em;
}

.p-cta__btn {
    margin-top: 25px;
}

@media screen and (max-width: 900px) {
    .p-cta {
        display: block;
    }
    
    .p-cta__content {
        width: 100%;
        padding: 40px 20px;
    }
    .p-cta__content.--02 {
        padding: 50px 10px;
    }
    
    .p-cta__content--bg {
        height: auto;
        right: calc(50% - 373px);
        top: 51px;
        width: 746px;
        display: block;
    }
    
    .p-cta__content--bg img {
        height: auto;
        width: 100%;
    }
    
    .p-cta__subHead {
        font-size: 16px;
        line-height: 21px;
        text-align: center;
    }
    
    .p-cta__subHead--txt {
        padding-left: 24px;
    }
    
    .p-cta__subHead--txt::before {
        height: 20px;
        top: calc(50% - 10px);
        width: 14px;
    }
    .p-cta__content.--02 .p-cta__subHead--txt::before {
        height: 14px;
        top: calc(50% - 7px);
        width: 17px;
    }
    
    .p-cta__head {
        font-size: 15.5px;
        margin-top: 5px;
        text-align: center;
    }
    
    .p-cta__txt {
        margin-top: 5px;
        font-size: 13px;
        line-height: 180%;
        text-align: center;
    }
    
    .p-cta__btn {
        margin: 16px auto 0;
    }
}

/*===========================================================================*/
/*  works  */
/*===========================================================================*/
.p-works {
    /*padding-top:150px;*/
	padding-bottom: 100px;
	background: #fff;
}

.p-works__subHead {
    text-align: center;
}

.p-works__head {
    text-align: center;
    padding-bottom: 0;
}

.p-works__head::before {
    display: none;
}

.p-works__txt {
    text-align: center;
    margin-top: 5px;
}

.p-works__slide--wrapper {
    margin-top: 70px;
    position: relative;
}
.p-works__slide--wrapper.--01 {
    margin-top: 60px;
}

.p-works__slide--content {
    width: 62vw;
    margin: 0 4px;
}

.slick-arrow {
    position: absolute;
    width: 35px;
    height: 70px;
    z-index: 3;
    top: calc(50% - 35px);
    text-indent: -9999px;
}

.slick-prev {
    background: url('../img/prev-btn.webp') no-repeat center center/contain;
    right: calc(50% + 31vw + 8px);
}
.slick-next {
    background: url('../img/next-btn.webp') no-repeat center center/contain;
    left: calc(50% + 31vw + 8px);
}

.slide-dots03.p-works__slide--dots {
    margin-top: 20px;
}

.slide-dots04.p-works__slide--dots {
    padding-bottom: 60px;
}

.p-works__slide--dots .slick-dots {
    justify-content: center;
}

.p-works__slide--dots .slick-dots li {
    background-color: #284669;
}

.p-works__slide--dots .slick-dots li.slick-active::before {
    border: #284669 solid 1px;
}

.p-works__wrapper.--txt {
    /*margin-top: 47px;
    padding-bottom: 260px;*/
    border-bottom: 15px solid #FFF;
}
.p-works__wrapper.--txt.--03 {
    border-bottom: none;
}

.p-works__wrapper.--txt .p-works__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.p-works__txts--left {
    width: 515px;
}

.p-works__txts--head {
    font-weight: 700;
    font-size: 23px;
    line-height: 169%;
    letter-spacing: .005em;
}

.p-works__txts--name {
    margin-top: 12px;
    font-weight: 700;
    font-size: 16px;
    line-height: 169%;
    letter-spacing: .005em;
}

.p-works__txts--right {
    width: calc(100% - 515px);
}

.p-works__txts--txt {
    font-weight: 500;
    font-size: 15px;
    line-height: 192%;
    letter-spacing: .05em;
}

.p-works__txts--logos {
    padding-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: calc(100% + 45px);
    left: -45px;
}

.p-works__txts--logos figure {
    display: inline;
    height: 38px;
    margin: 20px 0 0 45px;
}

.p-works__txts--logos figure img {
    height: 100%;
    width: auto;
}

@media screen and (max-width: 900px) {
    .p-works {
        margin-top: 40px;
		margin-bottom: 50px;
    }
    
    .p-works__txt {
        margin-top: 10px;
    }
    
    .p-works__slide--wrapper {
        margin-top: 50px;
    }
    .p-works__slide--wrapper.--01 {
        margin-top: 40px;
    }
    
    .p-works__slide--content {
        width: 84vw;
        margin: 0 2px;
    }
    
    .slick-arrow {
        width: 23px;
        height: 47px;
        top: calc(50% - 23.5px);
    }
    
    .slick-prev {
        right: calc(50% + 42vw + 4px);
    }
    .slick-next {
        left: calc(50% + 42vw + 4px);
    }
    
    .p-works__slide--dots {
        margin-top: 19px;
    }
    
    .p-works__wrapper.--txt {
        margin-top: 23px;
        padding-bottom: 0;
        border-bottom: 15px solid #FFF;

    }
    .p-works__wrapper.--txt.--03 {
        padding-bottom: 80px;
    }
    
    .p-works__wrapper.--txt .p-works__inner {
        display: block;
    }
    
    .p-works__txts--left {
        width: 100%;
    }
    
    .p-works__txts--head {
        font-size: 20px;
        line-height: 165%;
    }
    
    .p-works__txts--name {
        margin-top: 10px;
        font-size: 14px;
    }
    
    .p-works__txts--right {
        width: 100%;
        margin-top: 20px;
    }
    
    .p-works__txts--txt {
        font-size: 13px;
    }
    
    .p-works__txts--logos {
        padding-top: 20px;
        width: calc(100% + 15px);
        left: -15px;
    }
    
    .p-works__txts--logos figure {
        height: 27px;
        margin: 10px 0 0 15px;
    }
}

@media screen and (max-width: 390px) {
    .p-works__slide--content {
        width: 328px;
    }
    
    .slick-prev {
        right: calc(50% + 168px);
    }
    .slick-next {
        left: calc(50% + 168px);
    }
}

/*===========================================================================*/
/*  cta02  */
/*===========================================================================*/
.p-cta02 {
    background: url('../img/cta-bg03.webp') no-repeat center center/cover;
    padding: 90px 30px;
    color: #fff;
}

.p-cta02__head {
    font-weight: 700;
    font-size: 36px;
    line-height: 190.3%;
    letter-spacing: .12em;
    text-align: center;
}

.p-cta02__head--txt {
    padding-left: 42px;
    position: relative;
}
.p-cta02__head--txt::before {
    background: url('../img/cta-illust-download02.png') no-repeat center center/contain;
    content: '';
    height: 38px;
    left: 0;
    position: absolute;
    top: calc(50% - 19px);
    width: 26px;
}

.p-cta02__txt {
    margin-top: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 192%;
    letter-spacing: .05em;
    text-align: center;
}

.p-cta02__btn {
    margin: 25px auto 0;
}

@media screen and (max-width: 900px) {
    .p-cta02 {
        background: url('../img/cta-bg03-sp.webp') no-repeat center center/cover;
        padding: 84px 30px;
    }
    
    .p-cta02__head {
        font-size: 28px;
    }
    
    .p-cta02__head--txt {
        padding-left: 38px;
    }
    .p-cta02__head--txt::before {
        height: 28px;
        top: calc(50% - 14px);
        width: 20px;
    }
    
    .p-cta02__txt {
        font-size: 13px;
        line-height: 180%;
    }
    
    .p-cta02__btn {
        margin: 20px auto 0;
    }
}


/*===========================================================================*/
/*  flow  */
/*===========================================================================*/
.p-flow {
	padding-top: 150px;
    padding-bottom: 180px;
    background-color: #fff;
}

.p-flow .c-txts__left {
    width: 435px;
}
.p-flow .c-txts__right {
    width: calc(100% - 435px);
}

.p-flow__img {
    margin: 40px auto 0;
    max-width: 92.583%;
    padding-left: .36%;
}

.p-flow__list {
    padding-top: 34px;
    display: flex;
    justify-content: space-between;
}

.p-flow__list li {
    width: 18.167%;
-webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
    box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
}

.p-flow__list--head {
    font-weight: 700;
    font-size: 20px;
    line-height: 143%;
    text-align: center;
    letter-spacing: .105em;
}

.p-flow__list--txt {
    margin-top: 15px;
    font-weight: 500;
    font-size: 13px;
    line-height: 184%;
    letter-spacing: -.035em;
}

@media screen and (max-width: 900px) {
    .p-flow {
        margin-top: 80px;
    }
    
    .p-flow .c-txts__left {
        width: 100%;
    }
    .p-flow .c-txts__right {
        width: 100%;
    }
    
    .p-flow__img {
        display: none;
    }
    
    .p-flow__list {
        padding-top: 37px;
        display: block;
        position: relative;
    }
    
    .p-flow__list li {
        width: 100%;
        position: relative;
    }
	
    .p-flow__list_sp {
        padding-top: 37px;
        display: block;
        position: relative;
    }
    
    .p-flow__list_sp li {
        width: 100%;
        position: relative;
		margin-bottom: 30px;
-webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
    box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
    }
	
    .p-flow__list li:nth-of-type(2) {
        margin-top: 31px;
    }
    .p-flow__list li:nth-of-type(3) {
        margin-top: 54px;
    }
    .p-flow__list li:nth-of-type(4) {
        margin-top: 54px;
    }

    .p-flow__list li::before {
        background: url('../img/flow-illust01.webp') no-repeat center center/contain;
        content: '';
        height: 111px;
        left: calc(100% + 18px);
        position: absolute;
        top: -4px;
        width: 109px;
    }
    .p-flow__list li:nth-of-type(2)::before {
        background: url('../img/flow-illust02.webp') no-repeat center center/contain;
        height: 121px;
        left: calc(100% + 26px);
        top: -6px;
        width: 93px;
    }
    .p-flow__list li:nth-of-type(3)::before {
        background: url('../img/flow-illust03.webp') no-repeat center center/contain;
        height: 100px;
        left: calc(100% + 24px);
        top: 12px;
        width: 98px;
    }
    .p-flow__list li:nth-of-type(4)::before {
        background: url('../img/flow-illust04.webp') no-repeat center center/contain;
        height: 105px;
        left: calc(100% + 16px);
        top: 8px;
        width: 113px;
    }
    
    .p-flow__list--head {
        font-size: 18px;
        text-align: left;
    }
    
    .p-flow__list--txt {
        margin-top: 6px;
        font-weight: 500;
        font-size: 12px;
        line-height: 173%;
        letter-spacing: .02em;
    }
}

/*===========================================================================*/
/*  faq  */
/*===========================================================================*/
.p-faq {
    margin-top: 130px;
    position: relative;
    padding-bottom: 160px;
}

.p-faq::before {
    background-color: #F7F2F0;
    content: '';
    height: calc(100% + 150px);
    left: 0;
    position: absolute;
    top: -150px;
    width: 100%;
    z-index: -1;
}

.p-faq__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.p-faq__left {
    width: 338px;
}

.p-faq__right {
    width:100%;
    /*max-width: 726px;*/
	padding-bottom: 80px;
}

.p-faq__list {
    padding-left: 47px;
}

.p-faq__list li {
    margin-top: 60px;
}

.p-faq__question {
    font-weight: 700;
    font-size: 18px;
    line-height: 143.3%;
    letter-spacing: .105em;
    padding-bottom: 25px;
    border-bottom: 1px solid #2f2f2f;
    position: relative;
}

.p-faq__question::before {
    content: 'Q1.';
    left: -47px;
    position: absolute;
    top: 0;
    font-family: 'Red Hat Display';
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: .13em;
}
.p-faq__list li:nth-of-type(2) .p-faq__question::before {
    content: 'Q2.';
}
.p-faq__list li:nth-of-type(3) .p-faq__question::before {
    content: 'Q3.';
}
.p-faq__list li:nth-of-type(4) .p-faq__question::before {
    content: 'Q4.';
}

.p-faq__answer {
    margin-top: 20px;
    font-weight: 500;
    font-size: 15px;
    line-height: 192%;
    letter-spacing: .05em;
}

@media screen and (max-width: 900px) {
    .p-faq {
        margin-top: 80px;
        padding-bottom: 80px;
    }
    
    .p-faq::before {
        height: calc(100% + 80px);
        top: -80px;
    }
    
    .p-faq__inner {
        display: block;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .p-faq__left {
        width: 100%;
    }
    
    .p-faq__right {
        width: 100%;
        max-width: unset;
    }
    
    .p-faq__list {
        padding-left: 0;
    }
    
    .p-faq__list li {
        margin-top: 45px;
    }
    
    .p-faq__question {
        font-size: 16px;
        padding-bottom: 15px;
        padding-left: 38px;
    }
    
    .p-faq__question::before {
        left: 0;
        top: 1px;
        font-size: 17px;
        line-height: 22px;
    }
    
    .p-faq__answer {
        margin-top: 15px;
        font-size: 13px;
        line-height: 180%;
    }
}

/*===========================================================================*/
/*  logos  */
/*===========================================================================*/
.p-logos {
    padding-top: 40px;
    padding-bottom: 40px;
}

.p-logos__inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.p-logos__inner figure {
    width: 189px;
}
.p-logos__inner figure:nth-of-type(2) {
    margin-left: 50px;
    margin-top: -3px;
    width: 231px;
}

@media screen and (max-width: 900px) {
    .p-logos__inner figure {
        width: 133px;
    }
    .p-logos__inner figure:nth-of-type(2) {
        margin-left: 17px;
        margin-top: -2px;
        width: 163px;
    }
}

/*===========================================================================*/
/*  footer  */
/*===========================================================================*/
footer {
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    background-color: #000;
	color: #fff;
}

@media screen and (max-width: 900px) {
    footer {
        font-size: 10px;
        line-height: 13px;
    }
}

/*===========================================================================*/
/*  dlownload  */
/*===========================================================================*/
.p-contact {
    padding-top: 65px;
    padding-bottom: 130px;
}

.p-contact__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.p-contact__left {
    width: calc(100% - 516px);
}

.p-contact .c-subHead {
    letter-spacing: unset;
}

.p-contact__subHead {
    margin-top: 34px;
    font-weight: 700;
    font-size: 21px;
    line-height: 190%;
    letter-spacing: .12em;
}

.p-contact__document--list {
    font-weight: 500;
    font-size: 15px;
    line-height: 192%;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

.p-contact__document--list li {
    position: relative;
    padding-left: 17px;
}

.p-contact__document--list li::before {
    content: '・';
    left: 0;
    position: absolute;
    top: 0;
}

.p-contact__img {
    margin-top: 20px;
}

.p-contact__right {
    width: 474px;
}

.p-contact__form {
    background: #F6F6F6;
    backdrop-filter: blur(10.5px);
    border-radius: 8px;
    padding: 20px 60px 40px;
}

.p-contact__form dt {
    font-weight: 500;
    font-size: 15px;
    line-height: 153.8%;
    letter-spacing: .025em;
    margin-top: 20px;
}

.p-contact__form dt .--required {
    color: #ccc2aa;
    margin-left: 3px;
}

.p-contact__form dd {
    margin-top: 8px;
}

.p-contact__form .p-mv__form--btn {
    width: 318px;
    height: 62px;
}

.p-contact__form .p-mv__form--btn .--small {
    font-size: 11px;
}
.p-contact__form .p-mv__form--btn .--large {
    font-size: 16px;
}

.p-contact__caution {
    margin-top: 30px;
    font-weight: 500;
    font-size: 12px;
    line-height: 192%;
    text-align: right;
    letter-spacing: 0.05em;
}

.p-contact__caution span {
    position: relative;
    padding-left: 12px;
}
.p-contact__caution span::before {
    content: '※';
    left: 0;
    position: absolute;
    top: 0;
}

@media screen and (max-width: 1100px) {
    .p-contact {
        padding-top: 38px;
        padding-bottom: 60px;
    }
    
    .p-contact__inner {
        display: block;
    }
    
    .p-contact__left {
        width: 100%;
    }
    
    .p-contact__subHead {
        margin-top: 20px;
        font-size: 18px;
        line-height: 180%;
    }

    .p-contact__document--list {
        font-size: 13px;
        line-height: 180%;
        margin-top: 3px;
    }
    
    .p-contact__document--list li {
        padding-left: 15px;
    }
    
    .p-contact__img {
        margin-top: 20px;
    }
    
    .p-contact__right {
        width: 100%;
    }
    
    .p-contact__form {
        border-radius: 0;
        padding: 25px 25px 50px;
        position: relative;
        width: calc(100% + 60px);
        left: -30px;
        margin-top: 60px;
    }
    .p-contact__form::before {
        background-color: #f6f6f6;
        content: '';
        height: 100%;
        left: calc(50% - 50vw);
        position: absolute;
        top: 0;
        width: 100vw;
        z-index: -1;
    }
    
    .p-contact__form dt {
        font-size: 14px;
        margin-top: 15px;
    }
    
    .p-contact__form dt .--required {
        margin-left: 4px;
    }
    
    .p-contact__form dd {
        margin-top: 6px;
    }
    
    .p-contact__form .p-mv__form--btn {
        width: 280px;
        height: 53px;
    }
    
    .p-contact__form .p-mv__form--btn .--small {
        font-size: 10px;
    }
    .p-contact__form .p-mv__form--btn .--large {
        font-size: 14px;
    }
    
    .p-contact__caution {
        margin-top: 20px;
        font-size: 10px;
    }
    
    .p-contact__caution span {
        padding-left: 10px;
    }
}


@media screen and (max-width: 700px) {
    .p-mv {
        height: auto;
        display: block;
        padding: 0;
        /*min-height: unset;*/
    height: 360px;
    }
}


@media screen and (max-width: 650px) {
    .p-mv {
        height: auto;
        display: block;
        padding: 0;
        /*min-height: unset;*/
    min-height: 330px;
    }
}


@media screen and (max-width: 600px) {
    .p-mv {
        height: auto;
        display: block;
        padding: 0;
        /*min-height: unset;*/
    min-height: 300px;
    }
}

@media screen and (max-width: 550px) {
    .p-mv {
        height: auto;
        display: block;
        padding: 0;
        /*min-height: unset;*/
    min-height: 250px;
    }
}

@media screen and (max-width: 500px) {
    .p-mv {
        height: auto;
        display: block;
        padding: 0;
        /*min-height: unset;*/
    min-height: 430px;
    }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 500px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

@media screen and (max-width: 430px) {
    .p-mv {
        height: auto;
        display: block;
        padding: 0;
        /*min-height: unset;*/
    min-height: 400px;
    }
}

@media screen and (max-width: 430px) {
    .p-mv {
        height: auto;
        display: block;
        padding: 0;
        /*min-height: unset;*/
    min-height: 380px;
    }
}

@media screen and (max-width: 410px) {
    .p-mv {
        height: auto;
        display: block;
        padding: 0;
        /*min-height: unset;*/
    min-height: 360px;
    }
}
/*===========================================================================*/
/*  contact  */
/*===========================================================================*/
.p-contact__do {
    margin-top: 45px;
    padding: 40px 0;
    border-top: 1px dashed #ccc2aa;
    border-bottom: 1px dashed #ccc2aa;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.p-contact__do--head {
    width: 226px;
    font-weight: 700;
    font-size: 21px;
    line-height: 168.3%;
    letter-spacing: .12em;
}

.p-contact__do--list {
    width: calc(100% - 226px);
    max-width: 425px;
    font-weight: 500;
    font-size: 15px;
    line-height: 192%;
    letter-spacing: .05em;
}

.p-contact__do--list li {
    position: relative;
    padding-left: 18px;
}

.p-contact__do--list li::before {
    content: '・';
    left: 0;
    position: absolute;
    top: 0;
}

.p-contact__head02 {
    margin-top: 40px;
    font-weight: 700;
    font-size: 21px;
    line-height: 190%;
    letter-spacing: .12em;
}

.p-contact__logos {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.p-contact__logos li {
    width: calc(20% + 1px);
    margin-top: -1px;
    margin-left: -1px;
    border: 1px solid #ededed;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-contact__logos li figure {
    display: inline;
    height: 18px;
}

.p-contact__logos li figure img {
    width: auto;
    height: 100%;
}

.p-contact__mail--caution {
    font-weight: 500;
    font-size: 11px;
    line-height: 153.8%;
    margin-top: 10px;
}

.page-lower.--contact .p-contact__form .p-mv__form--btn {
    background-color: #FF9600;
}

@media screen and (max-width: 1250px) {
    .p-contact__logos li {
        width: 137px;
    }
}

@media screen and (max-width: 900px) {
    .page-lower.--contact .p-contact {
        padding-bottom: 5px;
    }

    .p-contact__do {
        margin-top: 25px;
        padding: 20px 0;
        display: none;
    }
    
    .p-contact__do--head {
        width: 100%;
        font-size: 18px;
    }
    
    .p-contact__do--list {
        width: 100%;
        font-size: 13px;
        line-height: 180%;
        margin-top: 10px;
    }
    
    .p-contact__do--list li {
        padding-left: 15px;
    }
    
    .p-contact__head02 {
        margin-top: 25px;
        font-size: 18px;
        line-height: 168%;
    }
    
    .p-contact__logos {
        margin-top: 15px;
    }
    
    .p-contact__logos li {
        width: calc(33.333% + 1px);
        height: 80px;
    }
    
    .p-contact__logos li figure {
        height: 14px;
    }
    
    .p-contact__mail--caution {
        font-size: 10px;
    }
}

/*===========================================================================*/
/*  thanks  */
/*===========================================================================*/
.p-thanks {
    padding-bottom: 80px;
    padding-top: 37px;
}

.p-thanks__subHead {
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    text-align: center;
    color: #CCC2AA;
}

.p-thanks__head {
    margin-top: 4px;
    font-weight: 500;
    font-size: 38px;
    line-height: 165%;
    letter-spacing: .05em;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
}

.p-thanks__head::before {
    background-color: #ccc2aa;
    content: '';
    height: 4px;
    left: calc(50% - 24px);
    position: absolute;
    bottom: 0;
    width: 48px;
}

.p-thanks__txt {
    margin-top: 40px;
    font-weight: 500;
    font-size: 15px;
    line-height: 192%;
    text-align: center;
    letter-spacing: .05em;
}

.p-thanks__txt.--02 {
    font-size: 12px;
    margin-top: 30px;
}

.p-p-thanks__download--list {
    margin: 30px auto 0;
    border-radius: 15px;
    background-color: #f7f7f7;
    padding: 50px 60px;
    max-width: 668px;
    font-weight: 700;
    font-size: 15px;
    line-height: 192%;
    letter-spacing: -0.01em;
}

.p-p-thanks__download--list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p-p-thanks__download--list li:nth-of-type(1) {
    width: 328px;
}
.p-p-thanks__download--list li:nth-of-type(2) {
    width: 180px;
}
.p-p-thanks__download--list li:nth-of-type(3) {
    width: 328px;
    margin-top: 20px;
}
.p-p-thanks__download--list li:nth-of-type(4) {
    width: 180px;
    margin-top: 20px;
}

.p-p-thanks__download--list li a {
    position: relative;
    text-decoration: underline;
    padding-left: 30px;
}
.p-p-thanks__download--list li a::before {
    background: url('../img/icon-download.png') no-repeat center center/contain;
    content: '';
    height: 22px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 22px;
}

.p-thanks__btn {
    margin: 40px auto 0;
}

@media screen and (max-width: 900px) {
    .p-thanks {
        padding-bottom: 60px;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 30px;
    }

    .p-thanks__inner {
        max-width: 380px;
    }
    
    .p-thanks__subHead {
        font-size: 14px;
        line-height: 19px;
    }
    
    .p-thanks__head {
        font-size: 26px;
        line-height: 164%;
        padding-bottom: 20px;
        margin-top: 14px;
    }
    
    .p-thanks__head::before {
        height: 2px;
    }
    
    .p-thanks__txt {
        margin-top: 22px;
        font-size: 13px;
        line-height: 180%;
    }

    .p-thanks__txt.--02 {
        font-size: 10px;
        margin-top: 20px;
    }

    .p-p-thanks__download--list {
        margin: 25px auto 0;
        padding: 28px;
        max-width: 340px;
        font-size: 13px;
    }
    
    .p-p-thanks__download--list {
        display: block;
    }
    .p-p-thanks__download--list li:nth-of-type(1) {
        width: 100%;
    }
    .p-p-thanks__download--list li:nth-of-type(2) {
        width: 100%;
        margin-top: 13px;
    }
    .p-p-thanks__download--list li:nth-of-type(3) {
        width: 100%;
        margin-top: 13px;
    }
    .p-p-thanks__download--list li:nth-of-type(4) {
        width: 100%;
        margin-top: 13px;
    }
    
    .p-p-thanks__download--list li a {
        position: relative;
        text-decoration: underline;
        padding-left: 24px;
    }
    .p-p-thanks__download--list li a::before {
        height: 19px;
        top: 4px;
        width: 19px;
    }
    
    .p-thanks__btn {
        margin: 22px auto 0;
    }
}








/* 共通
------------------------------------*/


/* 共通設定
------------------------------------*/
.slick-list {
  height: 100%;
}

.slick-track {
  height: 100%;
}

.slide-arrow {
  width: 54px;
  height: 54px;
  background-color: #fff;
  border: 2px solid #48BAB2;
  border-radius: 999px;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slide-arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: #48BAB2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.slide-arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.slide-arrow:focus, .slide-arrow:hover {
  background-color: #48BAB2;
  border-color: #48BAB2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slide-arrow:focus::before, .slide-arrow:hover::before {
  background-color: #fff;
}

.prev-arrow {
  right: 117px;
}
.prev-arrow::after {
  border-bottom: 2px solid #48BAB2;
  border-left: 2px solid #48BAB2;
  left: 19px;
}
.prev-arrow:focus::after, .prev-arrow:hover::after {
  border-color: #fff;
}

.next-arrow {
  right: 48px;
}
.next-arrow::after {
  border-top: 2px solid #48BAB2;
  border-right: 2px solid #48BAB2;
  left: 25px;
}
.next-arrow:focus::after, .next-arrow:hover::after {
  border-color: #fff;
}

/* topMv
------------------------------------*/
.slick-topMv .slide-arrow {
  bottom: 24px;
  background-color: transparent;
}
.slick-topMv .slide-arrow::before {
  background-color: #fff;
}
.slick-topMv .slide-arrow::after {
  border-color: #fff;
}
.slick-topMv .slide-arrow:focus, .slick-topMv .slide-arrow:hover {
  background-color: #48BAB2;
}
.slick-topMv .prev-arrow {
  right: 117px;
}
.slick-topMv .prev-arrow::after {
  left: 17px;
}
.slick-topMv .next-arrow::after {
  left: 25px;
}
.slick-topMv .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 48px;
  right: 250px;
}
.slick-topMv .slick-dots li {
  width: 10px;
  height: 2px;
}
.slick-topMv .slick-dots li button {
  background-color: #FAFAFA;
  font-size: 0;
  width: 10px;
  height: 100%;
  display: block;
}
.slick-topMv .slick-dots li button:before {
  content: none;
}
.slick-topMv .slick-dots li button:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.slick-topMv .slick-dots li.slick-active {
  background-color: #FAFAFA;
}
.slick-topMv .slick-dots li.slick-active button {
  background-color: #48BAB2;
  -webkit-animation-name: progress;
          animation-name: progress;
  -webkit-animation-duration: 4.775s;
          animation-duration: 4.775s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.slideCounter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  bottom: 28px;
  right: 206px;
}
.slideCounter__current, .slideCounter__total {
  width: 2.25rem;
}
.slideCounter__current::before, .slideCounter__total::before {
  content: "0";
}
.slideCounter__total {
  margin-left: 5.4rem;
}

/* caseStudy
------------------------------------*/
.slick-caseStudy .slide-arrow {
  width: 64px;
  height: 64px;
  top: -88px;
}
.slick-caseStudy .prev-arrow {
  right: 178px;
}
.slick-caseStudy .prev-arrow::after {
  left: 22px;
}
.slick-caseStudy .next-arrow {
  right: 98px;
}
.slick-caseStudy .next-arrow::after {
  left: 30px;
}
.slick-caseStudy .slick-slide {
  margin: 0 1rem;
}

/* event
------------------------------------*/
.slick-eventList .slide-arrow {
  width: 64px;
  height: 64px;
  top: 40px;
}
.slick-eventList .prev-arrow {
  right: 178px;
}
.slick-eventList .prev-arrow::after {
  left: 22px;
}
.slick-eventList .next-arrow {
  right: 98px;
}
.slick-eventList .next-arrow::after {
  left: 30px;
}
.slick-eventList .slick-slide {
  margin: 0 1rem;
}
.slick-eventList .slick-list {
  padding-right: 200px;
}

/* sidebar
------------------------------------*/

@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}

@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
          animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
background-color: #F7F2F0;
}

main {
  display: block;
}

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

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

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

dd {
  margin-left: 0;
}

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

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

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

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  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;
}

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;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

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;
}

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;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

body {
  line-height: 1.8;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body::-webkit-scrollbar {
  display: none;
}
body.is-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}
body a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

*:focus {
  outline: none;
}

.single-content .main-row h1,
.single-content .main-row h2,
.single-content .main-row h3,
.single-content .main-row h4,
.single-content .main-row h5,
.single-content .main-row h6 {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}
.single-content .main-row h1 {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 2.375rem;
}
.single-content .main-row .wp-block-columns + h1 {
  margin-top: 4.25rem;
}
.single-content .main-row h2 {
  font-size: 1.25rem;
  line-height: 1.5;
  padding-bottom: 0.4375rem;
  border-bottom: 2px solid #C8EAE8;
  position: relative;
  padding-top: 5rem;
}
.single-content .main-row h2::before {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background-color: #48BAB2;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.single-content .main-row h1 + h2 {
  padding-top: 3.125rem;
}
.single-content .main-row p + h3 {
  padding-top: 2.5rem;
}
.single-content .main-row p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-top: 0.9375rem;
}
.single-content .main-row p + p {
  margin-top: 1.5rem;
}
.single-content .main-row p strong {
  font-weight: 700;
}
.single-content .main-row h1 + p {
  margin-top: 2.0625rem;
}

.wp-block-separator {
  height: 1px !important;
}

.wp-block-columns {
  margin-top: 3rem;
}
.wp-block-columns .wp-block-column {
  width: 100%;
}
.wp-block-columns .wp-block-column .wp-block-column {
  margin-top: 0;
}

.wp-block-emanon-premium-blocks-broken-grid {
  padding: 2.5rem !important;
  border: 1px solid #D9D9D9;
  margin-top: 7rem;
}
.wp-block-emanon-premium-blocks-broken-grid p {
  margin-top: 0.9375rem;
}
.wp-block-emanon-premium-blocks-broken-grid p + p {
  margin-top: 1.5rem;
}

.epb-broken-grid__media, .epb-broken-grid__content {
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 100% !important;
      -ms-flex: 0 0 100% !important;
          flex: 0 0 100% !important;
  max-width: 100% !important;
}
.epb-broken-grid__media {
  text-align: center;
}
.epb-broken-grid__media img {
  width: auto !important;
  max-width: 260px;
}
.epb-broken-grid__content .epb-advance-headling__text-wrapper {
  margin-top: 1.9375rem;
  margin-left: 0;
}
.epb-broken-grid__content--inner {
  padding: 0 !important;
}

.wp-block-buttons {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.9375rem !important;
}

.wp-block-button__link {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #fff;
  background-color: #48BAB2;
  padding: 0.875rem 3.125rem;
  border-radius: 999px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  top: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.wp-block-button__link::before, .wp-block-button__link::after {
  content: "";
  display: block;
  position: absolute;
}
.wp-block-button__link::before {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background-color: #fff;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wp-block-button__link::after {
  width: 4px;
  height: 4px;
  border-top: 1px solid #48BAB2;
  border-right: 1px solid #48BAB2;
  top: 50%;
  right: 26px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.wp-block-button__link:focus, .wp-block-button__link:hover {
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  top: 2px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.wp-block-emanon-premium-blocks-testimonial {
  padding: 1.875rem;
  border: 1px solid #D9D9D9;
  margin-top: 3rem;
}
.wp-block-emanon-premium-blocks-testimonial .epb-testimonial__headling {
  padding: 0 !important;
  margin: 0 !important;
}

.epb-testimonial__icon figure {
  width: 120px;
  margin-right: auto;
  margin-left: auto;
}
.epb-testimonial__icon figure img {
  width: 100%;
  height: auto;
}

.bread-crumb {
  width: 67.636%;
  font-size: 0.875rem;
  margin-top: 1rem;
}
.bread-crumb span a:focus, .bread-crumb span a:hover {
  color: #48BAB2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bread-crumb span + span {
  padding-left: 1.125rem;
  position: relative;
}
.bread-crumb span + span::before {
  content: "";
  display: inline-block;
  width: 4.84px;
  height: 4.84px;
  border-top: 1px solid #48BAB2;
  border-right: 1px solid #48BAB2;
  position: absolute;
  top: 4px;
  left: 4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

_::-webkit-full-page-media,
_:future,
:root .bread-crumb span + span::before {
  top: 8px;
}

.btn {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  background-color: #FF9600;
  padding: 1.25rem 5.5rem 1.25rem 5.3125rem;
  border-radius: 999px;
  font-weight: bold;
  position: relative;
}

.btn2 {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #fff;
  background-color: #FEAD10;
  padding: 1rem 6.5rem 1rem 6.3125rem;
  border-radius: 999px;
  font-weight: bold;
  position: relative;
}

span.contact {
  font-size: 1rem;
    display: flex;
}

.btn--header {
  font-size: 15px;
  padding: 0.875rem 0;
  width: 240px;
  text-align: center;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  top: 0;
}
.btn--topMv {
  font-size: 0.875rem;
  padding: 0.875rem 3.5rem 0.875rem 3.5rem;
  -webkit-box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 4px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 4px 10px rgba(0, 0, 0, 0.25);
}
.btn--products {
  font-size: 0.8125rem;
  padding: 0.625rem 4.25rem 0.625rem 3.3125rem;
}
.btn--products_sub {
  font-size: 0.8125rem;
  padding: 0.625rem 4.25rem 0.625rem 3.3125rem;
}
@media screen and (max-width: 1240px) {
.btn--products_sub {
  font-size: 0.8125rem;
  padding: 0.625rem 3.6rem 0.625rem 3.6rem;
}
}
.btn--event {
  padding: 1rem 3.6875rem 1rem 2.625rem;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn--contact {
  width: 100%;
}
.btn--big {
  padding: 1.25rem 4.625rem 1.25rem 4.125rem;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn--w100 {
  width: 100%;
}
.btn--pageFeature {
  width: 254px;
  max-width: 100%;
  font-size: 0.875rem;
  padding: 1.0625rem 0.25rem;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn--pickup {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn--404 {
  padding: 1.25rem 5.375rem;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn::before, .btn::after {
  content: "";
  display: block;
  position: absolute;
}
.btn::before {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background-color: #fff;
  top: 50%;
  right: 31px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn::after {
  width: 4px;
  height: 4px;
  border-top: 1px solid #48BAB2;
  border-right: 1px solid #48BAB2;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.btn:focus, .btn:hover {
  color: #fff;
}

.btn2::before, .btn2::after {
  content: "";
  display: block;
  position: absolute;
}
.btn2::before {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background-color: #fff;
  top: 50%;
  right: 31px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn2::after {
    width: 7px;
    height: 7px;
    border-top: 2px solid #48BAB2;
    border-right: 2px solid #48BAB2;
    top: 50%;
    right: 41px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
.btn2:focus, .btn2:hover {
  color: #fff;
}

.btn--push {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  top: 0;
}
.btn--push:focus, .btn--push:hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: none;
          box-shadow: none;
  top: 2px;
}

.btn--header::before {
  width: 14px;
  height: 14px;
  right: 20px;
}
.btn--header::after {
  right: 26px;
}

.btn--topMv::before {
  right: 18px;
}
.btn--topMv::after {
  right: 27px;
}

.btn--products::before {
  width: 14px;
  height: 14px;
  right: 20px;
}
.btn--products::after {
  right: 26px;
}

.btn--products_sub::before {
  width: 14px;
  height: 14px;
  right: 20px;
}
.btn--products_sub::after {
  right: 26px;
}

.btn--eco {
  font-size: 0.75rem;
  padding: 0.875rem 4.9375rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.btn--eco::before {
  width: 14px;
  height: 14px;
  right: 20px;
}
.btn--eco::after {
  right: 26px;
}

.btn--brokenGrid {
  font-size: 0.75rem;
  padding: 0.875rem 3.125rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.btn--brokenGrid::before {
  width: 14px;
  height: 14px;
  right: 20px;
}
.btn--brokenGrid::after {
  right: 26px;
}

.contact-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.625rem 0;
  border-top: 1px solid #D5DEDE;
  border-bottom: 1px solid #D5DEDE;
}
.contact-list__item {
  width: 377px;
  max-width: 100%;
  padding: 2.6875rem 0;
  padding-right: 4.9375rem;
}
.contact-list__item:not(:first-child) {
  border-left: 1px solid #D5DEDE;
  padding-right: 0;
  padding-left: 4.9375rem;
}
.contact-list__text {
  min-height: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  text-align: center;
}
.contact-list__btnWrapper {
  text-align: center;
  margin-top: 1.625rem;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.footer {
  height: 80px;
  background-color: #FAFAFA;
}

.copyright {
  text-align: center;
}

.floating {
  visibility: hidden;
  width: 56px;
  position: fixed;
  top: 30vh;
  right: 0;
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.floating.is-show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.floating-list__link {
  width: 100%;
  display: block;
  padding: 41px 12px 16px;
  font-size: 16px;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.floating-list__link::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: transparent no-repeat center center/contain;
  position: absolute;
  top: 18px;
  left: 54%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.floating-list__link--document {
  background-color: #343a46;
}
.floating-list__link--document::before {
  background-image: url("../img/common/icon/icon_16.png");
}
.floating-list__link--quote {
  background-color: #48BAB2;
}
.floating-list__link--quote::before {
  background-image: url("../img/common/icon/icon_17.png");
}
.floating-list__link:focus, .floating-list__link:hover {
  color: #fff;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.floating--sp {
  width: 100%;
  top: auto;
  right: auto;
  bottom: 3%;
  padding: 0 20px;
  -webkit-transform: translate(0, 80px);
          transform: translate(0, 80px);
}
.floating--sp.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.floating--sp .floating-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.floating--sp .floating-list .floating-list__item {
  width: 50%;
  max-width: 152px;
}
.floating--sp .floating-list .floating-list__item:not(:first-child) {
  margin-left: 16px;
}
.floating--sp .floating-list .floating-list__link {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 2px 12px;
  height: 48px;
  line-height: 48px;
}
.floating--sp .floating-list .floating-list__link::before {
  top: 50%;
  left: 22px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.header {
  width: 100%;
  height: 86px;
  background-color: #fff;
  position: fixed;
  top: 0;
}
.header.is-up {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}
.header.is-down {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}
.header.is-fixed.is-up, .header.is-fixed.is-down {
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-86px);
            transform: translateY(-86px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-86px);
            transform: translateY(-86px);
  }
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-86px);
            transform: translateY(-86px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-86px);
            transform: translateY(-86px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header-content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  display: block;
  width: 137.72px;
  height: 35px;
}

.global-nav {
  height: 100%;
}
.global-nav__list {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.global-nav__item {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.global-nav__item:not(:first-child) {
  margin-left: 2.0625rem;
}
.global-nav__item:last-child {
  margin-left: 0.4rem;
}
.global-nav__item:focus .nav-name, .global-nav__item:hover .nav-name {
  color: #48BAB2;
}
.global-nav__item:focus .nav-name::after, .global-nav__item:hover .nav-name::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.global-nav__item:focus .nav-icon::after, .global-nav__item:hover .nav-icon::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.global-nav__link {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  line-height: 2.5;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.global-nav__link:focus, .global-nav__link:hover {
  color: #48BAB2;
}

.nav-name {
  position: relative;
}
.nav-name::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #48BAB2;
  position: absolute;
  bottom: 3px;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-icon {
  padding-right: 0.875rem;
  position: relative;
}
.nav-icon::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 1.5px solid #48BAB2;
  border-right: 1.5px solid #48BAB2;
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.global-nav__item:focus .modal, .global-nav__item:hover .modal {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.global-nav__item:focus .btn--header, .global-nav__item:hover .btn--header {
  opacity: 0.7;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: none;
          box-shadow: none;
  top: 2px;
}

.drawer {
  display: none;
}
.drawer:focus, .drawer:hover {
  background-color: transparent;
  border-color: transparent;
}

.drawer-menu {
  display: block;
  position: relative;
  width: 24px;
  height: 9px;
  cursor: pointer;
}
.drawer-menu__icon {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
}
.drawer-menu__icon--top {
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-menu__icon--top.is-active {
  top: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-menu__icon--bottom {
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-menu__icon--bottom.is-active {
  bottom: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.drawer-nav {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  overflow: scroll;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-nav.is-active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-nav__list {
  width: 335px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 2.3125rem;
}
.drawer-nav__item {
  width: 88.955%;
  margin-right: auto;
  margin-left: auto;
}
.drawer-nav__item:not(:first-child) {
  margin-top: 0.75rem;
}
.drawer-nav__item:last-child {
  padding-bottom: 9.375rem;
}
.drawer-nav__item--contact {
  margin-top: 1.125rem;
}
.drawer-nav__item:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.drawer-nav__item:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.drawer-nav__item:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.drawer-nav__item:nth-child(4) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.drawer-nav__item:nth-child(5) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.drawer-nav__item:nth-child(6) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.drawer-nav__item:nth-child(7) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.drawer-nav__item:nth-child(8) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.drawer-nav__listTitle {
  display: block;
}
.drawer-nav__listTitle:focus, .drawer-nav__listTitle:hover {
  color: #000;
}
.drawer-nav__listTitle.is-active .drawer-nav__icon::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-nav__name {
  font-size: 1.25rem;
  line-height: 1.602;
  font-weight: 700;
}

.drawer-contactList {
  border-top: 1px solid #F0F0F0;
}
.drawer-contactList__item {
  margin-top: 2.3125rem;
}
.drawer-contactList__text {
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
}
.drawer-contactList__btnWrapper {
  margin-top: 1.5rem;
  text-align: center;
}

.drawer-subList {
  display: none;
  margin-top: 0.625rem;
  padding-bottom: 1.125rem;
}
.drawer-subList__item:not(:first-child) {
  margin-top: 0.625rem;
}
.drawer-subList__link {
  display: block;
  font-size: 0.875rem;
  line-height: 1.6021428571;
  font-weight: 700;
  letter-spacing: 0.015em;
}
.drawer-subList__link:focus, .drawer-subList__link:hover {
  color: #000;
}

/* 全ページ共通
------------------------------------*/
.inner {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 100px;
}
.inner--narrow {
  padding: 0 48px;
}

.max-m {
  display: none;
}

.max-s {
  display: none;
}

.max-s2 {
  display: none;
}

/* セクション（トップページ）
------------------------------------*/
.section {
  padding: 3.75rem 0;
}
.section--service {
  padding: 5.5rem 0;
}
.section--products {
  padding: 6.875rem 0;
}
.section--event {
  padding: 4.625rem 0 11.125rem;
}
.section--contact {
  background-color: #FAFAFA;
  padding: 6.9375rem 0 3.75rem;
}

.section-title {
  text-align: center;
}
.section-title__sub {
  display: block;
  font-size: 1.5rem;
  line-height: 1.04;
  letter-spacing: 0.07em;
  color: #8C8C8C;
  font-family: "Cormorant Garamond", serif;
  padding-bottom: 1.375rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.section-title__sub::after {
  content: "";
  display: block;
  width: 24px;
  height: 4px;
  background-color: #F0F0F0;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section-title__main {
  font-size: 2.25rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
}
.section-title--left {
  text-align: left;
  padding-left: 2.75rem;
}
.section-title--left .section-title__sub::after {
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.section-description {
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 1.875rem;
}

.section--side {
  position: relative;
}
.section--side .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.section--side .section-lead {
  min-width: 300px;
  margin-left: 2.75rem;
}
.section--side .section-title {
  text-align: left;
}
.section--side .section-title__sub::after {
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.section--side .section-description {
  text-align: left;
}
.section--products .section-lead {
  min-width: 300px;
}
.section--event .section-lead {
  min-width: 232px;
  margin-bottom: -6.875rem;
}

.section-bg {
  background-color: #FAFAFA;
  width: 100vw;
  height: 584px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-bg-pro {
  background-color: #FAFAFA;
  width: 100vw;
  height: 828px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
    z-index: -1;
}

.section-content {
  margin-top: 3rem;
}

/* セクション（下層ページ）
------------------------------------*/
.pageSection-title {
  font-size: 2.25rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
}

.pageSection-text {
  font-size: 0.875rem;
  line-height: 1.68;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 2.1875rem;
}

/* ２カラムレイアウト
------------------------------------*/
.row-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.125rem;
  padding-bottom: 8.75rem;
}

.main-row {
  width: calc(100% - 310px - 5rem);
}

.sidebar {
  width: 310px;
  margin-left: 5rem;
}

.modal {
  width: 100vw;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
}

.modal-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2.3125rem 0;
}
.modal-content--contact {
  padding: 3.65625rem 0;
}

.modal-title__sub {
  display: block;
  font-size: 1.25rem;
  line-height: 1.04;
  color: #8C8C8C;
  font-family: "Cormorant Garamond", serif;
  padding-bottom: 1.375rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.modal-title__sub::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #F0F0F0;
  position: absolute;
  bottom: 0;
  left: 0;
}
.modal-title__main {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.modal-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 4.9375rem;
}
.modal-list__item:not(:first-child) {
  margin-left: 2.125rem;
}
.modal-list__link {
  display: block;
}
.modal-list__link:focus .modal-listTitle, .modal-list__link:hover .modal-listTitle {
  color: #000;
}
.modal-list__link:focus .modal-listTitle::after, .modal-list__link:hover .modal-listTitle::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.modal-list__link:focus .modal-imgWrapper img, .modal-list__link:hover .modal-imgWrapper img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.modal-list--contact .modal-list__item {
  width: 298px;
}
.modal-list--contact .modal-list__item:not(:first-child) {
  margin-left: 3.375rem;
}

.modal-listTitle {
  line-height: 1.5;
  font-weight: 700;
  display: inline-block;
  margin-top: 0.875rem;
  position: relative;
}
.modal-listTitle::after {
  content: "";
  display: block;
  width: 95%;
  height: 1px;
  background-color: #48BAB2;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal-listTitle__mark {
  margin-left: 0.625rem;
  position: relative;
}
.modal-listTitle__mark::before, .modal-listTitle__mark::after {
  content: "";
  display: block;
  position: absolute;
}
.modal-listTitle__mark::before {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background-color: #48BAB2;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal-listTitle__mark::after {
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  left: 7px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.modal-imgWrapper {
  width: 250px;
  height: 128px;
  overflow: hidden;
}

.modal-imgWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.modal-imgWrapper_sub {
  width: 200px;
  height: 128px;
  overflow: hidden;
}

.modal-imgWrapper_sub img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.modal-list__link:focus .modal-imgWrapper_sub img, .modal-list__link:hover .modal-imgWrapper_sub img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.modal-text {
  min-height: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  text-align: center;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-btnWrapper {
  text-align: center;
  margin-top: 1.1875rem;
}

.modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* フロントページ
------------------------------------*/
.topMv {
  height: 40rem;
  margin-top: 86px;
  position: relative;
}

.topMv-imgList {
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.topMv-imgList__item {
  width: 100%;
  height: 40rem;
}

.topMv-lead {
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 4.875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.topMv-lead__sub, .topMv-lead__main span {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.topMv-lead__sub {
  font-size: 1.5rem;
  line-height: 1.08;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
.topMv-lead__main {
  font-size: 3.3125rem;
  line-height: 1.5969811321;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: -0.01em;
  margin-top: 1rem;
}
.topMv-lead__main--serif {
  font-family: "Noto Serif JP", serif;
}
.topMv-lead__main span {
  border-bottom: 3px solid #fff;
}
.topMv-lead__btnWrapper {
  margin-top: 1.875rem;
}

.topMv-imgWrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.topMv-imgWrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}
.topMv-imgWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.topMv-bg {
  width: 410px;
  max-width: 100%;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  right: 0;
  bottom: 0;
}

/* 下層ページ
------------------------------------*/
.pageMv {
  margin-top: 86px;
}
.pageMv > .inner {
  position: relative;
}

.pageMv-lead {
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 140px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pageMv-lead__main {
  font-size: 2.8125rem;
  line-height: 1.5971111111;
  letter-spacing: 0.02em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
}
.pageMv-lead__main span {
  padding: 0.25rem 0;
  border-bottom: 2px solid #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.pageMv-lead__sub {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 2rem;
}

.pageMv-imgWrapper {
  width: 100vw;
  height: 19.375rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}
.pageMv-imgWrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}
.pageMv-imgWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-404-content {
  width: 100%;
  margin-top: calc(86px + 1.25rem);
  padding: 11.25rem 0 11.875rem;
}

.page-404-title {
  font-size: 4.375rem;
  line-height: 1.5;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
  text-align: center;
}

.page-404-text {
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 3.625rem;
}

.page-404-btnWrapper {
  text-align: center;
  margin-top: 2.625rem;
}

.pageLead {
  margin-top: 2.6875rem;
  margin-left: 3.125rem;
}

.pageLead-text {
  font-size: 2.25rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  font-family: "Roboto", sans-serif;
  text-align: center;
  margin-top: 4.5625rem;
  margin-left: 0.375rem;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  margin-right: 0.375rem;
}
.wp-pagenavi .page,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .first,
.wp-pagenavi .last {
  border: 1px solid #48BAB2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wp-pagenavi .page:focus, .wp-pagenavi .page:hover,
.wp-pagenavi .previouspostslink:focus,
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:focus,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .first:focus,
.wp-pagenavi .first:hover,
.wp-pagenavi .last:focus,
.wp-pagenavi .last:hover {
  color: #fff;
  background-color: #48BAB2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wp-pagenavi .current {
  color: #fff;
  background-color: #48BAB2;
}
.wp-pagenavi .extend {
  color: #48BAB2;
}
.wp-pagenavi .previouspostslink:focus::before, .wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:focus::before,
.wp-pagenavi .nextpostslink:hover::before {
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wp-pagenavi .previouspostslink:focus:after, .wp-pagenavi .previouspostslink:hover:after,
.wp-pagenavi .nextpostslink:focus:after,
.wp-pagenavi .nextpostslink:hover:after {
  border-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wp-pagenavi .previouspostslink {
  position: relative;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}
.wp-pagenavi .previouspostslink::before, .wp-pagenavi .previouspostslink::after {
  content: "";
  display: block;
  position: absolute;
}
.wp-pagenavi .previouspostslink::before {
  width: 10px;
  height: 1.5px;
  background-color: #000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wp-pagenavi .previouspostslink::after {
  width: 7px;
  height: 7px;
  border-bottom: 1.5px solid #000;
  border-left: 1.5px solid #000;
  top: 50%;
  left: 19px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.wp-pagenavi .nextpostslink {
  position: relative;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.wp-pagenavi .nextpostslink::before, .wp-pagenavi .nextpostslink::after {
  content: "";
  display: block;
  position: absolute;
}
.wp-pagenavi .nextpostslink::before {
  width: 10px;
  height: 1.5px;
  background-color: #000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wp-pagenavi .nextpostslink::after {
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #000;
  border-right: 1.5px solid #000;
  top: 50%;
  right: 19px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.pageFeature {
  margin-top: 3.9375rem;
}

.pageFeature-content {
  padding: 4.5rem 4.875rem;
  border-radius: 20px;
  background-color: #FAFAFA;
  -webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
  box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
}

.pageFeature-lead {
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
  margin-bottom: 1em;
}

.pageFeature-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 2.6875rem;
}

.pageFeature-lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 2.6875rem;
}

.pageFeature-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 5.5625rem 0 0;
  counter-increment: pageFeature;
  position: relative;
}

.pageFeature-list__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 6.5625rem 0 0;
  counter-increment: pageFeature;
  position: relative;
}


.pageFeature-list__item::before {
  content: "0" counter(pageFeature);
  font-size: 3.5rem;
  line-height: 1.04;
  color: #E5E5E5;
  font-weight: 700;
  font-family: "HK Grotesk", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
}

.pageFeature-list__items::before {
  content: "0" counter(pageFeature);
  font-size: 4rem;
  line-height: 1.04;
  color: #E5E5E5;
  font-weight: 700;
  font-family: "HK Grotesk", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
}



/*PCでは無効（改行しない）*/
.sma{
    display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
.sma{
        display: block;
    }
}

/*PCでは無効（改行しない）*/
.lag{
      display: block;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
    .lag{
    display: none;  
    }
}

@media screen and (max-width:768px) {
.pageFeature-list__item:nth-child(n+5) {
margin: 0 0 0 7px;
}

.pageFeature-list__items:nth-child(n+3) {
margin: 0 0 0 7px;
}
}

.pageFeature-list__text {
  font-size: 0.89rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-align: center;
  margin-top: 1.5rem;
}

.pageFeature-list__texts{
  font-size: 0.89rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-align: center;
  margin-top: 2.1rem;
}


.pageFeature-list__imgWrapper {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.pageFeature-list__imgWrappers {
  text-align: center;
  width: 80%;
  margin: 8px auto 0;
}

.pageFeature-list__btnWrapper {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.pickupList {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}
.pickupList__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.pickupList__link {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.pickupList__link:focus, .pickupList__link:hover {
  color: #000;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pickupList__link:focus .pickupList-imgWrapper, .pickupList__link:hover .pickupList-imgWrapper {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pickupList-title {
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 2.5rem;
}
.pickupList-title--textLeft {
  text-align: start;
}

.pickupList-imgWrapper {
  padding-top: 64.474%;
  position: relative;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.pickupList-imgWrapper--sidebar {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.pickupList-imgWrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.pickupList-category {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 1.125rem;
  position: absolute;
  top: 0;
  right: 0;
}

.pickup-btnWrapper {
  text-align: center;
  margin-top: 3.5rem;
}

/* 共通
------------------------------------*/
.serviceDetail {
  margin-top: 3.4375rem;
	position: relative;
}
.serviceDetail_10 {
  margin-top: 4.4375rem;
	position: relative;
}
.serviceDetail4 {
  margin-top: 3.4375rem;
	background: #F7F2F0;
padding-bottom: 6.4375rem;
padding-top:6.4375rem;
}
.serviceDetail__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /*-webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;*/
      flex-direction: column;
}

.serviceDetail__header_sub1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /*-webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;*/
      flex-direction:row;
}

.serviceDetail__header4 {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.serviceDetail__number {
  font-size: 8.6rem;
  line-height: 1.04;
  color:rgba(0,0,0,0);
  font-weight: 700;
  font-family: "HK Grotesk", sans-serif;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  /*padding-right: 2.3125rem;
  border-right: 2px solid #FF9601;*/
}

.serviceDetail__number_wh {
  font-size: 7.5rem;
  line-height: 1.04;
  color:rgba(255,255,255,1);
  font-weight: 700;
  font-family: "HK Grotesk", sans-serif;
  /*padding-right: 2.3125rem;
  border-right: 2px solid #FF9601;*/
}

@media screen and (max-width: 910px) {
.serviceDetail__number_wh {
  font-size: 7rem;
  line-height: 1.04;
  color:rgba(255,255,255,1);
  font-weight: 700;
  font-family: "HK Grotesk", sans-serif;
  /*padding-right: 2.3125rem;
  border-right: 2px solid #FF9601;*/
}
}

@media screen and (max-width: 868px) {
.serviceDetail__number_wh {
  font-size: 6.5rem;
  line-height: 1.04;
  color:rgba(255,255,255,1);
  font-weight: 700;
  font-family: "HK Grotesk", sans-serif;
  /*padding-right: 2.3125rem;
  border-right: 2px solid #FF9601;*/
}
}

@media screen and (max-width: 800px) {
.serviceDetail__number_wh {
  font-size: 6.2rem;
  line-height: 1.04;
  color:rgba(255,255,255,1);
  font-weight: 700;
  font-family: "HK Grotesk", sans-serif;
  /*padding-right: 2.3125rem;
  border-right: 2px solid #FF9601;*/
}
}

@media screen and (max-width: 767px) {
.serviceDetail__number_wh {
  font-size: 7rem;
  line-height: 1.04;
  color:rgba(255,255,255,1);
  font-weight: 700;
  font-family: "HK Grotesk", sans-serif;
  /*padding-right: 2.3125rem;
  border-right: 2px solid #FF9601;*/
}
}

@media screen and (max-width: 500px) {
.serviceDetail__number_wh {
  font-size: 6rem;
  line-height: 1.04;
  color:rgba(255,255,255,1);
  font-weight: 700;
  font-family: "HK Grotesk", sans-serif;
  /*padding-right: 2.3125rem;
  border-right: 2px solid #FF9601;*/
}
}

.serviceDetail__title {
  font-size: 2.1rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.06em;
  /*margin-left: 2.75rem;*/
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
}

.serviceDetail__title_wh {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.06em;
  /*margin-left: 2.75rem;*/
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
}

.plan_text {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.06em;
  /*margin-left: 2.75rem;*/
  font-family: "Noto Sans JP", sans-serif !important;
  text-align: center;
}
span.text_deco{
  background: linear-gradient(transparent 75%, #FFC045 75%);
  display: inline;
}

.serviceDetail__title4 {
  font-size: 2.87777rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
  text-align: center;
	margin-bottom: 20px;
}
.serviceDetail__body {
  margin-top: 3.9375rem;
}

.serviceDetail__body_AAA {
  margin-top: 3.9375rem;
      width: 100%;
    display: flex;
    justify-content: center;
	flex-direction: column;
}


.serviceDetail__img {
  margin-top: 3.125rem;
  -webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding:3rem 3.5rem 3rem 3.5rem;
  background: #fff;
}

.serviceDetail5__img {
  margin-top: 3.125rem;
  /*-webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);*/
  border-radius: 8px;
  padding:2.75rem 3.5rem;
  background: #fff;
}

.serviceDetail-list {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.serviceDetail-list_work {
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}
.serviceDetail-list__item {
  padding-top: 1rem;
}
.serviceDetail-list__item:not(:first-child) {
  margin-top: 7.5625rem;
}

.serviceDetail-contentsList {
  margin-top: 3.5625rem;
}
.serviceDetail-contentsList__item {
  font-size: 1.3125rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-left: 2.1875rem;
  position: relative;
}
.serviceDetail-contentsList__item::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: transparent url("../img/common/top/list.svg") no-repeat center center/contain;
  position: absolute;
  top: -6px;
  left: -7px;
}
.serviceDetail-contentsList__item:not(:first-child) {
  margin-top: 1.375rem;
}
.serviceDetail-contentsList__item strong {
  color: #48BAB2;
  text-decoration: underline;
}

.serviceDetail-text {
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
	font-weight: bold;
}
.serviceDetail-text strong {
  font-weight: 700;
  color: #284669;
  text-decoration: underline;
}

.serviceDetail-text_sub1 {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    font-weight: bold;
    left: 70px;
    position: relative;
}
.serviceDetail-text_sub1 strong {
  font-weight: 700;
  color: #284669;
  text-decoration: underline;
}

.serviceDetail-imgWrapper img {
  width: 100%;
}

.serviceDetail-text:not(:first-child) {
  margin-top: 1.5625rem;
}

.serviceDetail-text_sub1:not(:first-child) {
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {

.serviceDetail-text_sub1:not(:first-child) {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
}

.serviceDetail-lead {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 2.375rem;
	text-align: center;
}

.serviceDetail-imgTitle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.sidebarContent:not(:last-child) {
  margin-bottom: 3.5rem;
}
.sidebarContent > a {
  display: block;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: 101.4%;
  position: relative;
}
.sidebarContent > a:focus, .sidebarContent > a:hover {
  opacity: 0.8;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sidebarContent > a img {
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebarContent-title {
  font-size: 1rem !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
}

.sidebarList {
  margin-top: 1rem;
}
.sidebarList__item:not(:first-child) {
  margin-top: 1.9375rem;
}
.sidebarList__link {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.sidebarList__link:focus, .sidebarList__link:hover {
  color: #333;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sidebarList__link:focus .sidebarList-imgWrapper, .sidebarList__link:hover .sidebarList-imgWrapper {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sidebarList-title {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 1rem;
}

.sidebarList-imgWrapper {
  padding-top: 56.1%;
  position: relative;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.sidebarList-imgWrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebarList-category {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 0.8125rem;
  position: absolute;
  top: 0;
  right: 0;
}

.single-header {
  width: 100%;
  margin-top: calc(86px + 1.5625rem);
}

#toc_container {
  padding: 1.6875rem 2rem 2.5rem;
  border-top: 2px solid #48BAB2;
  background-color: #FAFAFA;
  margin-top: 5rem;
}

.toc_title {
  font-size: 1.625rem !important;
  line-height: 1.5 !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  color: #48BAB2 !important;
  padding-left: 4.375rem !important;
  position: relative;
}
.toc_title::before, .toc_title::after {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.toc_title::before {
  content: "";
  width: 58px;
  height: 58px;
  background-color: #48BAB2;
  border-radius: 999px;
  left: 0;
}
.toc_title::after {
  content: "\f0ca";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  left: 16px;
}

.toc_list {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 2.625rem;
}
.toc_list li:not(:first-child) {
  margin-top: 1.375rem;
}
.toc_list li a {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.toc_list li a .toc_number {
  margin-right: 0.25rem;
}
.toc_list li ul {
  margin-top: 0.75rem;
  margin-left: 1.5625rem;
}
.toc_list li ul li:not(:first-child) {
  margin-top: 0;
}
.toc_list li ul li a {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.toc_list a {
  background-image: -webkit-gradient(linear, left top, right top, from(#000), to(#000));
  background-image: linear-gradient(90deg, #000, #000);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.6s;
  transition: background-size 0.6s;
  padding-bottom: 0.125rem;
}
.toc_list a:focus, .toc_list a:hover {
  color: #000;
  background-size: 100% 1px;
}

.venderLead {
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 1.4375rem;
}

.venderText {
  font-size: 0.875rem;
  line-height: 1.68;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 5rem;
}

.venderList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.venderList__item {
  padding: 0 1.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.venderList__item::before, .venderList__item::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background-color: #F0F0F0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.venderList__item:before {
  left: 0;
}
.venderList__item::after {
  right: 0;
  display: none;
}

.header {
  z-index: 200;
}

.floating {
  z-index: 150;
}

.topMv-lead {
  z-index: 100;
}

.pageMv-lead {
  z-index: 100;
}

.slide-arrow {
  z-index: 30;
}

.topLead-content__backText {
  z-index: -1;
}

.section-bg {
  z-index: -1;
}

.oneStop-flowList__item::after {
  z-index: -1;
}

/* ページヘッダー
------------------------------------*/
.archive-header {
  margin-top: calc(86px + 1.5625rem);
}

.archive-pageTitle {
  margin-top: 2.3125rem;
}
.archive-pageTitle__main {
  font-size: 1.3125rem;
  line-height: 1.5;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
}

.accordion {
  margin-top: 1.3125rem;
}
.accordion__header {
  padding: 1rem 0;
  cursor: pointer;
}
.accordion__body {
  display: none;
}

.accordion-content {
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}

.accordion-title {
  line-height: 1.5;
  font-weight: 700;
  padding-left: 3.625rem;
  position: relative;
}
.accordion-title::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: transparent url("../img/common/archive/arrow.png") no-repeat center center/contain;
  position: absolute;
  top: 5px;
  left: 19px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion-title.is-open::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.accordion-categoryList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.accordion-categoryList__item {
  margin-bottom: 1.1875rem;
}
.accordion-categoryList__item:not(:last-child) {
  margin-right: 1.125rem;
}
.accordion-categoryList__item.current .accordion-categoryList__link {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.accordion-categoryList__link {
  display: block;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  padding: 0.375rem 1.125rem;
  border: 1px solid #48BAB2;
  border-radius: 2px;
}
.accordion-categoryList__link:focus, .accordion-categoryList__link:hover {
  color: #000;
  opacity: 0.8;
}

/* archive-content
------------------------------------*/
.archive-content {
  width: 100%;
}

.archiveList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.archiveList__link {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.archiveList__link:focus, .archiveList__link:hover {
  color: #000;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.archiveList__link:focus .archiveList-imgWrapper, .archiveList__link:hover .archiveList-imgWrapper {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.archiveList-title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 1.3125rem;
}

.archiveList-imgWrapper {
  padding-top: 56.389%;
  position: relative;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.archiveList-imgWrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.archiveList-category {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 1.3125rem;
  position: absolute;
  top: 0;
  right: 0;
}

/* ループスライド
------------------------------------*/
.loopSlide-wrapper {
  margin-top: 2.25rem;
}

.loopSlide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: hidden;
}

.loopSlide-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop-slide-RightToLeft 50s infinite linear 0s both;
          animation: loop-slide-RightToLeft 50s infinite linear 0s both;
}
.loopSlide-list--reverse {
  -webkit-animation: loop-slide-LeftToRight 50s infinite linear 0s both;
          animation: loop-slide-LeftToRight 50s infinite linear 0s both;
}
.loopSlide-list__item {
  width: 110px;
  margin: 0 1.5rem;
}
.loopSlide-list__item img {
  width: 100%;
}

@-webkit-keyframes loop-slide-RightToLeft {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes loop-slide-RightToLeft {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes loop-slide-LeftToRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-slide-LeftToRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/* リード文
------------------------------------*/
.topLead {
  overflow-x: hidden;
  margin-top: 2.5625rem;
  margin-left: 2.25rem;
}
.topLead > .inner {
  position: relative;
}

.topLead-content {
  display: inline-block;
}
.topLead-content__main {
  font-size: 4.375rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
}
.topLead-content__sub {
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 3.3125rem;
  margin-left: 0.5rem;
}
.topLead-content__backText {
  font-size: 11.875rem;
  line-height: 1.04;
  text-transform: uppercase;
  color: #F0F0F0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.06em;
  position: absolute;
  top: 16px;
  right: -56px;
}

/* サービス
------------------------------------*/
.service-contentsList {
  max-width: 928px;
  margin-left: 1.75rem;
  margin-right: calc(50% - 50vw);
}
.service-contentsList__item {
  height: 344px;
  position: relative;
}
.service-contentsList__item:not(:first-child) {
  margin-top: 4.375rem;
}
.service-contentsList__link {
  display: block;
  height: 100%;
  -webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
}
.service-contentsList__link:focus, .service-contentsList__link:hover {
  color: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service-contentsList__link:focus .service-imgWrapper, .service-contentsList__link:hover .service-imgWrapper {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service-title {
  position: absolute;
  top: 3.5rem;
  left: 4rem;
}
.service-title__service {
  display: inline-block;
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0.06em;
  background-color: #fff;
  padding: 0.375rem 1.125rem;
}
.service-title__service:not(:first-child) {
  margin-top: 0.25rem;
}
.service-title__service--bold {
  font-weight: 700;
}

.service-imgWrapper {
  height: 100%;
}
.service-imgWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-btnWrapper {
  position: absolute;
  bottom: 1.875rem;
  right: 3.8125rem;
}

/* 特徴
------------------------------------*/
.feature-list {
  max-width: 1140px;
  margin-top: 4.5rem;
  margin-right: auto;
  margin-left: auto;
}
.feature-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #FAFAFA;
  -webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 7rem 5rem;
}
.feature-list__item:not(:first-child) {
  margin-top: 5.3125rem;
}

.feature-text {
  width: calc(100% - 400px);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.feature-text__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.feature-text__number {
  font-size: 6.875rem;
  line-height: 1.04;
  font-weight: 600;
  color: #E5E5E5;
  font-family: "HK Grotesk", sans-serif;
  letter-spacing: -0.06em;
  border-right: 2px solid #E5E5E5;
  padding-right: 2rem;
}
.feature-text__title {
  font-size: 2rem;
  line-height: 1.3908;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
  padding: 0.625rem 0 1rem 1.75rem;
  white-space: nowrap;
}
.feature-text__body {
  margin-top: 1rem;
}
.feature-text__list--01 {
  max-width: 533px;
}
.feature-text__list--02 {
  max-width: 534px;
}
.feature-text__list--03 {
  max-width: 492px;
}
.feature-text__list--04 {
  max-width: 447px;
}
.feature-text__list--05 {
  max-width: 465px;
}
.feature-text__item {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1.625rem 0 1.625rem 3.125rem;
  position: relative;
}
.feature-text__item::before {
  content: "";
  display: block;
  width: 65px;
  height: 65px;
  background: transparent url("../img/common/top/list.svg") no-repeat center center/contain;
  position: absolute;
  top: 10px;
  left: -15px;
}
.feature-text__item:not(:first-child) {
  border-top: 1px solid #D4D4D4;
}

_::-webkit-full-page-media,
_:future,
:root .feature-text__item {
  font-size: 1.2rem;
}

.feature-imgWrapper {
  width: 400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.feature-list__item--rowReverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.feature-list__item--rowReverse .feature-text {
  width: calc(100% - 400px - 1.75rem);
}
.feature-list__item--rowReverse .feature-imgWrapper {
  margin-left: 0;
  margin-right: 1.75rem;
}

/* 導入事例
------------------------------------*/
.caseStudy-list {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 2.1875rem;
}
.caseStudy-list__link {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.caseStudy-list__link:focus, .caseStudy-list__link:hover {
  color: #000;
  opacity: 0.8;
}

.caseStudy-companyName {
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 1.8125rem;
}

.caseStudy-imgWrapper {
  padding-top: 64.474%;
  position: relative;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.caseStudy-imgWrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.caseStudy-category {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.02em;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 1rem;
  position: absolute;
  top: 0;
  right: 0;
}

.caseStudy-btnWrapper {
  text-align: center;
  margin-top: 2.8125rem;
}

/* 商品
------------------------------------*/
.products-contentsList {
  margin-left: auto;
}
.products-contentsList__item {
  width: 750px;
  max-width: 100%;
  height: 210px;
}
.products-contentsList__item:not(:first-child) {
  margin-top: 2rem;
}
.products-contentsList__link {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #FAFAFA;
  -webkit-box-shadow: 20px 30px 80px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 20px 30px 80px -30px rgba(0, 0, 0, 0.2);
}
.products-contentsList__link:focus, .products-contentsList__link:hover {
  color: #000;
  opacity: 0.8;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.products-listBody {
  padding: 2.75rem;
}

.products-title__ja, .products-title__en {
  display: block;
  font-weight: 700;
}
.products-title__ja {
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.15em;
}
.products-title__en {
  font-size: 0.75rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-top: 0.3125rem;
}

.products-btnWrapper {
  margin-top: 1.8125rem;
}

.products-imgWrapper {
  width: 54.667%;
  height: 100%;
  margin-left: auto;
}
.products-imgWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 取り扱いブランド
------------------------------------*/
.brand-list {
  padding: 3.125rem 5.0625rem;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
  margin-top: 5.125rem;
}

/* イベント・セミナー
------------------------------------*/
.event-btnWrapper {
  margin-top: 2.5rem;
}

.event-btnWrapper--sp {
  display: none;
}

.event-list {
  width: 100%;
  overflow-x: hidden;
  margin-right: calc(50% - 50vw);
  padding: 8.75rem 0 0;
}
.event-list__item {
  width: auto;
}
.event-list__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.event-list__link:focus .event-name, .event-list__link:hover .event-name {
  color: #000;
}
.event-list__link:focus .event-name,
.event-list__link:focus .event-imgWrapper, .event-list__link:hover .event-name,
.event-list__link:hover .event-imgWrapper {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.event-name {
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 1.5625rem;
}

.event-imgWrapper {
  padding-top: 59.211%;
  position: relative;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.event-imgWrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-category {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 0.625rem;
  position: absolute;
  top: 0;
  right: 0;
}

/* オフィス構築支援の5つの特徴
------------------------------------*/
.pageFeature-list--officeconstruction {
  margin-top: 0;
}
.pageFeature-list--officeconstruction .pageFeature-list__item:first-child {
  counter-reset: pageFeature 0;
}
.pageFeature-list--officeconstruction .pageFeature-list__item:first-child::before {
  /*content: "";*/
  content: "0" counter(pageFeature);
}
.pageFeature-list--officeconstruction .pageFeature-list__item:not(:first-child)::before {
  content: "0" counter(pageFeature);
}

.pageFeature-list__item--lead {
  padding: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.pageFeature-list--officeconstruction .pageFeature-list__items:first-child {
  counter-reset: pageFeature 0;
}
.pageFeature-list--officeconstruction .pageFeature-list__items:first-child::before {
  /*content: "";*/
  content: "0" counter(pageFeature);
}
.pageFeature-list--officeconstruction .pageFeature-list__items:not(:first-child)::before {
  content: "0" counter(pageFeature);
}

.pageFeature-list__items--lead {
  padding: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}


/* オフィス構築支援の5つの特徴
------------------------------------*/
.oneStop-imgWrapper {
  margin-top: 2.875rem;
}

.oneStop-flowList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.oneStop-flowList::before, .oneStop-flowList::after {
  content: "";
  display: block;
  position: absolute;
}
.oneStop-flowList::before {
  width: calc(100% + 0px);
  height: 23px;
  border: 3px solid #6F6F6F;
  border-top: transparent;
  bottom: -41px;
}
.oneStop-flowList::after {
  width: 3px;
  height: 26px;
  background-color: #6F6F6F;
  bottom: -66px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.oneStop-flowList__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 116px;
  height: 100px;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-left: 1.125rem;
  background-color: #324356;
  border-radius: 10px;
  position: relative;
  color: #fff;
}
.oneStop-flowList__item:not(:first-child) {
  margin-left: 2.75rem;
}
.oneStop-flowList__item::after {
  content: "";
  display: block;
  width: 50px;
  height: 100px;
  background: transparent url("../img/oneStop-flow.webp") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: calc(100% - 21px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.oneStop-text {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 5.75rem;
}
.oneStop-text span {
  font-size: 0.875rem;
  line-height: 1;
  color: #000;
  font-weight: 700;
  background-color: #FAFAFA;
  padding: 0.375rem;
  border-radius: 5px;
  margin-right: 1.4375rem;
}

.oneStop-illustList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.3125rem;
}
.oneStop-illustList__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.oneStop-illustList__item:not(:first-child) {
  margin-left: 3.75rem;
}
.oneStop-illustList__imgWrapper {
  text-align: center;
  height: 115px;
}
.oneStop-illustList__imgWrapper img {
  height: 100%;
}

.oneStop-illustList-title {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 1.875rem;
}

.serviceDetail__body--spaceDesign {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.serviceDetail__body_AAA--spaceDesign {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
flex-direction: row;
}

.spaceDesign-text {
  width: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.spaceDesign-imgWrapper {
  margin-right: calc(50% - 50vw);
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /*-webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);*/
}
.spaceDesign-imgWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.spaceDesign-imgWrapper1 {
  margin-left: calc(50% - 50vw);
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /*-webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);*/
}
.spaceDesign-imgWrapper1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.spaceDesign-lead {
  font-size: 1.625rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 4.9375rem;
}

.spaceDesign-pickup {
  margin-top: 6.8125rem;
}

.serviceDetail__img--spaceDesign {
  margin-top: 3.875rem;
}

.settlementList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.settlementList__item {
  width: 206px;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding-top: 5.5625rem;
  counter-increment: settlement;
  position: relative;
}
.settlementList__item:not(:first-child) {
  margin-left: 4.625rem;
}
.settlementList__item::before {
  content: "0" counter(settlement);
  font-size: 2.5rem;
  line-height: 1.04;
  color: #E5E5E5;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}
.settlementList__item::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #E5E5E5;
  position: absolute;
  top: 46px;
  left: 16px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.settlementList-imgWrapper {
  text-align: center;
}
.settlementList-imgWrapper img {
  width: auto;
}

.settlement-title {
  min-height: 4.6875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 2.1875rem;
}
.serviceDetail__img--settlement .serviceDetail-imgWrapper {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
	margin-top: 2rem;
}

.hybridDetail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.hybridDetail__img {
  width: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.hybridDetail__body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 4.8125rem;
}

.hybridDetail-textList__item:not(:first-child) {
  margin-top: 2.75rem;
}

.hybridDetail-textList-box {
  max-width: 286px;
  height: 45px;
}
.hybridDetail-textList-box--subscription {
  border: 6px solid #94CBE1;
}
.hybridDetail-textList-box--purchase {
  border: 6px solid #C689B4;
}

.hybridDetail-textList-title {
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 1rem;
}

.hybridDetail-textList-text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.4375rem;
  letter-spacing: -0.04em;
}

.updateDetail-list__item:not(:first-child) {
  margin-top: 3.125rem;
  position: relative;
}
.updateDetail-list__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 132px;
  height: 40px;
  background: transparent url("../img/common/officeconstruction/arrow.webp") no-repeat center center/contain;
  position: absolute;
  top: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.updateDetail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.updateDetail__img {
  width: 40%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.updateDetail5__img {
  width: 200px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.updateDetail4__img {
  width: 47.5%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.updateDetail__body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 4.8125rem;
}

.updateDetail__body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 4.8125rem;
}

.updateDetail4__body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 1.2rem;
}

.updateDetail-textList__item {
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-left: 3.1875rem;
  position: relative;
}

@media screen and (max-width: 1024px) {
.updateDetail-textList__item {
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-left: 0rem;
  position: relative;
}
}

.updateDetail-textList__item4 {
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-left: 3.1875rem;
  position: relative;
      font-size: 24px;
    color: #000;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
.updateDetail-textList__item4 {
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-left: 0;
  position: relative;
      font-size: 24px;
    color: #000;
    font-weight: bold;
  padding-top: 20px;
}
}

.updateDetail-textList__item:not(:first-child) {
  margin-top: 1rem;
}

.updateDetail-textList__item_blue {
  padding-left: 2.1875rem;
  position: relative;
    font-size: 22px;
    color: #284669;
    font-weight: bold;
    letter-spacing: 0.06rem;
	line-height: 1.4;
}

.updateDetail-textList__item_maintext {
  padding-left: 2.1875rem;
  position: relative;
    font-size: 30px;
    color: #000;
    font-weight: bold;
    margin-top: 0px;
    letter-spacing: 0.06rem;
}

.updateDetail-textList__item_hosoku {
  padding-left: 2.1875rem;
  position: relative;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    margin-top: 10px;
    letter-spacing: 0.03rem;
}


.serviceDetail__body--eco {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.serviceDetail__body_AAA--eco {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ecoDetail-imgWrapper {
  width: 63.636%;
  padding: 2.25rem 6rem;
  padding: 36px 96px 36px 96px;
  background-color: #FAFAFA;
  border-radius: 20px;
  -webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
}

.ecoDetail-lead {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: center;
}
.ecoDetail-lead strong {
  color: #000;
}

.ecoDetail-imgList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.25rem;
}
.ecoDetail-imgList__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.ecoDetail-imgList__item:first-child {
  width: 90%;
}
.ecoDetail-imgList__item:not(:first-child) {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  position: relative;
  right: -16px;
}

.ecoDetail-btnWrapper {
  text-align: center;
  margin-top: 2rem;
}

/* ドキュメント（お役立ち資料・おすすめ記事）
------------------------------------*/
.document {
  margin-top: 12.75rem;
  padding-bottom: 10.8125rem;
}

.document-pickup {
  margin-top: 2.3125rem;
}

.document-list__item:not(:first-child) {
  margin-top: 10.8125rem;
}

/* 家具のサブスクリプションサービスの3つの特徴
------------------------------------*/
.serviceDetail__body--coordinate {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.serviceDetail__body_AAA--coordinate {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.coordinate-text {
  width: 48%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.coordinate-imgWrapper {
  margin-left: 4.8125rem;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.serviceDetail__img--price {
  padding: 2rem 5rem;
}
.serviceDetail__img--price .serviceDetail-imgWrapper {
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}

.choiceList {
  margin-left: 4.625rem;
}
.choiceList__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.choiceList__item:not(:first-child) {
  margin-top: 1.6875rem;
}

.choice-title {
  width: 280px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  max-width: 100%;
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 1.4375rem 0.25rem;
  text-align: center;
}
.choice-title--01 {
  background-color: rgba(0, 0, 0, 0.5);
}
.choice-title--02 {
  background-color: rgba(0, 0, 0, 0.35);
}
.choice-title--03 {
  background-color: rgba(0, 0, 0, 0.2);
}

.choice-body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 2.4375rem;
}

.choice-text {
  font-size: 0.875rem;
  line-height: 1.68;
  letter-spacing: 0.02em;
}
.choice-text:not(:first-child) {
  margin-top: 0.25rem;
}
.choice-text strong {
  font-weight: 700;
  color: #000;
}

/* お問い合わせから納品までの流れ
------------------------------------*/
.flow {
  margin-top: 12.5625rem;
}

.flowList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  border-radius: 20px;
  -webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
  padding: 4.75rem 2rem;
  margin-top: 2.5rem;
}
.flowList__item {
  max-width: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  position: relative;
}
.flowList__item:not(:first-child) {
  margin-left: 3rem;
}
.flowList__body {
  margin-top: 2.5rem;
}
.flowList__imgWrapper {
  height: 106px;
  position: relative;
}
.flowList__imgWrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.flowList-title {
  min-height: 3.6875rem;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: center;
}

.flowList-text {
  font-size: 0.875rem;
  line-height: 1.68;
  text-align: center;
  margin-top: 0.75rem;
}

.flowList-caution {
  font-size: 0.75rem;
  position: absolute;
  bottom: -5rem;
  right: 0;
}

/* 商品
------------------------------------*/
.product {
  margin-top: 6.9375rem;
}


.product_AAA {
    margin-top: -7.0625rem;
    position: relative;
    z-index: -1;
}

.product_AAA2 {
    margin-top: 10.0625rem;
    position: relative;
    z-index: -1;
}

.product_AAA3 {
    margin-top: 10.0625rem;
    position: relative;
    z-index: -1;
}

.productList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 4.375rem;
}
.productList__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.productList__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
}
.productList__link:focus, .productList__link:hover {
  color: #000;
  opacity: 0.8;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.productList__body {
  background-color: #FAFAFA;
  padding: 1.375rem 2.3125rem 6.8125rem;
}
.productList__btnWrapper {
  position: absolute;
  right: 2rem;
  bottom: 2.125rem;
}

.productList-title__ja, .productList-title__en {
  display: block;
  font-weight: 700;
}
.productList-title__ja {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1268px) {
.productList-title__ja {
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.15em;
}
}

@media screen and (max-width: 1240px) {
.productList-title__ja {
  font-size: 1.08rem;
  line-height: 1.8;
  letter-spacing: 0.15em;
}
}


.productList-title__en {
  font-size: 0.75rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-top: 0.3125rem;
}

/* 導入事例
------------------------------------*/
.caseStudy {
  margin-top: 12.9375rem;
  padding-bottom: 10.125rem;
}

.caseStudyList {
  border-radius: 20px;
  -webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
  padding: 5rem;
  margin-top: 3.25rem;
}

.caseStudy-pickup {
  margin-top: 9.1875rem;
}
@media screen and (max-width: 900px) {
.serviceDetail-text_sub1 {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    font-weight: bold;
    left: 0px;
    position: relative;
}
	
  .serviceDetail__header_sub1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
	
}
@media screen and (max-width: 1000px) {
  .max-s2 {
    display: block;
  }
}


@media screen and (max-width: 900px) {

  .btn {
display: none;
  }

}
@media screen and (max-width: 767px) {
  .slide-arrow {
    width: 48px;
    height: 48px;
  }
  .prev-arrow {
    right: 90px;
  }
  .prev-arrow::after {
    left: 14px;
  }
  .next-arrow {
    right: 20px;
  }
  .next-arrow::after {
    left: 22px;
  }
  .slick-topMv .slide-arrow {
    bottom: 16px;
    width: 34px;
    height: 34px;
  }
  .slick-topMv .slide-arrow::before {
    width: 9px;
  }
  .slick-topMv .prev-arrow {
    right: 64px;
  }
  .slick-topMv .prev-arrow::after {
    left: 11px;
  }
  .slick-topMv .next-arrow::after {
    left: 12px;
  }
  .slick-topMv .slick-dots {
    right: auto;
    bottom: 32px;
    left: 47px;
  }
  .slideCounter {
    font-size: 1.125rem;
    right: auto;
    bottom: 16px;
    left: 18px;
  }
  .slick-caseStudy .slide-arrow {
    width: 48px;
    height: 48px;
    top: -102px;
  }
  .slick-caseStudy .prev-arrow {
    right: 80px;
  }
  .slick-caseStudy .prev-arrow::after {
    left: 16px;
  }
  .slick-caseStudy .next-arrow {
    right: 20px;
  }
  .slick-caseStudy .next-arrow::after {
    left: 22px;
  }
  .slick-caseStudy .slick-slide {
    margin: 0 0.5rem;
  }
  .slick-eventList .slide-arrow {
    width: 48px;
    height: 48px;
    top: 0;
  }
  .slick-eventList .slide-arrow::before {
    width: 12px;
  }
  .slick-eventList .prev-arrow {
    right: 80px;
  }
  .slick-eventList .prev-arrow::after {
    left: 16px;
  }
  .slick-eventList .next-arrow {
    right: 20px;
  }
  .slick-eventList .next-arrow::after {
    left: 21px;
  }
  .slick-eventList .slick-slide {
    margin: 0 0.75rem;
  }
  .slick-eventList .slick-list {
    padding-right: 50px;
  }
  .slick-sidebar .slide-arrow {
    width: 48px;
    height: 48px;
    top: 0;
  }
  .slick-sidebar .slide-arrow::before {
    width: 12px;
  }
  .slick-sidebar .prev-arrow {
    right: 80px;
  }
  .slick-sidebar .prev-arrow::after {
    left: 16px;
  }
  .slick-sidebar .next-arrow {
    right: 20px;
  }
  .slick-sidebar .next-arrow::after {
    left: 21px;
  }
  .slick-sidebar .slick-slide {
    margin-right: 1.5625rem;
  }
  .slick-sidebar .slick-list {
    padding-right: 34px;
  }
  .wp-block-image {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .single-content .main-row h1 {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 1.625rem;
  }
  .single-content .main-row .wp-block-columns + h1 {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-top: 4.0625rem;
  }
  .single-content .main-row h2::before {
    width: 50px;
  }
  .single-content .main-row h1 + h2 {
    padding-top: 1.875rem;
  }
  .single-content .main-row p {
    line-height: 1.8;
    margin-top: 1.375rem;
  }
  .single-content .main-row h1 + p {
    margin-top: 1.25rem;
  }
  .wp-block-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 335px;
    margin-top: 1.5rem;
    margin-right: auto;
    margin-left: auto;
  }
  .wp-block-columns .wp-block-column:empty {
    display: none;
  }
  .wp-block-columns .wp-block-image {
    margin-right: auto;
    margin-left: auto;
  }
  .wp-block-emanon-premium-blocks-broken-grid {
    padding: 1.875rem 1.375rem;
    margin-top: 3.375rem;
  }
  .epb-broken-grid__content .epb-advance-headling__text-wrapper {
    margin-top: 1.75rem;
  }
  .wp-block-buttons {
    margin-top: 1.75rem !important;
  }
  .bread-crumb span + span::before {
    top: 7px;
  }
  _::-webkit-full-page-media,
_:future,
:root .bread-crumb span + span::before {
    top: 7px;
  }
  .btn {
    font-size: 0.6875rem;
    padding: 0.875rem 3rem 0.875rem 2rem;
  }
  .btn2 {
    font-size: 1.4rem;
    padding: 0.875rem 2rem 0.875rem 2rem;
  }
  .btn--topMv {
    padding: 0.875rem 3.5rem 0.875rem 3.5rem;
  }
  .btn--products {
    font-size: 1rem;
    padding: 1rem 6.1875rem;
  }
  .btn--products_sub {
    font-size: 1rem;
    padding: 1rem 6.1875rem;
  }
  .btn--event {
    font-size: 1rem;
    padding: 1rem 6.25rem;
  }
  .btn--contact {
    width: 280px;
    max-width: 100%;
  }
  .btn--big {
    font-size: 1rem;
    padding: 1rem 4.25rem;
  }
  .btn--pageFeature {
    font-size: 0.875rem;
    padding: 1.0625rem 0.25rem;
  }
  .btn--404 {
    font-size: 1rem;
    padding: 1.25rem 5.375rem;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  .btn::before {
    width: 18px;
    height: 18px;
    right: 21px;
  }
  .btn::after {
    right: 29px;
  }
.btn2::before {
    width: 18px;
    height: 18px;
    right: 21px;
  }
.btn2::after {
    width: 6px;
    height: 6px;
    border-top: 2px solid #48BAB2;
    border-right: 2px solid #48BAB2;
    top: 50%;
    right: 28px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
	
	
span.contact {
  font-size: 9px;
    display: flex;
}
	
  .btn--products::before {
    width: 20px;
    height: 20px;
    right: 28px;
  }
  .btn--products::after {
    right: 37px;
  }
  .btn--products_sub::before {
    width: 20px;
    height: 20px;
    right: 28px;
  }
  .btn--products_sub::after {
    right: 37px;
  }
  .btn--big::before {
    width: 20px;
    height: 20px;
    right: 29px;
  }
  .btn--big::after {
    right: 38px;
  }
  .btn--brokenGrid {
    font-size: 0.75rem;
    padding: 0.875rem 3.125rem;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }
  .btn--brokenGrid::before {
    width: 14px;
    height: 14px;
    right: 20px;
  }
  .btn--brokenGrid::after {
    right: 26px;
  }
  .contact-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .copyright {
    font-size: 0.9375rem;
  }
  .header {
    height: 60px;
  }
  .header-logo {
    width: 119.99px;
    height: 28.43px;
  }
  .drawer-nav {
    top: 60px;
  }
  .inner {
    padding: 0 20px;
  }
  .inner--narrow {
    padding: 0 20px;
  }
  .max-s {
    display: block;
  }
  .min-m {
    display: none;
  }
  .section {
    padding: 5.375rem 0;
  }
  .section--service {
    padding: 8.5rem 0 5.1875rem;
  }
  .section--event {
    padding: 6rem 0;
  }
  .section--contact {
    padding: 5.375rem 0 3.8125rem;
  }
  .section-title__sub {
    font-size: 1.375rem;
    line-height: 1.04;
    padding-bottom: 1.625rem;
    margin-bottom: 1.0625rem;
  }
  .section-title__sub::after {
    height: 2px;
  }
  .section-title__main {
    font-size: 2rem;
    line-height: 1.5;
  }
  .section-description {
    margin-top: 1.5rem;
  }
  .section--side .section-lead {
    margin-left: -2.25rem;
  }
  .section--event .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section--event .section-lead {
    margin-bottom: -5rem;
    margin-left: -6.875rem;
  }
  .pageSection-title {
    font-size: 2rem;
    line-height: 1.525;
  }
  .pageSection-text {
    font-size: 0.8125rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
    margin-top: 1.8125rem;
  }
  .topMv {
    height: 30rem;
    margin-top: 60px;
  }
  .topMv-imgList__item {
    height: 30rem;
  }
  .topMv-lead {
    top: calc(50% - 2rem);
    left: 1.25rem;
  }
  .topMv-lead__sub {
    font-size: 0.875rem;
    line-height: 1.08;
  }
  .topMv-bg {
    width: 100%;
    height: 64px;
  }
  .pageMv {
    margin-top: 60px;
  }
  .pageMv-lead {
    right: auto;
    margin-right: auto;
    margin-left: auto;
  }
  .pageMv-imgWrapper {
    height: 13.375rem;
  }
  .page-404-content {
    margin-top: calc(60px + 1.25rem);
    padding: 4.5rem 0 9.75rem;
  }
  .page-404-title {
    font-size: 2rem;
    line-height: 1.5;
  }
  .page-404-text {
    font-weight: 500;
    text-align: left;
    margin-top: 3.75rem;
  }
  .page-404-btnWrapper {
    margin-top: 3.75rem;
  }
  .pageLead {
    margin-top: 3.5625rem;
    margin-left: 0;
  }
  .pageLead-text {
    font-size: 1.5rem;
    line-height: 1.55;
    letter-spacing: 0.02em;
  }
  .wp-pagenavi {
    margin-top: 2.625rem;
  }
  .pageFeature {
    margin-top: 2.5rem;
  }
  .pageFeature-content {
    max-width: 335px;
    margin-right: auto;
    margin-left: auto;
    padding: 2.8125rem 1.5rem;
  }
  .pageFeature-lead {
    font-size: 1.8125rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  .pickupList {
    max-width: 325px;
    margin-right: auto;
    margin-left: auto;
  }
  .pickupList-title {
    margin-top: 1.625rem;
  }
  .serviceDetail {
    margin-top: 1.25rem;
  }
  .serviceDetail_10 {
    margin-top: 1.25rem;
  }
  .serviceDetail__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
	
  .serviceDetail__header_sub1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .serviceDetail__body {
    margin-top: 1.4375rem;
  }
	
  .serviceDetail__body_AAA {
    margin-top: 1.4375rem;
  }
  .serviceDetail__img {
    margin-top: 3.625rem;
    padding: 2.5rem 1.25rem;
  }
	
  .serviceDetail5__img {
    margin-top: 3.625rem;
    padding: 2.5rem 1.25rem;
  }
  .serviceDetail-list {
    width: 100%;
    max-width: 100%;
  }
  .serviceDetail-list_work {
    width: 4400px;
    max-width: 100%;
  }
  .serviceDetail-list__item:not(:first-child) {
    margin-top: 1.25rem;
  }
  .serviceDetail-contentsList {
    margin-top: 2.375rem;
  }
  .serviceDetail-contentsList__item {
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0;
    padding-left: 1.9375rem;
  }
  .serviceDetail-contentsList__item::before {
    width: 35px;
    height: 35px;
    top: -5px;
    left: -9px;
  }
  .serviceDetail-text {
    font-size: 0.8125rem;
    line-height: 1.9;
    letter-spacing: 0.06em;
  }
  .serviceDetail-text_sub1 {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    font-weight: bold;
    left: 0px;
    position: relative;
  }
  .serviceDetail-lead {
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.0625rem;
  }
  .sidebarContent:not(:last-child) {
    margin-bottom: 3.75rem;
  }
  .sidebarContent > a {
    padding-top: 100%;
  }
  .sidebarContent-title {
    font-size: 1.3125rem !important;
    line-height: 1.4 !important;
  }
  .sidebarList {
    overflow-x: hidden;
    margin-right: calc(50% - 50vw);
    padding-top: 4.9375rem;
    margin-top: -3.5625rem;
  }
  .sidebarList__item:not(:first-child) {
    margin-top: 0;
  }
  .sidebarList-title {
    margin-top: 1.25rem;
  }
  .single-header {
    margin-top: calc(60px + 1.25rem);
  }
  #toc_container {
    padding: 0.4375rem 1.25rem 1.875rem;
    margin-top: 5.4375rem;
  }
  .toc_list {
    margin-top: 2rem;
  }
  .toc_list li a {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .toc_list li ul li:not(:first-child) {
    margin-top: 0.4375rem;
  }
  .venderLead {
    font-size: 1.375rem;
    line-height: 1.5;
    margin-bottom: 1.875rem;
  }
  .venderText {
    font-size: 0.8125rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
    margin-bottom: 3.125rem;
  }
  .archive-header {
    margin-top: calc(60px + 1.25rem);
  }
  .archive-pageTitle {
    margin-top: 1.375rem;
  }
  .accordion-categoryList__item {
    margin-bottom: 0.6875rem;
  }
  .accordion-categoryList__item:not(:last-child) {
    margin-right: 0.6875rem;
  }
  .archive-content {
    max-width: 375px;
    margin-right: auto;
    margin-left: auto;
  }
  .loopSlide-wrapper {
    margin-top: 0.25rem;
  }
  .loopSlide-list__item {
    width: 75px;
    margin: 0 0.5rem;
  }
  .topLead {
    margin-top: -1.125rem;
    margin-left: 0;
    padding-bottom: 9.125rem;
  }
  .topLead-content__main {
    font-size: 2.5625rem;
    line-height: 1.47;
    letter-spacing: 0;
  }
  .topLead-content__sub {
    font-size: 0.9375rem;
    line-height: 1.8;
    font-weight: 500;
    margin-top: 1.625rem;
    margin-left: 0;
  }
  .service-contentsList__item {
    height: 225px;
  }
  .service-contentsList__item:not(:first-child) {
    margin-top: 3.3125rem;
  }
  .service-title {
    top: 1.5rem;
    left: 1.125rem;
  }
  .service-title__service {
    font-size: 1.4375rem;
    padding: 0.25rem 0.75rem;
  }
  .service-btnWrapper {
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .feature-list {
    max-width: 335px;
    margin-top: 3.1875rem;
  }
  .feature-text__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .feature-text__body {
    margin-top: 1.4375rem;
  }
  .feature-text__item::before {
    width: 35px;
    height: 35px;
    top: 3px;
    left: -6px;
  }
  .caseStudy-list {
    margin-top: 3.4375rem;
  }
  .caseStudy-btnWrapper {
    margin-top: 2.125rem;
  }
  .products-contentsList__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .products-title__ja {
    letter-spacing: 0.04em;
  }
  .products-btnWrapper {
    text-align: center;
  }
  .products-imgWrapper {
    width: 100%;
  }
  .brand-list {
    padding: 2rem 1.6875rem;
    margin-top: 4.0625rem;
  }
  .event-btnWrapper {
    margin-top: 2.1875rem;
  }
  .event-btnWrapper--pc {
    display: none;
  }
  .event-btnWrapper--sp {
    display: block;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .event-list {
    width: 100vw;
    margin-right: 0;
    padding: 5rem 0 0;
    margin-top: 2.1875rem;
  }
  .oneStop-illustList {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 6.875rem;
  }
  .oneStop-illustList__item {
    width: calc(50% - 1.5625rem);
  }
  .oneStop-illustList__item:nth-child(n+3) {
    margin-top: 1.625rem;
  }
  .oneStop-illustList__item:not(:nth-child(2n)) {
    margin-right: 3.125rem;
  }
  .oneStop-illustList-title {
    white-space: nowrap;
  }
  .spaceDesign-pickup {
    margin-top: 4.0625rem;
  }
  .serviceDetail__img--spaceDesign {
    margin-top: 3.875rem;
  }
  .serviceDetail__img--settlement {
    margin-top: 2.5625rem;
    margin-right: calc(50% - 50vw);
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    padding: 0;
    overflow-x: scroll;
  }
  .serviceDetail__img--settlement .serviceDetail-imgWrapper {
    width: 750px;
  }
  .updateDetail-textList__item {
    font-size: 1rem;
    line-height: 1.75;
	padding: 0;
  }
	
  .updateDetail-textList__item4 {
font-size: 1.27rem;
    line-height: 1.75;
    padding: 20px 0 0px;
    letter-spacing: 0;
  }
	
  .updateDetail-textList__item:not(:first-child) {
    margin-top: 1.125rem;
  }
  .updateDetail-textList__item::before {
    width: 35px;
    height: 35px;
    top: -6px;
    left: -3px;
  }
  .serviceDetail__body--eco {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .serviceDetail__body--eco_AAA {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ecoDetail-lead {
    line-height: 2;
  }
  .ecoDetail-imgList {
    margin-top: 1.5625rem;
  }
  .ecoDetail-imgList__item:not(:first-child) {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    right: 0;
  }
  .ecoDetail-btnWrapper {
    margin-top: 1.5625rem;
  }
  .document {
    margin-top: 5.9375rem;
    padding-bottom: 6.875rem;
  }
  .document-pickup {
    margin-top: 1.875rem;
  }
  .document-list__item:not(:first-child) {
    margin-top: 5.9375rem;
  }
  .serviceDetail__body--coordinate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .serviceDetail__body_AAA--coordinate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .coordinate-text {
    width: 100%;
  }
  .coordinate-imgWrapper {
    margin-left: 0;
    margin-top: 2.4375rem;
  }
  .serviceDetail__img--price {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    padding: 0;
    overflow-x: scroll;
    margin-right: calc(50% - 50vw);
  }
  .serviceDetail__img--price .serviceDetail-imgWrapper {
    width: 528.933px;
  }
  .choiceList__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .choice-body {
    margin-left: 0;
    margin-top: 0.9375rem;
  }
  .flow {
    margin-top: 6.875rem;
  }
  .flowList-title {
    min-height: auto;
  }
  .product {
    margin-top: 3.5rem;
  }
	
  .product_AAA {
    margin-top: -6.5rem;
  }
	
  .product_AAA2 {
    margin-top: 8.5rem;
  }
	
  .product_AAA3 {
    margin-top: 8.5rem;
  }
	
  .productList {
    max-width: 350px;
    margin-top: 2.1875rem;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .productList__body {
    padding: 1.625rem 1.75rem 7.4375rem;
  }
  .productList-title__ja {
    letter-spacing: 0.04em;
  }
  .productList-title__en {
    margin-top: 0.25rem;
  }
  .caseStudy {
    margin-top: 7.4375rem;
    padding-bottom: 8.125rem;
  }
  .caseStudyList {
    margin-top: 1.75rem;
    padding: 2.8125rem 1.625rem;
  }
  .caseStudy-pickup {
    margin-top: 4.875rem;
  }
}

@media screen and (min-width: 1400px) {
  .slick-caseStudy .prev-arrow {
    right: calc(50% - 523px);
  }
  .slick-caseStudy .next-arrow {
    right: calc(50% - 603px);
  }
  .slick-eventList .prev-arrow {
    right: auto;
    left: 782px;
  }
  .slick-eventList .next-arrow {
    right: auto;
    left: 863px;
  }
  .topMv-lead {
    left: calc(50% - 617px);
  }
}

@media screen and (max-width: 1023px) {
  .wp-block-emanon-premium-blocks-testimonial {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.875rem 1.375rem;
  }
  .wp-block-emanon-premium-blocks-testimonial .epb-testimonial__content {
    margin-top: 1.75rem;
  }
  .is-style-epb-column__two-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .epb-testimonial .is-style-epb-column__two-left .epb-testimonial__icon {
    margin-right: 0 !important;
  }
  .bread-crumb {
    width: 65%;
  }
  .contact-list__item {
    width: 100%;
    padding-right: 16px;
  }
  .contact-list__item:not(:first-child) {
    padding-right: 0;
    padding-left: 16px;
  }
  .max-m {
    display: block;
  }
  .min-l {
    display: none;
  }
  .section-title--left {
    padding-left: 0;
  }
  .section--service .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .section--products .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .section-bg--service {
    height: 900px;
    top: 460px;
  }
  .section-bg--products {
    height: 1170px;
    top: 610px;
  }
  .row-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.125rem;
    padding-bottom: 6rem;
  }
  .main-row {
    width: 100%;
  }
  .sidebar {
    width: 100%;
    max-width: 500px;
    margin-top: 5rem;
    margin-right: auto;
    margin-left: auto;
    padding-top: 2.0625rem;
    border-top: 1px solid #D9D9D9;
  }
  .topMv-lead__main {
    font-size: 3rem;
  }
  .pageMv-lead__main {
    font-size: 2.25rem;
  }
  .pageMv-lead__sub {
    font-size: 1.125rem;
    margin-top: 1.125rem;
  }
  .pageFeature-list {
    -webkit-box-orient: vertical;
    /*-webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;*/
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
    
  .pageFeature-lists {
    -webkit-box-orient: vertical;
    /*-webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;*/
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
    
  .serviceDetail__number {
    font-weight: 600;
    padding-right: 0;
    padding-bottom: 0.625rem;
    /*border-right: none;
    border-bottom: 2px solid #FF9601;*/
  }
  .serviceDetail__number_wh {
    font-weight: 600;
    padding-right: 0;
    padding-bottom: 0.625rem;
    /*border-right: none;
    border-bottom: 2px solid #FF9601;*/
  }
  .serviceDetail__title {
    font-size: 1.625rem;
  }
  .serviceDetail__title_wh {
    font-size: 1.625rem;
  }
	
  .plan_text {
    font-size: 1.625rem;
  }
  .serviceDetail__title4 {
    font-size: 1.625rem;
  }
  .venderList__item::before, .venderList__item::after {
    height: 24px;
  }
  .archiveList-title {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .topLead-content__backText {
    font-size: 8.75rem;
    right: -26px;
  }
  .service-contentsList {
    margin-top: 3.125rem;
    margin-left: 0;
  }
  .feature-text__number {
    font-size: 5.625rem;
  }
  .products-contentsList {
    margin-top: 3.0625rem;
    margin-right: auto;
  }
  .oneStop-imgWrapper {
    margin-top: 2.5rem;
    position: relative;
  }
  .oneStop-flowListWrapper {
    width: 100%;
   /* margin-left: calc(50% + 50px);*/
    position: relative;
  }
  .oneStop-flowList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .oneStop-flowList::before {
  }
	
  .oneStop-flowList::after {
  }
  .oneStop-flowList__item:not(:first-child) {
    margin-left: 0;
    margin-top: 2.1875rem;
  }
  .oneStop-text {
    font-size: 0.8125rem;
    line-height: 1.8;
    text-align: justify;
    width: 112px;
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: -170px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .oneStop-text span {
    display: block;
    font-size: 0.875rem;
    line-height: 1;
    text-align: center;
    margin-bottom: 0.8125rem;
  }
  .oneStop-illustList__item:not(:first-child) {
    margin-left: 1.5rem;
  }
  .serviceDetail__body--spaceDesign {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .serviceDetail__body_AAA--spaceDesign {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .spaceDesign-text {
    width: 100%;
  }
  .spaceDesign-imgWrapper1 {
    margin-left: 0;
    margin-top: 2.125rem;
  }
  .spaceDesign-imgWrapper {
    margin-left: 0;
    margin-top: 2.125rem;
  }
  .spaceDesign-lead {
    font-size: 1.25rem;
    line-height: 1.5;
    text-align: left;
    margin-top: 3.75rem;
  }
  .settlementList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .settlementList__item {
    padding-top: 5rem;
  }
  .settlementList__item:not(:first-child) {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .settlement-title {
    margin-top: 2.3125rem;
  }
  .hybridDetail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hybridDetail__img {
    width: 100%;
    max-width: 448px;
    margin-right: auto;
    margin-left: auto;
  }
  .hybridDetail__body {
    margin-left: 0;
    margin-top: 2rem;
  }
  .hybridDetail-textList__item:not(:first-child) {
    margin-top: 2rem;
  }
  .updateDetail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .updateDetail__img {
    width: 100%;
    max-width: 448px;
    margin-right: auto;
    margin-left: auto;
  }
  .updateDetail5__img {
    width: 177px;
    max-width: 448px;
    margin-right: auto;
    margin-left: auto;
  }
	
.updateDetail4__img {
    width: 100%;
    max-width: 448px;
    margin-right: auto;
    margin-left: auto;
}
  .updateDetail__body {
    margin-left: 0;
    margin-top: 1.75rem;
  }
  .updateDetail4__body {
    margin-left: 0;
    margin-top: 1.75rem;
  }
  .ecoDetail-imgWrapper {
    width: 50%;
    padding: 2.25rem 2rem;
  }
  .choiceList {
    margin-left: 0;
  }
  .choice-title {
    width: 130px;
  }
  .flowList {
    max-width: 335px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 4rem 1.25rem;
  }
  .flowList__item:not(:first-child) {
    max-width: 100%;
    margin-left: 0;
    margin-top: 4.75rem;
  }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
  .bread-crumb {
    width: 100%;
    font-size: 0.75rem;
    margin-top: 1.3125rem;
  }
  .contact-list__item {
    margin-right: auto;
    margin-left: auto;
    padding: 4.5rem 0;
    padding-right: 0;
  }
  .contact-list__item:not(:first-child) {
    border-left: none;
    border-top: 1px solid #D5DEDE;
    padding-left: 0;
  }
  .section--service .inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section--products .inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section-bg--service {
    height: 749px;
    top: 421px;
  }
  .section-bg--products {
    height: 1890px;
    top: 950px;
  }
  .sidebar {
    max-width: 335px;
    margin-top: 2.375rem;
  }
  .topMv-lead__main {
    font-size: 1.875rem;
    line-height: 1.6;
    margin-top: 0.875rem;
  }
  .pageMv-lead__main {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .pageMv-lead__sub {
    font-size: 0.875rem;
    line-height: 1.595;
  }
  .serviceDetail__title {
    font-size: 1.375rem;
    line-height: 1.5;
    margin-left: 0;
    margin-top: 1rem;
  }
  .serviceDetail__title_wh {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-left: 0;
    margin-top: 1rem;
  }
  .plan_text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-left: 0;
    margin-top: 1rem;
	margin-bottom:2rem;
  }
  .serviceDetail__title4 {
    font-size: 1.7rem;
    line-height: 1.5;
    margin-left: 0;
    margin-top: 1rem;
  }
  .topLead-content__backText {
    font-size: 4.25rem;
    line-height: 1.04;
    top: 270px;
    right: auto;
    left: 37px;
  }
  .feature-text__number {
    font-size: 3.75rem;
    line-height: 0.54;
    border-right: none;
    padding-right: 0;
    border-bottom: 2px solid #E5E5E5;
    padding-bottom: 1.75rem;
  }
  .oneStop-flowListWrapper {
    margin:0 auto;
  }
  .oneStop-text {
    left: -160px;
  }
  .oneStop-illustList__item:not(:first-child) {
    margin-left: 0;
  }
  .ecoDetail-imgWrapper {
    width: 100%;
    padding: 2.625rem 1.375rem;
    margin-top: 3.125rem;
  }
  .choice-title {
    width: 100%;
    padding: 1.4375rem 0.25rem;
    text-align: center;
  }
}



@media screen and (max-width: 1199px) {
  .global-nav {
    display: none;
  }
  .drawer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 24px;
    height: 48px;
    position: absolute;
    right: 48px;
  }
  .min-xl {
    display: none;
  }
  .pageFeature-list__item {
    width: calc(50% - 0.875rem);
  }
  .pageFeature-list__item:nth-child(n+4) {
    /*margin-top: auto;*/
  }
  .pageFeature-list__item:not(:nth-child(3n)) {
    margin-right: auto;
  }
  .pageFeature-list__item:nth-child(n+3) {
    margin-top: 2rem;
  }
  .pageFeature-list__item:not(:nth-child(2n)) {
    margin-right: 1.75rem;
  }
    
   .pageFeature-list__items {
    width: calc(50% - 0.875rem);
  }
  .pageFeature-list__items:nth-child(n+4) {
    /*margin-top: auto;*/
  }
  .pageFeature-list__items:not(:nth-child(3n)) {
    margin-right: auto;
  }
  .pageFeature-list__items:nth-child(n+3) {
    margin-top: 2rem;
  }
  .pageFeature-list__items:not(:nth-child(2n)) {
    margin-right: 1.75rem;
  }
    
  .pickupList__item {
    width: calc(33.3% - 1.2083333333rem);
  }
  .pickupList__item:nth-child(n+4) {
    margin-top: 1.8125rem;
  }
  .pickupList__item:not(:nth-child(3n)) {
    margin-right: 1.8125rem;
  }
  .serviceDetail-text--nowrap {
    white-space: inherit;
  }
  .serviceDetail-text_sub1--nowrap {
    white-space: inherit;
  }
  .venderList__item {
    width: 19.6666666667%;
  }
  .venderList__item:nth-child(5n)::after, .venderList__item:last-child::after {
    display: block;
  }
  .venderList__item:nth-child(n+7) {
    margin-top: 1.5rem;
  }
  .archiveList__item {
    width: calc(50% - 0.9375rem);
  }
  .archiveList__item:nth-child(n+3) {
    margin-top: 4.375rem;
  }
  .archiveList__item:not(:nth-child(2n)) {
    margin-right: 1.875rem;
  }
  .feature-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4rem 2rem;
  }
  .feature-text {
    width: 100%;
  }
  .feature-imgWrapper {
    width: 100%;
  }
  .feature-list__item--rowReverse .feature-text {
    width: 100%;
  }
  .feature-list__item--rowReverse .feature-imgWrapper {
    margin-left: auto;
    margin-right: auto;
  }
  .products-contentsList__item {
    width: 580px;
  }
  .products-listBody {
    padding: 2.75rem 2rem;
  }
  .oneStop-flowList__item {
    width: 12vw;
    font-size: 0.98vw;
    padding-left: 1.8vw;
  }
  .oneStop-flowList__item::after {
    width: 4.8vw;
    left: calc(100% - 2.7vw);
  }
  .settlementList__item::before {
    font-size: 3.75rem;
  }
  .settlementList__item::after {
    display: none;
  }
  .ecoDetail-imgList__item:first-child {
    width: auto;
  }
  .productList__item {
    width:calc(50% - 1.75rem);
  }
  .productList__item:nth-child(n+3) {
    margin-top: 1.5rem;
  }
  .productList__item:not(:nth-child(2n)) {
    margin-right: 3.5rem;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .drawer {
    right: 24px;
  }
  .pickupList__item {
    width: 100%;
  }
  .pickupList__item:nth-child(n+4) {
    margin-top: 0;
  }
  .pickupList__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .pickupList__item:not(:first-child) {
    margin-top: 2.5625rem;
  }
  .archiveList__item {
    width: 100%;
  }
  .archiveList__item:nth-child(n+3) {
    margin-top: 0;
  }
  .archiveList__item:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .archiveList__item:not(:first-child) {
    margin-top: 2.5rem;
  }
  .feature-list__item {
    padding: 1.875rem 1.1875rem;
  }
  .feature-imgWrapper {
    margin-top: 1.5rem;
  }
  .products-contentsList__item {
    width: 327px;
    height: auto;
  }
  .products-contentsList__item:not(:first-child) {
    margin-top: 4.8125rem;
  }
  .products-listBody {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 374px) {
  .pageFeature-lead {
    white-space: inherit;
  }
  .oneStop-illustList-title {
    white-space: inherit;
  }
}

@media screen and (min-width: 1200px) {
  .pageFeature-list__item {
    width: calc(19.4% - 1.1666666667rem);
  }
  .pageFeature-list__item:nth-child(n+4) {
    /*margin-top: 6.0625rem;*/
  }
  .pageFeature-list__item:not(:nth-child(5n)) {
    margin-right: 1.75rem;
  }
  .pageFeature-list__items {
    width: calc(33.3% - 1.1666666667rem);
  }
  .pageFeature-list__items:nth-child(n+4) {
    /*margin-top: 6.0625rem;*/
  }
  .pageFeature-list__items:not(:nth-child(3n)) {
    margin-right: 1.75rem;
  }
  .pickupList__item {
    width: calc(33.2% - 1.1666666667rem);
  }
  .pickupList__item:nth-child(n+4) {
    margin-top: 1.8125rem;
  }
  .pickupList__item:not(:nth-child(3n)) {
    margin-right: 1.8125rem;
  }
  .serviceDetail-text--nowrap {
    white-space: nowrap;
  }
  .serviceDetail-text_sub1--nowrap {
    white-space: nowrap;
  }
  .venderList__item {
    width: 19.6666666667%;
  }
  .venderList__item:nth-child(5n)::after, .venderList__item:last-child::after {
    display: block;
  }
  .venderList__item:nth-child(n+7) {
    margin-top: 1rem;
  }
  .archiveList__item {
    width: calc(50% - 0.9375rem);
  }
  .archiveList__item:nth-child(n+3) {
    margin-top: 4.5rem;
  }
  .archiveList__item:not(:nth-child(2n)) {
    margin-right: 1.875rem;
  }
  .productList__item {
    width:calc(50% - 1.75rem);
  }
  .productList__item:nth-child(n+5) {
    margin-top: 1.5rem;
  }
  .productList__item:not(:nth-child(2n)) {
    margin-right:3.5rem;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) {
  .pageFeature-list__item {
    /*width: 100%;*/
    margin-right: auto;
    margin-left: auto;
    padding: 5.1875rem 0 0rem;
  }
  .pageFeature-list__item:nth-child(n+3) {
    /*margin-top: auto;*/
  }
  .pageFeature-list__item:not(:nth-child(2n)) {
    margin-right: auto;
  }
  .pageFeature-list__item:not(:first-child) {
    /*margin-top: 1.875rem;*/
  }
  .pageFeature-list__items {
    /*width: 100%;*/
    margin-right: auto;
    margin-left: auto;
    padding: 5.1875rem 0 0rem;
  }
  .pageFeature-list__items:nth-child(n+3) {
    /*margin-top: auto;*/
  }
  .pageFeature-list__items:not(:nth-child(2n)) {
    margin-right: auto;
  }
  .pageFeature-list__items:not(:first-child) {
    /*margin-top: 1.875rem;*/
  }
  .venderList__item {
    width: 20%;
  }
  .venderList__item:nth-child(6n)::after, .venderList__item:last-child::after {
    display: none;
  }
  .venderList__item:nth-child(n+7) {
    margin-top: 0;
  }
  .venderList__item:nth-child(4n)::after, .venderList__item:last-child::after {
    display: block;
  }
  .venderList__item:nth-child(n+6) {
    margin-top: 1rem;
  }
  .oneStop-flowList__item {
    width: 100%;
    height: 85px;
    font-size: 0.875rem;
    padding-top: 0.875rem;
    padding-left: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .oneStop-flowList__item::after {
    width: 100%;
    height: 45px;
    background-image: url("../img/oneStop-flow-1.webp");
    top: calc(100% - 18px);
    left: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .productList__item {
    width:calc(50% - 1.75rem);
  }
  .productList__item:nth-child(n+4) {
    margin-top: 0;
  }
  .productList__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .productList__item:nth-child(n+3) {
    margin-top: 1.5rem;
  }
  .productList__item:not(:nth-child(2n)) {
    margin-right: 3.5rem;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {
  .venderList__item {
    width: 50%;
  }
  .venderList__item:nth-child(4n)::after, .venderList__item:last-child::after {
    display: none;
  }
  .venderList__item:nth-child(n+5) {
    margin-top: 0;
  }
  .venderList__item:nth-child(2n)::after, .venderList__item:last-child::after {
    display: block;
  }
  .venderList__item:nth-child(n+3) {
    margin-top: 0.625rem;
  }
  .productList__item {
    width: 100%;
  }
  .productList__item:nth-child(n+3) {
    margin-top: 0;
  }
  .productList__item:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .productList__item:not(:first-child) {
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 1399px) {
  .feature-text__title {
    white-space: inherit;
    font-size: 1.8rem;
  }
  .feature-text__item {
    font-size: 1.15rem;
  }
  _::-webkit-full-page-media,
_:future,
:root .feature-text__item {
    font-size: 1.15rem;
  }
}

@media screen and (max-width: 1399px) and (max-width: 1023px) {
  .feature-text__title {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 1399px) and (max-width: 1023px) and (max-width: 767px) {
  .feature-text__title {
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
    padding: 0;
    margin-top: 1rem;
    margin-left: 0;
  }
}

@media screen and (max-width: 1399px) and (max-width: 767px) {
  .feature-text__item {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
    padding: 0.625rem 0 0.625rem 1.875rem;
  }
  _::-webkit-full-page-media,
_:future,
:root .feature-text__item {
    font-size: 0.875rem;
  }
}

.sec03{
    padding-top: 2.625rem;
	position: relative;
}



img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
	-webkit-box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
    box-shadow: 30px 30px 70px -30px rgba(0, 0, 0, 0.2);
}


section.serviceDetail.test11 {
	margin-top: 0;
	position: relative;
	max-width: 1440px;
    margin: 0 auto;
}

.test11::before {
background-color: #EBE2D8;
    content: '';
    height: 440px;
    left: 0;
    top: 300px;
    position: absolute;
    width: 54%;
    z-index: -1;
    border-radius: 0px 0px 0px 0px;
}
@media screen and (max-width: 900px) {
.test11::before {
	background-color: #EBE2D8;
    content: '';
    height: 360px;
    left: 0;
    margin-top: 300px;
    position: absolute;
    width: 70%;
    z-index: -1;
    border-radius: 0px 0px 0px 0px;
}
}
.test12::before {
    background-color: #fafafa;
    content: '';
    height: 60%;
    left: 0;
    position: absolute;
    width: 83%;
    z-index: -1;
    border-radius: 0px 100px 100px 0px;
    margin: -60px 0px 0px 0px;
}

@media screen and (max-width: 900px) {
.test12::before {
    background-color: #fafafa;
    content: '';
    height: 300px;
    left: 0;
    position: absolute;
    width: 96%;
    z-index: -1;
    border-radius: 0px 100px 100px 0px;
    margin: -60px 0px 0px 0px;
}
}

@media screen and (max-width: 767px) {
.test12::before {
    background-color: #fafafa;
    content: '';
    height: 600px;
    left: 0;
    position: absolute;
    width: 96%;
    z-index: -1;
    border-radius: 0px 100px 100px 0px;
    margin: -60px 0px 0px 0px;
}
}
img.achievements{
	    border-radius: 8px;
}

p.blue {
    font-size: 20px;
    color: #324356;
    font-weight: bold;
    margin-top: 50px;
    letter-spacing: 0.06rem;
	line-height: 1.4;
text-decoration: underline;
    text-decoration-thickness: 2px;
  font-family:"Noto Sans JP", sans-serif;
}

p.maintext {
    font-size: 30px;
    color: #000;
    font-weight: bold;
    margin-top: 0px;
    letter-spacing: 0.06rem;
}


p.hosoku {
    font-size: 18px;
    color: #000;
    font-weight:bold;
    margin-top: 50px;
    letter-spacing: 0.06rem;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {

p.blue {
    font-size: 15px;
    color: #284669;
    font-weight: 700;
    margin-top: 30px;
    letter-spacing: 0.06rem;
	line-height: 1.7;
}

p.maintext {
    font-size: 22px;
    color: #000;
    font-weight: bold;
    margin-top: 0px;
    letter-spacing: 0.06rem;
}


p.hosoku {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-top: 30px;
    letter-spacing: 0.06rem;
}
	
.updateDetail-textList__item_blue {
  padding-left: 0;
  position: relative;
    font-size: 18px;
    color: #284669;
    font-weight: bold;
    letter-spacing: 0.06rem;
	line-height: 1.4;
}

.updateDetail-textList__item_maintext {
  padding-left: 0;
  position: relative;
    font-size: 22px;
    color: #000;
    font-weight: bold;
    margin-top: 0px;
    letter-spacing: 0.06rem;
}

.updateDetail-textList__item_hosoku {
  padding-left: 0;
  position: relative;
    font-size: 13px;
    color: #000;
    font-weight: bold;
    margin-top: 10px;
    letter-spacing: 0.06rem;
}
	
}

.slick-slide img {
    display: block;
    border-radius: 0px;
}

@media(min-width:901px){
    .p-flow__list_sp{
        display: none !important;
    }
}
@media(max-width:900px){
    .p-flow__list{
        display: none !important;
    }
}



ul.serviceDetail-list {
	padding-bottom: 60px;
}

@media screen and (max-width: 1023px) and (max-width: 767px){
ul.serviceDetail-list {
	padding-bottom: 60px;
}
}


.baseBox {
 /* --- 親BOXの定義 --------------------------------------------*/
display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 110px;
    /*background: #fff;*/
    margin-bottom: 20px;
}

 /* --- 前面文字の定義 -----------------------------------------*/
.baseBox .frontStr {
position: absolute;
    display: inline-block;
    position: absolute;
    font-size: 34px;
    text-align: center;
	font-weight: 700;
font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
    top: 52px;
    left: 0;
    right: 0;
    bottom: 0px;
    letter-spacing: 0.06em;
}
 /* --- 背景透かし文字の定義 -----------------------------------*/
.baseBox .backStr {
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    font-size: 7.6rem;
    font-weight: bold;
	text-shadow: 1px 0 0 #ccc, 0 1px 0 #ccc, -1px 0 0 #ccc, 0 -1px 0 #ccc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  font-family: "Hanken Grotesk", sans-serif;
	color: #F7F2F0;
    letter-spacing: 0.06em;
}

.baseBox .backStr2 {
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    font-size: 7.6rem;
    font-weight: bold;
	text-shadow: 1px 0 0 #ccc, 0 1px 0 #ccc, -1px 0 0 #ccc, 0 -1px 0 #ccc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-family: "Hanken Grotesk", sans-serif;
	color: #FFF;
    letter-spacing: 0.06em;
}

.baseBox_profile {
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
}


 /* --- 前面文字の定義 -----------------------------------------*/
.baseBox_profile .frontStr_profile {
display: inline-block;
    position: absolute;
    font-size: 34px;
    text-align: center;
    font-weight: 700;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
    line-height: 3.4rem;
    top: 47px;
    left: 0;
    right: 0;
    bottom: 0px;
    letter-spacing: 0.06em;
}
 /* --- 背景透かし文字の定義 -----------------------------------*/
.baseBox_profile .backStr_profile {
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    font-size: 7.6rem;
    font-weight: bold;
    text-shadow: 1px 0 0 #ccc, 0 1px 0 #ccc, -1px 0 0 #ccc, 0 -1px 0 #ccc;
    top: 31%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Hanken Grotesk", sans-serif;
    color: #F7F2F0;
    letter-spacing: 0.06em;
}

@media screen and (max-width: 1023px) and (max-width: 767px){
	
.baseBox {
 /* --- 親BOXの定義 --------------------------------------------*/
display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 80px;
    /*background: #fff;*/
    margin-bottom: 20px;
}
 /* --- 前面文字の定義 -----------------------------------------*/
.baseBox .frontStr {
position: absolute;
    display: inline-block;
    position: absolute;
    font-size: 1.7rem;
    text-align: center;
	font-weight: 700;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
    top: 36px;
    left: 0;
    right: 0;
    bottom: 0px;
    letter-spacing: 0.06em;
}
 /* --- 背景透かし文字の定義 -----------------------------------*/
.baseBox .backStr {
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    font-size: 5.6rem;
    font-weight: bold;
	text-shadow: 1px 0 0 #ccc, 0 1px 0 #ccc, -1px 0 0 #ccc, 0 -1px 0 #ccc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-family: "Hanken Grotesk", sans-serif;
	color: #F7F2F0;
    letter-spacing: 0.03em;
}
	
.baseBox_profile {
 /* --- 親BOXの定義 --------------------------------------------*/
display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 141px;
    margin-bottom: 20px;
	}
 /* --- 前面文字の定義 -----------------------------------------*/
.baseBox_profile .frontStr_profile {
position: absolute;
    display: inline-block;
    position: absolute;
    font-size: 1.7rem;
    text-align: center;
    font-weight: 700;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
    top: 36px;
    left: 0;
    right: 0;
    bottom: 0px;
    letter-spacing: 0.06em;
    line-height: 2.3rem;
    width: 90%;
    text-align: center;
    margin: 0 auto;
}
 /* --- 背景透かし文字の定義 -----------------------------------*/
.baseBox_profile .backStr_profile {
position: absolute;
    display: inline-block;
    white-space: nowrap;
    font-size: 5.6rem;
    font-weight: bold;
    text-shadow: 1px 0 0 #ccc, 0 1px 0 #ccc, -1px 0 0 #ccc, 0 -1px 0 #ccc;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Hanken Grotesk", sans-serif;
    color: #F7F2F0;
    letter-spacing: 0.03em;
}
	
.baseBox .backStr2 {
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    font-size: 5rem;
    font-weight: bold;
	text-shadow: 1px 0 0 #ccc, 0 1px 0 #ccc, -1px 0 0 #ccc, 0 -1px 0 #ccc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-family: "Hanken Grotesk", sans-serif;
	color: #FFF;
    letter-spacing: 0.03em;
}
	
}

.rard{
	width: 86%;
	margin: 0 auto;
}


.test {
    width: 100%;
    display: flex;
    justify-content: center;
}

img.img2 {
    width: 55%;
    margin-right: 15px;
    left: 0;
    position: relative;
}

img.img3 {
    width: 65%;
	margin-left: 15px;
    right: 0;
    position: relative;
}

.test_AAA {
    /*width: 100%;
    display: flex;
    justify-content: center;*/
	width: 83%;
    margin-right: 20px;
    left: 0;
    position: relative;
}

.test_CCC {
    /*width: 100%;
    display: flex;
    justify-content: center;*/
	width: 83%;
    margin-right: 20px;
    left: 0;
    position: relative;
}

.test_EEE {
    /*width: 100%;
    display: flex;
    justify-content: center;*/
	width: 83%;
    margin-right: 20px;
    left: 0;
    position: relative;
}



@media screen and (max-width: 1024px) {
.test_AAA {
    /*width: 100%;
    display: flex;
    justify-content: center;*/
	width: 100%;
    margin-right: 0px;
    left: 0;
    position: relative;
}
	
.test_CCC {
    /*width: 100%;
    display: flex;
    justify-content: center;*/
	width: 100%;
    margin-right: 0px;
    left: 0;
    position: relative;
}

.test_EEE {
    /*width: 100%;
    display: flex;
    justify-content: center;*/
	width: 100%;
    margin-right: 0px;
    left: 0;
    position: relative;
}
}

.test_BBB {
    /*width: 100%;
    display: flex;
    justify-content: center;*/
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 260px;
}

.test_DDD {
    /*width: 100%;
    display: flex;
    justify-content: center;*/
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 260px;
}

.test_FFF {
    /*width: 100%;
    display: flex;
    justify-content: center;*/
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 260px;
}


@media screen and (max-width: 1300px) {
.test_BBB {
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 210px;
	}
	
.test_DDD {
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 210px;
	}
.test_FFF {
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 210px;
	}
}

@media screen and (max-width: 1200px) {
.test_BBB {
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 200px;
	}
	
.test_DDD {
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 200px;
	}
.test_FFF {
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 200px;
	}
}

@media screen and (max-width: 1100px) {
.test_BBB {
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 190px;
	}
.test_DDD {
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 190px;
	}
.test_FFF {
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 190px;
	}
}

@media screen and (max-width: 1000px) {
.test_BBB {
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 170px;
	}
.test_DDD {
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 170px;
	}
.test_FFF {
    width: 35%;
    margin-left: 20px;
    right: 0;
    position: relative;
    margin-top: 170px;
	}
}

@media screen and (max-width: 767px) {
.test {
    width: 100%;
    display: flex;
    justify-content: center;
	flex-direction: column;
}

img.img2 {
    width: 60%;
    margin-right: 0px;
    left: -20px;
    position: relative;
}

img.img3 {
    width: 90%;
	margin-left: 60px;
    right: 0;
    position: relative;
	margin-top: 20px;
}
	
.test_AAA {
    width: 100%;
    margin-right: 0px;
    /*left: -20px;*/
    position: relative;
}
	
.test_CCC {
    width: 100%;
    margin-right: 0px;
    /*left: -20px;*/
    position: relative;
}
	
.test_EEE {
    width: 100%;
    margin-right: 0px;
    /*left: -20px;*/
    position: relative;
}

	.test_BBB {
		    width: 35%;
	margin-left: 60px;
    right: 0;
    position: relative;
	margin-top: 20px;
	}
	
	.test_DDD {
		    width: 35%;
	margin-left: 60px;
    right: 0;
    position: relative;
	margin-top: 20px;
	}
	.test_FFF {
		    width: 35%;
	margin-left: 60px;
    right: 0;
    position: relative;
	margin-top: 20px;
	}

	
}

.test13::before {
    background-color: #fff;
    content: '';
    height: 1340px;
    left: 0;
    top: 100px;
    position: absolute;
    width: 100%;
    z-index: -1;
    border-radius: 0px 0px 0px 0px;
}



@media screen and (max-width: 1200px) {
.test13::before {
    height: 1400px;
}
}


@media screen and (max-width: 767px) {
.test13::before {
    height: 1200px;
}
}

.test14::before {
    background-color: #F7F2F0;
    content: '';
    height: 1200px;
    left: 0;
    top: 100px;
    position: absolute;
    width: 100%;
    z-index: -1;
    border-radius: 0px 0px 0px 0px;
}

.test15::before {
    background-color: #324356;
    content: '';
    height: 280px;
    left: 0;
    top: 50px;
    position: absolute;
    width: 100%;
    z-index: -1;
    border-radius: 0px 0px 0px 0px;
}

section.serviceDetail_10.test14{
	background: #F7F2F0;
	padding-top: 4.4375rem;
}


section.serviceDetail.test15{
	/*background: #F7F2F0;*/
	padding-top: 6.4375rem;
	margin-bottom: 100px;
}

@media screen and (max-width: 700px){
section.serviceDetail.test15{
	/*background: #F7F2F0;*/
	padding-top: 6.4375rem;
	margin-bottom: 40px;
}
}

    .triangle {
width: 0;
    height: 0;
    border-right: 42px solid transparent;
    border-left: 42px solid transparent;
    border-top: 22px solid #324356;
    margin: 0 auto;
    }

    .triangle_arrow {
width: 30px;
    margin: 20px auto;
    }





  .test_AAA {
    position: relative;
  }

  .test_AAA img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .test_AAA img.active {
    opacity: 1;
  }

  .test_CCC {
    position: relative;
  }

  .test_CCC img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .test_CCC img.active {
    opacity: 1;
  }

  .test_EEE {
    position: relative;
  }

  .test_EEE img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .test_EEE img.active {
    opacity: 1;
  }

  .test_BBB {
    position: relative;
  }

  .test_BBB img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .test_BBB img.active {
    opacity: 1;
  }

  .test_DDD {
    position: relative;
  }

  .test_DDD img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .test_DDD img.active {
    opacity: 1;
  }

  .test_FFF {
    position: relative;
  }

  .test_FFF img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .test_FFF img.active {
    opacity: 1;
  }

#contentst {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 260px;
}

@media screen and (max-width: 1220px) {
#contentst {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 230px;
}
}


@media screen and (max-width: 1200px) {
#contentst {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 220px;
}
}

@media screen and (max-width: 1150px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
  margin-top: 215px;
	margin-bottom: 30px;
}
}

@media screen and (max-width: 1100px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
  margin-top: 210px;
	margin-bottom: 30px;
}
}

@media screen and (max-width: 1050px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
  margin-top: 200px;
	margin-bottom: 30px;
}
}

@media screen and (max-width: 1024px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(71vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 1000px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(72vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 950px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(73vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 900px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(74vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 850px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(75vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 800px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(76vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 750px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(77vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 700px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(78vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 650px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(79vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 600px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(80vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 550px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(80vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 500px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(83vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 450px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: calc(87vw - 100px);
	margin-bottom: 30px;
}
}

@media screen and (max-width: 390px){
#contentst {
    /* display: none; */
	width: 100%;
	display: flex;
    justify-content: center;
    margin-top: 240px;
	margin-bottom: 30px;
}
}

#maint {
    max-width: 72%;
    flex: 1;
    background: rgba(255, 255, 255, 0);
    height: 38px;
}
#subt {
	width: 17%;
    padding-top: 13px;
    height: 38px;
    background: rgba(255, 255, 255, 0);
}

#prev {
width: 6%;
    height: 38px;
    background: rgba(255, 255, 255, 0);
}

#next {
    width: 6%;
    height: 38px;
    background: rgba(255, 255, 255, 0);
}

@media screen and (max-width: 1150px) {
#maint {
    max-width: 70%;
    flex: 1;
    background: rgba(255, 255, 255, 0);
    height: 38px;
}
#subt {
	width: 18%;
    padding-top: 13px;
    height: 38px;
    background: rgba(255, 255, 255, 0);
}

#prev {
width: 5%;
    height: 38px;
    background: rgba(255, 255, 255, 0);
}

#next {
    width: 5%;
    height: 38px;
    background: rgba(255, 255, 255, 0);
}
}

@media screen and (max-width: 1024px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 1000px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 950px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 900px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 850px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 800px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 750px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 700px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 650px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 600px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 550px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 500px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 450px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 390px) {
#prev {
	width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px;
}
}

@media screen and (max-width: 1024px) {
    #next {
        width: 20%;
        height: 22px;
        background: rgba(255, 255, 255, 0);
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 1000px) {
    #next {
        width: 20%;
        height: 22px;
        background: rgba(255, 255, 255, 0);
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 950px) {
    #next {
        width: 20%;
        height: 22px;
        background: rgba(255, 255, 255, 0);
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 900px) {
    #next {
        width: 20%;
        height: 22px;
        background: rgba(255, 255, 255, 0);
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 850px) {
    #next {
        width: 20%;
        height: 22px;
        background: rgba(255, 255, 255, 0);
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 800px) {
    #next {
        width: 20%;
        height: 22px;
        background: rgba(255, 255, 255, 0);
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 750px) {
    #next {
        width: 20%;
        height: 22px;
        background: rgba(255, 255, 255, 0);
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 700px) {
    #next {
        width: 20%;
        height: 22px;
        background: rgba(255, 255, 255, 0);
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 650px) {
    #next {
        width: 20%;
        height: 22px;
        background: rgba(255, 255, 255, 0);
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 600px) {
    #next {
        width: 20%;
        height: 22px;
        background: rgba(255, 255, 255, 0);
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 550px) {
#next {
    width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px
}
}

@media screen and (max-width: 500px) {
#next {
    width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px
}
}

@media screen and (max-width: 450px) {
#next {
    width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px
}
}


@media screen and (max-width: 390px) {
#next {
    width: 20%;
    height: 22px;
    background: rgba(255, 255, 255, 0);
	text-align: center;
	font-size: 12px
}
}

#contentst_A {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
#contentst_A {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0px;
}
}
#maint_A {
    max-width: 70%;
    flex: 1;
    background: rgba(255, 255, 255, 0);
    height: 100px;
    font-size: 30px;
    color: #000;
    font-weight: bold;
    margin-top: 0px;
    letter-spacing: 0.06rem;
    line-height: 3rem;
}
#maint_Asub {
    max-width: 70%;
    flex: 1;
    background: rgba(255, 255, 255, 0);
    height: 100px;
    font-size: 30px;
    color: #000;
    font-weight: bold;
    margin-top: 0px;
    letter-spacing: 0.06rem;
    line-height: 3rem;
}
#maint_Asub2 {
    max-width: 73%;
    flex: 1;
    background: rgba(255, 255, 255, 0);
    height: 100px;
    font-size: 30px;
    color: #000;
    font-weight: bold;
    margin-top: 0px;
    letter-spacing: 0.06rem;
    line-height: 3rem;
}
#subt_A {
    width: 300px;
    height: 100px;
    background: #324356;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px 10px 20px;
}
#subt_Asub {
    width: 307px;
    height: 100px;
    background: #324356;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px 10px 20px;
}

#subt_Asub2 {
    width: 270px;
    height: 100px;
    background: #324356;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px 10px 20px;
}

span.tesre {
	font-size: 24px;
    color: #000;
    font-weight: bold;
    letter-spacing: 0.06rem;
    line-height: 1.4;
}


@media screen and (max-width: 767px) {

span.tesre {
	font-size: 16px;
    color: #000;
    font-weight: bold;
    letter-spacing: 0.06rem;
    line-height: 1.4;
	margin-top: 10px;
}
	
}

span.cast {
    font-size: 24px;
}
@media screen and (max-width: 767px) {
span.cast {
    font-size: 18px;
}
}

@media screen and (max-width: 767px) {
  #contentst {
    width: 100%;
    /*display: block;*/
  }
  #maint {
    max-width: 100%;
  }
  #subt {
    width: 100%;
  }
  #maint_A {
    max-width: 100%;
    flex: 1;
    background: rgba(255, 255, 255, 0);
    height: 100px;
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-top: 0px;
    letter-spacing: 0.06rem;
    line-height: 2.5rem;
  }
  #maint_Asub {
    max-width: 100%;
    flex: 1;
    background: rgba(255, 255, 255, 0);
    height: 100px;
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-top: 0px;
    letter-spacing: 0.06rem;
    line-height: 2.5rem;
  }
  #maint_Asub2 {
    max-width: 100%;
    flex: 1;
    background: rgba(255, 255, 255, 0);
    height: 100px;
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-top: 0px;
    letter-spacing: 0.06rem;
    line-height: 2.5rem;
  }
  #subt_A {
    width: 100%;
    height: 80px;
    background: #324356;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px 10px 20px;
  }
	
  #subt_Asub {
    width: 100%;
    height: 80px;
    background: #324356;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px 10px 20px;
	  margin-top: 0px;
  }
  #subt_Asub2 {
    width: 100%;
    height: 80px;
    background: #324356;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px 10px 20px;
	  margin-top: 20px;
  }
}


@media screen and (max-width: 450px) {
	
  #subt_Asub {
    width: 100%;
    height: 80px;
    background: #324356;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px 10px 20px;
	  margin-top: 40px;
  }
}

@media screen and (max-width: 1024px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}

@media screen and (max-width: 1000px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}

@media screen and (max-width: 950px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}

@media screen and (max-width: 900px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}
@media screen and (max-width: 850px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}

@media screen and (max-width: 800px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}

@media screen and (max-width: 750px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}

@media screen and (max-width: 700px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}


@media screen and (max-width: 650px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}

@media screen and (max-width: 600px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}

@media screen and (max-width: 550px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}

@media screen and (max-width: 500px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}

@media screen and (max-width: 450px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}

@media screen and (max-width: 390px) {
  #subt {
    width: 60%;
	padding-top: 11px;
    height: 22px;
  }
}

@media screen and (max-width: 550px) {
  #maint {
    max-width: 100%;
	display: none;
  }
}

@media screen and (max-width: 500px) {
  #maint {
    max-width: 100%;
	display: none;
  }
}

@media screen and (max-width: 450px) {
  #maint {
    max-width: 100%;
	display: none;
  }
}

@media screen and (max-width: 390px) {
  #maint {
    max-width: 100%;
	display: none;
  }
}


@media screen and (max-width: 767px) {
  #contentst_A {
    width: 100%;
    display: block;
	margin-top: 0px;
  }
}


@media screen and (max-width: 420px) {
  #contentst_A {
    width: 100%;
    display: block;
	margin-top: 0px;
  }
}



.progress-bar {
  height: 2px;
  width: 200px;
  background: lightgray;
}

@media screen and (max-width: 1150px) {
.progress-bar {
  height: 2px;
  width: 180px;
  background: lightgray;
}	
}

@media screen and (max-width: 1024px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}

@media screen and (max-width: 1000px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}

@media screen and (max-width: 950px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}

@media screen and (max-width: 900px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}

@media screen and (max-width: 850px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}

@media screen and (max-width: 800px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}

@media screen and (max-width: 750px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}

@media screen and (max-width: 700px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}

@media screen and (max-width: 650px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}

@media screen and (max-width: 600px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}

@media screen and (max-width: 550px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}

@media screen and (max-width: 500px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}


@media screen and (max-width: 390px) {
.progress-bar {
  height: 1px;
  width: 100%;
  background: lightgray;
}	
}

.loaded {
  height: 100%;
  width: 100%;
  background: #444;
  animation: 4s linear infinite loading;
  transform-origin: 0%;
}

@keyframes loading {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(100%);
  }
}




.contentst_B::before {
    background-color: #fff;
    content: '';
    height: 65%;
    right: -30px;
    position: absolute;
    top: 400px;
    width: 100%;
    z-index: -1;
    border-radius: 0px 0px 0px 0px;
}

@media screen and (max-width: 1024px) {

.contentst_B::before {
    background-color: #fff;
    content: '';
    height: 70%;
    right: -30px;
    position: absolute;
    top: 400px;
    width: 100%;
    z-index: -1;
    border-radius: 0px 0px 0px 0px;
}
}

@media screen and (max-width: 767px) {
.contentst_B::before {
background-color: #fff;
    content: '';
    height: 80%;
    right: 0px;
    position: absolute;
    top: 200px;
    width: 100%;
    z-index: -1;
    border-radius: 0px 0px 0px 0px;
}
}

@media screen and (max-width: 1024px) {
	.test_BBB{
		display: none;
	}
	
	.test_DDD{
		display: none;
	}
	.test_FFF{
		display: none;
	}
	
	/*#contentst{
		display: none;
	}*/
}


@media screen and (max-width: 767px){	
.pc_sub {
	display:none;
}
}


img.profile {
    border-radius: 8px;
}





/*===========================================================================*/
/*  cta  */
/*===========================================================================*/
.p-ctab {
    margin: 0 auto;
	text-align: center;
	display: none;
}


.p-ctab__content {
    width: 100%;
    position: relative;
    padding: 50px 20px 50px;
    /*background-color: #324356;*/
    color: #fff;
	text-align:center; 
	display: flex;
}
.p-ctab__content.--02 {
    background-color: #373737;
}

.p-ctab__content--bg {
    height: 100%;
    right: 64px;
    position: absolute;
    top: 0;
    width: auto;
    display: inline;
}

.p-ctab__content--bg img {
    height: 100%;
    width: auto;
}


.p-ctab__txt {
    margin-top: 2px;
    font-weight: 500;
    font-size: 15px;
    line-height: 192%;
    letter-spacing: .05em;
}

.p-ctab__btn {
    margin-top: 25px;
}

@media screen and (max-width: 900px) {
    .p-ctab {
        display: block;
    }
    
    .p-ctab__content {
        width: 100%;
        padding: 0px;
		display: flex;
    }
    .p-ctab__content.--02 {
        padding: 50px 10px;
    }
    
    .p-ctab__content--bg {
        height: auto;
        right: calc(50% - 373px);
        top: 51px;
        width: 746px;
        display: block;
    }
    
    .p-ctab__content--bg img {
        height: auto;
        width: 100%;
    }
    
    .p-ctab__txt {
        margin-top: 5px;
        font-size: 13px;
        line-height: 180%;
        text-align: center;
    }
    
    .p-ctab__btn {
        margin: 16px auto 0;
    }
}


a.btn3.test {
    background-color: #4D4D4D;
}

.btn3 {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #fff;
  background-color: #FEAD10;
  padding: 10px;
  width: 50%;
  font-weight: bold;
  position: relative;
}

.btn3::before, .btn3::after {
  content: "";
  display: block;
  position: absolute;
}
.btn3::before {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background-color: #fff;
  top: 50%;
  right: 31px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn3::after {
    width: 7px;
    height: 7px;
    border-top: 2px solid #48BAB2;
    border-right: 2px solid #48BAB2;
    top: 50%;
    right: 41px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
.btn3:focus, .btn3:hover {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .btn3 {
    font-size: 12px;
    padding: 0.875rem 2rem 0.875rem 2rem;
  }

.btn3::before {
    width: 14px;
    height: 14px;
    right: 18px;
  }
.btn3::after {
    width: 5px;
    height: 5px;
    border-top: 1px solid #48BAB2;
    border-right: 1px solid #48BAB2;
    top: 50%;
    right: 24px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}


}

a.btn.btn--header.head_doc{
	background: #4D4D4D;
}


.baseBox_flow {
 /* --- 親BOXの定義 --------------------------------------------*/
display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 110px;
    /*background: #fff;*/
    margin-bottom: 20px;
}

 /* --- 前面文字の定義 -----------------------------------------*/
.baseBox_flow .frontStr_flow {
position: absolute;
    display: inline-block;
    position: absolute;
    font-size: 34px;
    text-align: center;
	font-weight: 700;
font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
    top: 52px;
    left: 0;
    right: 0;
    bottom: 0px;
    letter-spacing: 0.06em;
}
 /* --- 背景透かし文字の定義 -----------------------------------*/
.baseBox_flow .backStr_flow {
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    font-size: 7.6rem;
    font-weight: bold;
	text-shadow: 1px 0 0 #ccc, 0 1px 0 #ccc, -1px 0 0 #ccc, 0 -1px 0 #ccc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  font-family: "Hanken Grotesk", sans-serif;
	color: #F7F2F0;
    letter-spacing: 0.06em;
}



@media screen and (max-width: 1023px) and (max-width: 767px){
	
.baseBox {
 /* --- 親BOXの定義 --------------------------------------------*/
display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 80px;
    /*background: #fff;*/
    margin-bottom: 20px;
}
 /* --- 前面文字の定義 -----------------------------------------*/
.baseBox .frontStr {
position: absolute;
    display: inline-block;
    position: absolute;
    font-size: 1.7rem;
    text-align: center;
	font-weight: 700;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
    top: 36px;
    left: 0;
    right: 0;
    bottom: 0px;
    letter-spacing: 0.06em;
}
 /* --- 背景透かし文字の定義 -----------------------------------*/
.baseBox .backStr {
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    font-size: 5.6rem;
    font-weight: bold;
	text-shadow: 1px 0 0 #ccc, 0 1px 0 #ccc, -1px 0 0 #ccc, 0 -1px 0 #ccc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-family: "Hanken Grotesk", sans-serif;
	color: #F7F2F0;
    letter-spacing: 0.03em;
}
	
	.baseBox_flow {
 /* --- 親BOXの定義 --------------------------------------------*/
display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 170px;
    /*background: #fff;*/
    margin-bottom: 20px;
}
 /* --- 前面文字の定義 -----------------------------------------*/
.baseBox_flow .frontStr_flow {
position: absolute;
    display: inline-block;
    position: absolute;
    font-size: 1.7rem;
    text-align: center;
	font-weight: 700;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif !important;
    top: 86px;
    left: 0;
    right: 0;
    bottom: 0px;
    letter-spacing: 0.06em;
line-height: 1.5;
}
 /* --- 背景透かし文字の定義 -----------------------------------*/
.baseBox_flow .backStr_flow {
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    font-size: 5.6rem;
    font-weight: bold;
	text-shadow: 1px 0 0 #ccc, 0 1px 0 #ccc, -1px 0 0 #ccc, 0 -1px 0 #ccc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-family: "Hanken Grotesk", sans-serif;
	color: #F7F2F0;
    letter-spacing: 0.03em;
}
	
}

.phone-call {
    margin: 0 20px 0 auto;
	width: 230px;
}

@media screen and (max-width: 900px) {
.phone-call {
    margin: 0 20px 0 auto;
	width: 150px;
}
}

.bottom {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    /* padding: 11px 40px 11px 35px; */
    z-index: 90;
    background-color: #F7F2F0;
}