@charset "UTF-8";

/* base
----------------------------------------- */
.effect {
opacity: 0;
transform: translateY(100px);
transition: all 1s;
will-change: transform, opacity;
}

.effect.active {
opacity : 1;
transform : translateY(0);
}

#main .wrapper {
position: relative;
container-type: inline-size;
}


/* firstview
----------------------------------------- */
.firstview {
margin: 0 auto;
width: 90%;
}
.firstview .anima {
position: relative;
overflow: hidden;
}
.firstview .sel01 {
position: relative;
z-index: 10;
}
.firstview .sel02 {
top: 0;
left: 0;
position: absolute;
z-index: 20;
animation-delay: 1s;
}
.firstview .column .leftCol {
font-weight: 900;
line-height: 1.8;
text-shadow: 0 0.2em 0 #fff362;
}
.firstview .column .leftCol span {
position: relative;
overflow: hidden;
}
.firstview .column .leftCol span::after {
content: "";
display: block;
width: 100%;
height: 100%;
position: absolute;
background-color: #ffffff;
top: 0;
animation: blindEffect 1s .2s forwards;
transition-delay: .1s;
transition-duration: 1s;
transition-timing-function: ease-out;
}
@keyframes blindEffect {
0% {
top: 0;
}
100% {
top: -100%;
}
}

.firstview .column .rightCol {
transition : all 1s;
transition-delay: .1s;
opacity: 0;
animation: fadeEffect 2s .5s forwards;
}
@keyframes fadeEffect {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

.firstview figcaption {
line-height: 1.8;
display: grid;
place-content: center;
grid-template-columns: 30%  70%;
grid-template-rows: repeat( 1 , 1fr );
gap: 0px;
}
.firstview figcaption .boxRow {
padding: 0.5em;
text-align: right;
}
.firstview figcaption .boxItem {
padding: 0.5em;
width: 100%;
}
.firstview figcaption small {
 display: block;
 }
.firstview .columnFoot {
transform : translate(0, 0);
text-indent: 1em;
opacity: 0;
animation: textanimation 2s 1s forwards;
}
@keyframes textanimation {
0% {
clip-path: inset(0 100% 0 0);
opacity: 0;
}
100% {
clip-path: inset(0);
opacity: 1;
}
}


/* section h2〜
----------------------------------------- */
#pickup .sec01 > .active {
animation-delay: 1s;
}
#pickup .sec02 > .active {
animation-delay: 1.5s;
}
#pickup section h2 {
padding-bottom: 1.5em;
display: grid;
width: 100%;
background-position: right;
background-repeat: no-repeat;
background-size: cover;
color: #009844;
text-align: center;
text-shadow: 0 0.2em 0 #fff362;
place-items: center;
position: relative;
}
#pickup .sec01 h2 {
background-image: url("images/img_bk_sec01.png");
}
#pickup .sec02 h2 {
background-image: url("images/img_bk_sec02.png");
}
#pickup section h2 strong {
display: block;
}
#pickup section h2 span {
display: block;
position: relative;
}
#pickup section h2 .txtimg {
margin-left: auto;
margin-right: auto;
}
#pickup .sec02 h2 span::before,
#pickup .sec02 h2 span::after {
content: "";
display: block;
position: absolute;
top: auto;
bottom: auto;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
#pickup .sec02 h2 span::before {
background-image: url("images/icon_kira01.png");
}
#pickup .sec02 h2 span::after {
background-image: url("images/icon_kira02.png");
}
#pickup .tape {
box-decoration-break: clone;	
-webkit-box-decoration-break: clone;
display: inline;
padding: .3em;
line-height: 2.5;
background: -webkit-linear-gradient(left, rgb(255,243,98) 50%, transparent 50%);
background: -moz-linear-gradient(left, rgb(255,243,98) 50%, transparent 50%);
background: linear-gradient(left, rgb(255,243,98) 50%, transparent 50%);
background-repeat: no-repeat;
background-size: 200% .8em; 
background-position: 100% .5em;
}
#pickup .active .tape {
background-position: 0% .5em;
transition-delay: 0.5s;
transition-duration: 3s;
transition-timing-function: ease-out;
}


/* Section Side Left
----------------------------------------- */
#Step {
margin-left: auto;
margin-right: auto;
}
#Step li {
position: relative;
}
#Step li:nth-last-child(n+3)::after {
content: "";
margin-right: auto;
display: block;
background-image: url("images/side_l_arrow.png");
background-position: 0 0;
background-repeat: no-repeat;
background-size: contain;
}


/* Footer
----------------------------------------- */
#footer {
padding-bottom: 2em;
}
#footer .wrap {
margin-left: auto;
margin-right: auto;
width: 100%;
}
#footer address {
margin-bottom: 0.6em;
border-top: 2px solid #000000;
border-bottom: 2px solid #000000;
text-align: center;
}
#footer address p {
display: block;
}
#footer .license {
color: #ffffff;
background-color:#009844;
}


/* KYOUTSU END // PC BASE ==================== */
@media only screen and (min-width: 1200px){

/* base
============================================== */

/* mainImg
============================================== */
#main #main-in > .wrapper {
width: calc(40% + 100vw * 2 / 750);
max-width: 750px;
height: 100%;
display: block;
background-color: #ffffff;
z-index: 50;
}
#main #main-in > .wrapper::after,
#main #main-in > .wrapper::before {
content: '';
margin: auto;
width: 50px;
height: 100%;
background-position: 0 0;
background-repeat: repeat-y;
background-size: contain;
position: absolute;
display: block;
z-index: 999;
top: 0;
}
#main #main-in > .wrapper::after {
background-image: url("images/img_bk_l.png");
left: -50px;
}
#main #main-in > .wrapper::before {
background-image: url("images/img_bk_r.png");
right: -50px;
}
#main #main-in {
align-items: flex-start;
}
#main #main-in > .wrapper > .container {
position: relative;
}
#main #main-in > .wrapper > .container::before,
#main #main-in > .wrapper > .container::after {
position: absolute;
}
#main #main-in > .wrapper > .container::before {
content: "お気軽にご相談ください♪";
animation: poyopoyo 3s ease-out infinite;
opacity: 1;
width: 1em;
height: 15em;
line-height: 1.2;
bottom: 5%;
left: -70px;
display: block;
font-family: "RocknRoll One";
}
@keyframes poyopoyo {
0%, 40%, 60%, 80% {
transform: scale(1.0);
}
50%, 70% {
transform: scale(0.95);
}
}

#main #main-in > .wrapper > .container::after {
content: "";
animation: fuwafuwa 3s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
width: 160px;
height: 160px;
bottom: 0;
left: -140px;
display: block;
background-image: url("images/img_main_chara.png");
background-position: 0 0;
background-repeat: no-repeat;
background-size: contain;
}
@keyframes fuwafuwa {
0% {
transform:translate(0, 0) rotate(-7deg);
}
50% {
transform:translate(0, -7px) rotate(0deg);
}
100% {
transform:translate(0, 0) rotate(7deg);
}
}
#sideBoxL {
width: calc(50% + 100vw * 2 / 750);
position: absolute;
top: 0;
left: -55%;
z-index: 80;
}
#sideBoxR {
width: calc(50% + 100vw * 2 / 750);
position: absolute;
top: 0;
right: -55%;
z-index: 80;
}


/* firstview
============================================== */
.firstview {
margin-right: auto;
margin-bottom: 10em;
margin-left: auto;
width: auto;
}
.firstview .column {
margin-bottom: 3em;
display: flex;
}
.firstview .column figure img {
width: 70%;
}
.firstview .column .leftCol {
width: 70%;
font-size: calc(100% + 340vw * 2 / 750);
text-align: center;
justify-content: center;
-webkit-align-items: center;
align-items: center;
word-break: auto-phrase;
}
.firstview .column .leftCol span {
display: block;
}
.firstview .column .rightCol {
width: 39%;
justify-content: center;
-webkit-align-items: center;
align-items: center;
}
.firstview .columnFoot {
font-size: calc(100% + 150vw * 2 / 750);
}

/* Section Content Main Position
============================================== */
#pickup section {
margin-right: auto;
margin-bottom: 10em;
margin-left: auto;
width: auto;
}
#pickup section h2 {
margin-bottom: 1.5em;
}
#pickup section h2 span {
margin-bottom: 1.2em;
line-height: 1.2;
font-size: 2em;
}
#pickup section h2 .txtimg {
width: 70%;
}
#pickup .sec01 img {
margin-top: 1em;
margin-bottom: 0.5em;
}
#pickup .sec02 span {
margin-top: 1em;
}
#pickup section h2 strong {
font-size: 1.2em;
}
#pickup section p {
font-size: calc(100% + 150vw * 2 / 750);
}
#pickup .sec02 h2 span::before,
#pickup .sec02 h2 span::after {
width: calc(12% + 100vw * 2 / 100);
height: calc(12% + 100vw * 2 / 100);
}
#pickup .sec02 h2 span::before {
top: 0;
left: -10%;
}
#pickup .sec02 h2 span::after {
top: 35%;
right: -7%;
}


/* Section Side Left
============================================== */
#sideBoxL {
padding-top: 100px;
padding-right: 50px;
text-align: center;
}
#sideBoxL .txtimgPc {
margin-left: auto;
margin-right: auto;
width: 100%;
}
#sideBoxL .contentWrap {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}
#sideBoxL .hBox {
grid-area: 1 / 2 / 2 / 3;
}
#sideBoxL .pBox {
text-align: right;
grid-area: 1 / 1 / 2 / 2;
}
#sideBoxL #Step {
grid-area: 2 / 1 / 3 / 3;
}
#sideBoxL .hBox .txtimgPc {
width: 75%;
}
#Step {
margin-top: 2em;
width: 75%;
}
#Step li:nth-last-child(n+3)::after {
margin-top: 0.5em;
margin-left: 55%;
width: 3em;
height: 3em;
}
#Step li.step03 {
margin-bottom: 3em;
}


/* Section Side Right
============================================== */
#sideBoxR {
margin-left: auto;
margin-right: auto;
padding-top: 100px;
padding-left: 50px;
text-align: center;
}
#sideBoxR ul {
margin-left: auto;
margin-right: auto;
display: block;
}
#sideBoxR .ichd .txtimgPc {
width: 6em;
}
#sideBoxR ul li {
margin-bottom: 1em;
flex-grow: 1;
}
#sideBoxR li .icImg {
display: block;
width: 80%;
}
#sideBoxR .contentWrap {
margin-bottom: 3em;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1);
grid-column-gap: 0px;
grid-row-gap: 0px;
}
#sideBoxR .contentWrap {
grid-area: 1 / 1 / 2 / 2;
}
#sideBoxR #Icon01 {
margin-top: 2em;
grid-area: 2 / 1 / 3 / 2;
}
#sideBoxR #Icon02 {
margin-top: 5em;
grid-area: 1 / 2 / 3 / 3;
}


/* Footer
============================================== */
#footer {
position: relative;
background-color: #ffffff;
z-index: 20;
}
#footer .logo {
margin-left: auto;
margin-bottom: 1em;
margin-right: auto;
width: 90%;
}
#footer address {
line-height: 1.5;
}
#footer address .add {
font-size: 1.5em;
}
#footer address .addLow {
line-height: 2;
font-size: 1.8em;
}
#footer address span br {
display: none;
}
#footer address span {
display: inline-block;
}
#footer address .zip {
margin-right: 1em;
}
#footer address .time {
margin-right: 1em;
}
#footer .license {
font-size: 1.2em;
}
#footer address a img {
width: auto;
height: 4em;
}




}/* PC END // SP BASE |||||||||||||||||||||||||||||| */
@media only screen and (max-width: 1199px){

/* mainImg
|||||||||||||||||||||||||||||||||||||||||||||||||||| */
html, body {
min-width: 100vw;
/*height: 100vh;*/
overflow: visible;
}

#mainImg {
display: inline-block;
}
#main .wrapper {
width: 100%;
/*height: 100%;*/
display: block;
/*overflow-y: scroll;*/
}
#main .wrapper > .container {
margin: auto;
width: 85%;
/*height: 100%;*/

display: block;
background-color: #ffffff;
position: relative;
}
#main .wrapper > .container::after,
#main .wrapper > .container::before {
content: '';
margin: auto;
width: 30px;
height: 100%;
background-position: 0 0;
background-repeat: repeat-y;
background-size: contain;
position: absolute;
display: block;
z-index: 999;
top: 0;
}
#main .wrapper > .container::after {
background-image: url("images/img_bk_l.png");
left: -30px;
}
#main .wrapper >.container::before {
background-image: url("images/img_bk_r.png");
right: -30px;
}

/* firstview
|||||||||||||||||||||||||||||||||||||||||||||||||||| */
.firstview {
margin-bottom: 2.5em;
}
.firstview .column {
margin-right: auto;
margin-left: auto;
}
.firstview .column .leftCol {
margin-right: auto;
margin-bottom: 1.5em;
margin-left: auto;
width: 100%;
font-size: calc(100% + 100vw * 2 / 120);
text-align: center;
}
.firstview .column .leftCol span {
display: block;
}
.firstview .column .rightCol figure img {
margin-right: auto;
margin-left: auto;
width: 45%;
display: block;
}
.firstview figcaption {
grid-template-columns: 30% 70%;
font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2rem);
}
.firstview .columnFoot {
font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2rem);
}

.firstview .column .leftCol span::after {
animation: blindEffect 3s .2s forwards;
}
.firstview .column .rightCol {
animation: fadeEffect 3s .5s forwards;
}
.firstview .columnFoot {
animation: textanimation 4s 1s forwards;
}

/* Section Content Main Position
|||||||||||||||||||||||||||||||||||||||||||||||||||| */
#pickup .effect {
margin-top: 150px;
}


#pickup section {
margin-right: auto;
margin-bottom: 2.5em;
margin-left: auto;
width: auto;
scroll-behavior: smooth;
}
#pickup section h2 span {
margin-bottom: 1.2em;
line-height: 1.2;
font-size: clamp(2.25rem, 1.341rem + 4.55vw, 3.5rem);
word-break: auto-phrase;
}
#pickup section h2 .txtimg {
width: clamp(17.5rem, 4.773rem + 63.64vw, 35rem);
}
#pickup .sec01 img {
margin-top: 1em;
margin-bottom: 0.5em;
}
#pickup .sec02 span {
margin-top: 1em;
}
#pickup section h2 strong {
margin-bottom: 0.2em;
font-size: clamp(2.5rem, 1.5rem + 5vw, 3.875rem);
}
#pickup .sec02 h2 span::before,
#pickup .sec02 h2 span::after {
width: calc(10% + 100vw * 2 / 100);
height: calc(30% + 100vw * 2 / 100);
}
#pickup .sec02 h2 span::before {
top: calc(0vh - 15%);
left: calc(0vh - 6%);
}
#pickup .sec02 h2 span::after {
right: -0.5em;
bottom: 0.2em;
}
#pickup section p {
font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2rem);
}

/* Section Side Left
|||||||||||||||||||||||||||||||||||||||||||||||||||| */
#sideBoxL {
margin-left: auto;
margin-bottom: 5em;
margin-right: auto;
width: 90%;
}
#sideBoxL .hBox h2 {
margin-bottom: 1em;
text-align: center;
font-size: clamp(2.25rem, 1.523rem + 3.64vw, 3.25rem);
word-break: auto-phrase;
}
#sideBoxL .hBox h2 span {
display: block;
}
#sideBoxL .pBox {
margin-bottom: 2em;
}
#sideBoxL .pBox p {
font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2rem);
text-align: center;
}
#sideBoxL #Step {
margin-bottom: 7em;
min-width: 100px;
}
#sideBoxL #Step li {
margin-left: auto;
margin-right: auto;
width: clamp(17.5rem, 8.409rem + 45.45vw, 30rem);
}
#sideBoxL #Step li::after {
margin-top: 0.5em;
margin-left: 55%;
min-width: 5.5em;
min-height: 5.5em;
}
#sideBoxL #boxLfoot .wrap {
margin-left: auto;
margin-right: auto;
display: block;
width: 100%;
}
#sideBoxL #boxLfoot a {
padding-top: 0.4em;
padding-bottom: 0.5em;
line-height: 1.2;
display: block;
background-color: #009844;
border-radius: 100px; 
position: relative;
color: #ffffff;
font-size: clamp(2.25rem, 1.523rem + 3.64vw, 3.25rem);
font-weight: bold;
text-align: center;
word-break: auto-phrase;
}
#sideBoxL #boxLfoot a span {
margin: auto;
display: inline;
position: relative;
text-align: left;
}
#sideBoxL #boxLfoot a span::before {
content: "";
margin-right: 0.5em;
width: clamp(3.5rem, 3.227rem + 1.36vw, 3.875rem);
height: clamp(3.5rem, 3.227rem + 1.36vw, 3.875rem);
display: inline-block;
position: absolute;
top: -0.1em;
left: -1.4em;

background-image: url("images/icon_tel.png");
background-repeat: no-repeat;
background-size: contain;
}
#sideBoxL #boxLfoot a:hover {
text-decoration: none;
background-color: #e73820;
}


/* Section Side Right
|||||||||||||||||||||||||||||||||||||||||||||||||||| */
#sideBoxR {
margin-left: auto;
margin-top: 5em;
margin-right: auto;
}
#sideBoxR h2 {
margin-bottom: 1em;
text-align: center;
font-size: 2em;
word-break: auto-phrase;
}
#sideBoxR p {
font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2rem);
text-align: center;
word-break: auto-phrase;
}
#sideBoxR .scrollWrap {
display: flex;
position: relative;
overflow: hidden;
}
#sideBoxR .scrollWrap #Icon03 {
animation: scroll 10s linear infinite;
}
#sideBoxR .scrollWrap #IconLoop {
animation: scroll 10s linear infinite;
}
#sideBoxR .scrollWrap ul {
flex-shrink: 0;
}
#sideBoxR .scrollWrap ul li {
width: calc(100vw / 7); 
}
#sideBoxR .scrollWrap ul li {
display: inline-block;
}
#sideBoxR .scrollWrap ul {
padding: 0;
margin: 0;
display: flex;
}
@keyframes scroll {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-100%);
}
}

/* Footer
|||||||||||||||||||||||||||||||||||||||||||||||||||| */
#footer {
margin-top: 5em;
font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2rem);
}
#footer .logo {
margin-left: auto;
margin-bottom: 2em;
margin-right: auto;
width: 80%;
}
#footer address span {
display: block;
}
#footer address .license {
word-break: keep-all;
}

#footer address a img {
width: auto;
height: 2.5em;
}






}/* SP END |||||||||||||||||||||||||||||||||||||||| */