@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');

:root {
    --color-palette-black: black;
    --color-palette-white: white;
    --color-palette-logogray: #585858;
    --color-palette-gray-middle: #9FA3A1;
    --color-palette-gray-light: #F0F0F0;
    --color-palette-yellow: #FFEC43;
    --color-palette-purple: #882BFF;
    --color-palette-accectgreen: #40F400;
    --color-palette-pink: #FF2E86;
    --color-palette-blue-main: #3884F5;
    --color-palette-blue-soft: #E8F9F6;
    --color-palette-blue-light: #C9DEFF;

    --color-palette-text: #3F3F3F;

    --color-palette-base: #F5F5F5;

    --font-zenmaru: 'Zen Maru Gothic';
    --font-notosans: 'Noto Sans JP'; /* imported by common.css */

}

html{
    background-color: var(--color-palette-base);
    text-align: center;
    font-family: var(--font-notosans), sans-serif;
}
.align-left{
    text-align: left;
}
.align-right{
    text-align: right;
}
.hidden{
    display: inherit;
    visibility: hidden;
    opacity: 0;
}
body{
    margin: 0;
    max-width: 100vw;
    overflow-x: clip; overflow-y: scroll;
    color: var(--color-palette-text);
}
header{
    padding: 0;
    max-width: 100%;
    width: 100vw;
}
main{
    padding: 0;
    max-width: 100%;
    width: 100vw;
}
section{
    padding: 0;
    max-width: 100%;
    width: 100%;
}
section.centerBox,
p.centerBox {
    max-width: 1000px;
    display: block;
    margin: auto;
}
p.centerBox {
    text-align: center;
}
footer{
    padding: 0;
    max-width: 100%;
    width: 100vw;
    background-color: var(--color-palette-blue-soft);
}
h1, h2, h3, h4, h5, p{
    margin: 0;
}

h3{
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    word-wrap: break-word
}

.highlight{
    background-color: var(--color-palette-accectgreen);
}

.noLinkMark{
    text-decoration: none;
    color: inherit;
}
.noLinkMark:hover{
    color: var(--color-palette-blue-main);
}

.inline-block {
    display: inline-block;
}
.flex{
    display: inline-flex;
}

section.callMeButton img.callMe {
    margin-bottom: -20px;
    overflow: visible;
    position: relative;
    z-index: 100;
}
section.callMeButton a {
    text-decoration: none;
}
div.link-to-contact {
    display: block;
    padding: 27px 17px;
    background-color: var(--color-palette-blue-main);
    border-radius: 40px;
    color: var(--color-palette-white);
    font-family: var(--font-zenmaru);
    font-size: 26px;
    font-weight: 900;
    text-decoration: none;
    width: fit-content;
    margin: auto;
}
div.link-to-contact a {
    text-decoration: none;
    color: var(--color-palette-white);
}
div.link-to-contact img {
    vertical-align: text-bottom;
    margin-left: 25px;
}
div#moveWithArea {
    top: 0; left: 0;
}
div#moveWithItem {
    transition: visibility 1s, opacity 1s;
    position: fixed;
    right: 10%; bottom: 15px;
    width: 240px;
    height: 215px;
    z-index: 30;
}
div#moveWithItem > img {
    margin-bottom: -5%;
    z-index: 35;
}
div#moveWithItem div.blueBox {
    background-color: var(--color-palette-blue-main);
    height: 50%;
    border-radius: 20px;
    color: var(--color-palette-white);
}
div#moveWithItem div.blueBox p {
    font-weight: 500;
    font-size: 12px;
    line-height: 180%;
    padding-left: 10%;
}
div#moveWithItem div.blueBox img {
    max-width: 90%;
}
div#moveWithItem div.blueBox a.yellowBox {
    display: block;
    width: 80%;
    margin: auto;
    border-radius: 10px;
    background-color: var(--color-palette-yellow);
    text-decoration: none;
    color: var(--color-palette-black);
    font-size: 12px;
}
div#moveWithItem div.blueBox a.yellowBox span#linkCnt {
    display: block;
    font-family: var(--font-zenmaru);
    font-weight: 900;
    font-size: 24px;
}
@media(max-width: 900px){
    div#moveWithItem {
        bottom: 0; left: 0;
        height: 152px;
        width: 100vw;
    }
    div#moveWithItem > img {
        position: absolute;
        right: 5%;
        bottom: 0;
        padding-bottom: 120px;
    }
    div#moveWithItem div.blueBox {
        position: absolute;
        bottom: 0; right: 0; left: 0;
        border-radius: 0;
        max-width: 100%;
        padding-top: 15px;
    }
    div#moveWithItem div.blueBox div.telInfoBox {
        display: inline-block;
        vertical-align: middle;
        max-width: 40%;
    }
    div#moveWithItem div.blueBox p {
        font-size: 10px;
        padding-right: 15%;
    }
    div#moveWithItem div.blueBox img {
        max-width: 80%;
    }
    div#moveWithItem div.blueBox a.yellowBox {
        display: inline-block;
        vertical-align: middle;
        width: 40%;
    }
    div#moveWithItem div.blueBox a.yellowBox span#linkCnt{
        font-size: 16px;
    }

}

header#catch header{
    padding-bottom: 20px;
}
header#catch header figure#logo{
    display: inline-flex;
    margin: 10px 40px;
}
header#catch header figure#logo figcaption{
    display: inline-block;
    line-height: 57px;
    vertical-align: middle;
}
header#catch header figure#logo figcaption span.llc {
    display: inline-block;
    line-height: 57px;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
}
header#catch header figure#logo figcaption span.llcName {
    display: inline-block;
    line-height: 57px;
    vertical-align: middle;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 6px;
}
header#catch header nav {
    display: inline-flex;
    vertical-align: text-bottom;
    margin: 10px 40px;
}
header#catch header nav menu {
    margin: 0;
    vertical-align: middle;
}
header#catch header nav menu li{
    list-style: none;
    display: inline-flex;
    padding: 0 15px;
    font-weight: 500;
    font-size: 15px;
}
header#catch header nav menu li button#btn_hum {
    display: none;
    position: absolute;
    top: 0; right: 0;
    height: 66px; width: 66px;
    background-color: var(--color-palette-accectgreen);
    border: none;
    border-bottom-left-radius: 20px;
}
header#catch header nav menu li.contactBox{
    background-color: var(--color-palette-accectgreen);
    padding: 0.5em 1em;
    border-radius: 20px;
}
header#catch header nav menu li.contactBox:hover{
    background-color: var(--color-palette-yellow);
}
header#catch header nav menu li.contactBox a {
    text-decoration: none;
    font-family: var(--font-zenmaru);
    font-size: 18px;
    font-weight: 900;
    line-height: 29px;
    color: var(--color-palette-logogray);
}
@media(max-width: 1220px){
    header#catch header nav{
        display: block;
        max-width: fit-content;
        position: absolute;
        top: 0; right: 0;
        margin: 0;
        z-index: 10;
    }
    header#catch header nav menu li button#btn_hum{
        display: block;
    }
    header#catch header nav menu li:has(a){
        display: none;
    }
    /* close / open */
    header#catch header nav.open menu {
        display: block;
        min-width: 300px;
        width: 50%;
        max-width: 90vw;
        margin-left: auto;
        padding-bottom: 20px;
        background-color: var(--color-palette-white);
    }
    header#catch header nav.open menu li button#btn_hum img{
        transition: position 1s, right 1s;
        position: absolute;
        right: 20px;
    }
    header#catch header nav.open menu li button#btn_hum img#btn_hum_upBar{
        transition: rotate 1s;
        rotate: 45deg;
        margin: auto;
    }
    header#catch header nav.open menu li button#btn_hum img#btn_hum_dnBar{
        transition: rotate 1s;
        rotate: -45deg;
        margin: auto;
    }
    header#catch header nav.open menu li:has(a):not(.contactBox){
        transition: display;
        display: block;
        height: 3em;
        text-align: left;
    }
    header#catch header nav.open menu li.contactBox{
        transition: display;
        display: block;
    }
} /* menu */

header#catch section#topImage {
    max-width: 90vw;
    width: 100%;
    height: 592px;
    position: relative;
    margin: auto;
    overflow-x: visible;
}
header#catch section#topImage li.left-image {
    position: absolute;
    display: block;
    max-width: fit-content;
    left: 5vw;
    margin-top: 100px;
}
header#catch section#topImage li.right-image {
    position: absolute;
    display: block;
    min-width: fit-content;
    width: 600px;
    right: 0;
    top: 0;
}
header#catch section#topImage li.right-image img#imgBgDsn {
    position: absolute;
    right: -4.5vw;
    top: -100px;
    z-index: -20;
}
header#catch section#topImage li.right-image img#yuiPhoto {
    position: absolute;
    right: 30vw;
}
header#catch section#topImage li.right-image div#locations {
    position: relative;
    width: 400px;
    height: 400px;
    margin-top: 100px;
    margin-left: 50px;
}
@media(max-width: 1220px){
    header#catch section#topImage {
        height: calc(592px * 2);
        display: block;
        max-width: 100vw;
        width: 100vw;
        margin: auto;
    }
    header#catch section#topImage ul {
        display: block;
        width: 100%;
        padding: 0;
        padding-top: 50px;
    }
    header#catch section#topImage li.left-image {
        position: absolute;
        display: block;
        padding-left: 0;
        top: 575px; left: 0;
        margin: auto;
    }
    header#catch section#topImage li.right-image {
        position: relative;
        top: 0;
        width: 100%;
        margin: auto;
        overflow-x: visible;
        overflow-y: visible;
    }
    header#catch section#topImage li.right-image img#imgBgDsn {
        position: absolute;
        right: -1vw;
        overflow-y: visible;
    }
    header#catch section#topImage li.right-image img#yuiPhoto {
        position: absolute;
        top: 50px;
        right: 55vw;
        width: 40%;
        max-width: 316px;
        min-width: 120px;
    }
    header#catch section#topImage li.right-image div#locations {
        position: absolute;
        min-width: 315px;
        width: 40%;
        height: 400px;
        margin-top: revert;
        margin-left: revert;
        right: 10vw;
    }
}

header#catch section#topImage li.right-image div#locations div.locationName {
    border-radius: 100%;
    background-color: var(--color-palette-white);
    display: flex;
    justify-content: center;
    align-content: center;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-palette-blue-main);
    width: 3.5em;
    height: 3.5em;
    position: absolute;
}
header#catch section#topImage li.right-image div#locations div.locationName span {
    display: block;
    margin: auto;
    vertical-align: middle;
}
header#catch section#topImage li.right-image div#locations div#goFromKys {
    left: 25%; top: 15%;
}
header#catch section#topImage li.right-image div#locations div#locKwg {
    left: 0; top: 0;
}
header#catch section#topImage li.right-image div#locations div#locOmy{
    left: 75%; top: 10%;
}
header#catch section#topImage li.right-image div#locations div#locTkw {
    left: 10%; top: 40%;
}
header#catch section#topImage li.right-image div#locations div#locFch {
    left: 35%; top: 60%;
}
header#catch section#topImage li.right-image div#locations div#locMss {
    left: 65%; top: 50%;
    font-size: 18px;
    width: 4.2em; height: 4.2em;
}
header#catch section#topImage li.right-image div#locations div#locIkb {
    left: 90%; top: 55%;
}
header#catch section#topImage li.right-image div#locations div#locSby {
    left: 75%; top: 80%;
}
header#catch section#topImage li.right-image div#locations img#locCat {
    position: absolute;
    left:33%; top: 60%;
}

header#catch section#topImage li.right-image div#locations div#goFromKys {
    background-image: url('/llc/forU/resource/com_blue_talkCircle.svg');
    background-repeat: no-repeat;
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    width: 174px;
    height: 112px;
}
header#catch section#topImage li.right-image div#goFromKys p {
    display: block;
    margin: auto;
    font-family: var(--font-zenmaru);
    color: var(--color-palette-white);
    font-size: 24px;
    font-weight: 700;
    line-height: 135%;
    height: fit-content;
}
header#catch section#topImage li.right-image div#goFromKys p > span {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    height: fit-content;
}
header#catch section#topImage li.right-image div#goFromKys p span.kana {
    font-size: 16px;
}

header#catch section#topImage li#catchText{

}
header#catch section#topImage li#catchText p.eyeCatch {
    color: var(--color-palette-blue-main);
    font-family: var(--font-zenmaru);
    font-size: 27px;
    font-weight: 900;

}
header#catch section#topImage li#catchText h1{
    font-size: 50px;
    font-weight: 700;
    padding-bottom: 80px;
}
header#catch section#topImage li#catchText h1 span#signFrame {
    border: #A8A8A8 4px solid;
    background-color: var(--color-palette-white);
    width: 500px;
    height: 122px;
    display: inline-block;
    margin-top: 30px;
}
header#catch section#topImage li#catchText h1 span#signFrame img {
    display: block;
    max-width: 100%;
    margin: auto;
}

@media(max-width: 1220px){
    header#catch section#topImage li#catchText{
        max-width: 100vw;
        width: 100%;
    }
    header#catch section#topImage li#catchText p.align-left {
        text-align: center;
    }
    header#catch section#topImage li#catchText h1.align-left {
        text-align: center;
    }
    header#catch section#topImage li#catchText h1 span#signFrame {
        max-width: 90%;
    }

}

section#s1_onayami{
    background-color: #B7B7B7;

}
section#s1_onayami header p{
    padding-top: 100px;
    padding-bottom: 15px;
    color: var(--color-palette-white);
    font-size: 22px;
    font-family: var(--font-zenmaru);
    font-weight: 900;
    line-height: 27px;
}
section#s1_onayami header img {
    max-width: 95vw;
}
section#s1_onayami ul#onayamiList{
    display: block;
    position: relative;
    min-height: calc(110px * 2 + 50px);
    max-width: 700px;
    margin: auto auto 50px;
}
section#s1_onayami ul#onayamiList li{
    list-style: none;
    display: inline-block;
    width: fit-content;
    white-space: nowrap;
    background-color: var(--color-palette-white);
    padding: 30px;
    border-radius: 20px;
    position: relative;
}
section#s1_onayami ul#onayamiList li img{
    display:block;
    position: absolute;
    bottom: -30px;
    left: 75%;
}
section#s1_onayami ul#onayamiList li:nth-child(even) img{
    transform: scale(-1, 1);
    left: 25%;
}
section#s1_onayami ul#onayamiList li:nth-child(1){
}
section#s1_onayami ul#onayamiList li:nth-child(2){
    margin-top: 50px;
    margin-left: 50px;
}
section#s1_onayami ul#onayamiList li:nth-child(3){
    margin-top: 50px;
}
section#s1_onayami ul#onayamiList li:nth-child(4){
    margin-top: 50px;
    margin-left: 50px;
}
section#s1_onayami div.overflow{
    width: 100%;
    position: relative;
}
section#s1_onayami div.overflow img{
    display: inline-block;
    position: absolute;
    margin: auto;
    top: -100%;
}
section#s1_onayami div.overflow img:nth-child(1){
    left: 0;
}
section#s1_onayami div.overflow img:nth-child(2){
    right: 0;
}
section#s1_onayami section.centerBox>img {
    max-width: 90vw;
}

section#s2_omakase{
    background-color: var(--color-palette-white);
    background-image: url('/llc/forU/resource/com_omks_bg.svg');
    background-position: center;
    background-repeat: repeat-y;
    background-size: cover;
    background-clip: border-box;
}
section#s2_omakase header img {
    padding-top: 60px;
    max-width: 95vw;
}
section#s2_omakase ul {
    padding-left: 0;
    max-width: 90vw;
    width: 1000px;
    font-family: var(--font-zenmaru);
}
section#s2_omakase ul li {
    display: inline-block;
    width: calc((100% / 3) - 10px);
    font-weight: 900;
}
@media(max-width: 969px){
    section#s2_omakase ul.flex {
        display: inline-block;
    }
    section#s2_omakase ul li {
        width: 100%;
        border: 2px dashed var(--color-palette-blue-light);
        margin-top: -2px;
        padding-bottom: 10px;
    }
}
section#s2_omakase ul li figcaption {
    font-size: 18px;
    font-weight: 900;
    line-height: 25px;
}
section#s2_omakase ul li p {
    color: var(--color-palette-blue-main);
    font-size: 24px;
    font-weight: 900;
    line-height: 34px;
}
section#s2_omakase > p {
    margin-top: 60px;
    color: var(--color-palette-black);
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}
section#s2_omakase p strong {
    font-weight: 700;
}
section#s2_omakase h3 {
    margin-top: 45px;
    padding-bottom: 45px;
}
section#s2_omakase h3 span.highlight {
    padding: 0 5px;
    margin: 0 5px;
}

section#s3_aboutYui {
    background-color: #F8F8FE;
}
section#s3_aboutYui > header > img {
    display: inline-block;
    margin-bottom: -200px;
    max-width: 95vw;
}
section#s3_aboutYui header h3 {
    display: inline-block;
    font-size: 26px;
    font-family: var(--font-zenmaru);
    font-weight: 900;
    line-height: 42px;
}
section#s3_aboutYui section#s3_main {
    background-color: var(--color-palette-blue-soft);
    padding-bottom: 50px;
    overflow-x: hidden;
}
section#s3_aboutYui section#s3_main header {
    width: 40%;
    display: block;
    margin-left: calc(100% - 480px);
}
section#s3_aboutYui section#s3_main header h4 {
    color: var(--color-palette-blue-main);
    font-size: 18px;
    font-family: var(--font-zenmaru);
    font-weight: 900;
    line-height: 29px;
    text-align: center;
    margin-bottom: 40px;
}
section#s3_aboutYui section#s3_main header section h5 {
    display: inline-flex;
    writing-mode: tb;
    color: var(--color-palette-blue-main);
    font-family: var(--font-zenmaru);
    font-size: 18px;
    font-weight: 900;
    line-height: 29px;
    margin-top: 10px;
    margin-right: 12px;
}
section#s3_aboutYui section#s3_main header section p {
    display: inline-flex;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    max-width: 95%;
}
@media(max-width: 900px){
    section#s3_aboutYui > section > img {
        display: block;
    }
    section#s3_aboutYui header h3.align-left {
        display: block;
        text-align: right;
        margin-right: 5vw;
    }
    section#s3_aboutYui section#s3_main {
        padding-top: 55px;
    }
    section#s3_aboutYui section#s3_main header {
        width: 90%;
        margin: auto;
    }
}
@media(max-width: 750px){
    section#s3_aboutYui > header {
        position: relative;
        height: 450px;
    }
    section#s3_aboutYui > header h3.align-left {
        position: absolute;
        bottom: 2%;
        text-align: center;
        margin: 0;
        left: calc((100% - 340px) / 2);
    }
}

section#s3_aboutYui section#s3_main section fieldset {
    background-color: var(--color-palette-white);
    border: none;
    border-radius: 30px;
    position: relative;
    margin: 40px 5vw;
    padding-top: 12px;
    max-width: 90vw;
}
section#s3_aboutYui section#s3_main section fieldset legend {
    background-color: var(--color-palette-blue-main);
    color: var(--color-palette-white);
    font-family: var(--font-zenmaru);
    font-size: 20px;
    font-weight: 900;
    line-height: 24px;
    padding: 10px 20px;
    border-radius: 15px;
    position: absolute;
    top: -20px;left: 40px;
}
section#s3_aboutYui section#s3_main section fieldset ul {
    display: inline-block;
    list-style: none;
    font-size: 16px;
    font-weight: 400;
}
section#s3_aboutYui section#s3_main section fieldset ul li::before {
    content: '●';
    color: var(--color-palette-blue-main);
    font-size: 0.8em;
    margin-right: 3px;
}
section#s3_aboutYui section#s3_main section fieldset ul li.accent::before {
    color: var(--color-palette-accectgreen);
}
section#s3_aboutYui section#s3_main section fieldset h4 {
    margin-top: 20px;
    color: var(--color-palette-blue-main);
    font-size: 24px;
    font-family: var(--font-zenmaru);
    font-weight: 900;
    line-height: 43px;
    margin-bottom: 40px;
}
section#s3_aboutYui section#s3_main section fieldset h4 span.highlight {
    padding: 0 10px;
    color: var(--color-palette-black);
}
section#s3_aboutYui section#s3_main section fieldset figure {
    display: block;
    position: absolute;
    right: 7%;
    bottom: calc(10% - 80px);
    width: 20%;
    max-width: 70px;
    height: 70px;
    max-height: 70px;
}
section#s3_aboutYui section#s3_main section fieldset img {
    display: block;
    position: absolute;
}
section#s3_aboutYui section#s3_main section section#skills {
    margin-left: 20px;
}
section#s3_aboutYui section#s3_main section section#skills h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 33px;
}
section#s3_aboutYui section#s3_main section section#skills ul.noDot {
    padding-left: 0;
}
section#s3_aboutYui section#s3_main section section#skills ul li h5 {
    font-size: 16px;
    font-weight: 700;
}
@media(max-width: 750px){
    section#s3_aboutYui section#s3_main section#skills.flex{
        display: block;
    }
    section#s3_aboutYui section#s3_main section#skills section.inline-block {
        display: block;
    }
}
section#s3_aboutYui section#s3_main section.callMeButton {
    margin-top: -70px;
}

section#s4_osusume{
    background-color: var(--color-palette-white);
}
section#s4_osusume header {
    padding-top: 75px;
}
section#s4_osusume header p {
    margin-top: 20px;
}
section#s4_osusume ol#caseList {
    margin-top: 40px;
    padding-left: 0;
}
section#s4_osusume ol#caseList > li {
    display: inline-block;
    width: 100%;
    padding-bottom: 30px;
    padding-top: 20px;
}
section#s4_osusume ol#caseList > li:not(:last-child) {
    border-bottom: 3px #D8D8D8 dotted;
}
section#s4_osusume ol#caseList li h4 {
    color: var(--color-palette-logogray);
    font-size: 26px;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
section#s4_osusume ol#caseList li h4 img {
    margin-right: 20px;
}
section#s4_osusume ol#caseList li ul.beforeAfter {
    display: flex;
    list-style: none;
}
section#s4_osusume ol#caseList li ul.beforeAfter li {
    display: flex;
    margin: 10px;
}
section#s4_osusume ol#caseList li ul.beforeAfter li p {
    max-width: 300px;
    width: fit-content;
    text-align: left;
    padding-left: 10px;
}
section#s4_osusume ol#caseList li ul.beforeAfter li p strong {
    color: var(--color-palette-blue-main);
}
section#s4_osusume ol#caseList li ul.beforeAfter li p.afterText {
    margin: auto;
    font-size: 18px;
    font-weight: 700;
    line-height: 190%;
}
@media(max-width: 900px){
    section#s4_osusume ol#caseList > li {
        display: block;
    }
    section#s4_osusume ol#caseList li ul.beforeAfter {
        display: block;
    }
    section#s4_osusume ol#caseList li ul.beforeAfter li {
        display: block;
        text-align: center;
        padding-left: 0;
    }
    section#s4_osusume ol#caseList li ul.beforeAfter li p {
        margin: auto;
    }
    section#s4_osusume ol#caseList li ul.beforeAfter li p.afterText {
        margin: auto;
    }
    section#s4_osusume ol#caseList li ul.beforeAfter > li:nth-child(2) > img {
        rotate: 90deg;
    }


}
section#s4_osusume p#willGo {
    color: var(--color-palette-logogray);
    font-size: 26px;
    font-family: var(--font-zenmaru);
    font-weight: 900;
    line-height: 42px;
}
section#s4_osusume p#willGo span.kiyose {
    color: var(--color-palette-blue-main);
    font-size: 31px;
}
section#s4_osusume p#willGo span.around {
    color: var(--color-palette-blue-main);
}
section#s4_osusume figure#imgBox {
    height: 300px;
    display: flow;
    overflow: hidden;
    overflow-x: visible;
    margin: auto auto 0;
    position: relative;
    width: 70%;
}
section#s4_osusume figure#imgBox img {
    position: absolute;
    height: fit-content;
}
section#s4_osusume figure#imgBox>img:nth-child(1) { /* 由衣のイラスト */
    top: 0;
    left: 0;
}
section#s4_osusume figure#imgBox>img:nth-child(2) { /* 猫のイラスト */
    top: 117px;
    left: 187px;
}
section#s4_osusume figure#imgBox figure#visitCity {
    top: 0;
    left: 250px;
}
section#s4_osusume figure#imgBox figure#visitCity img {
    top: 15%;
    left: 50%;
}
section#s4_osusume figure#imgBox figure#visitCity div.locationName {
    border-radius: 100%;
    background-color: var(--color-palette-blue-soft);
    display: flex;
    justify-content: center;
    align-content: center;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-palette-blue-main);
    width: 3.5em;
    height: 3.5em;
    position: absolute;
}
section#s4_osusume figure#imgBox figure#visitCity div.locationName span {
    display: block;
    margin: auto;
    vertical-align: middle;
}
section#s4_osusume figure#imgBox figure#visitCity div#re_locKwg {
    left: 45%; top: 0;
}
section#s4_osusume figure#imgBox figure#visitCity div#re_locOmy{
    left: 75%; top: 10%;
}
section#s4_osusume figure#imgBox figure#visitCity div#re_locTkw {
    left: 52%; top: 60%;
}
section#s4_osusume figure#imgBox figure#visitCity div#re_locFch {
    left: 65%; top: 55%;
}
section#s4_osusume figure#imgBox figure#visitCity div#re_locMss {
    left: 77%; top: 45%;
    font-size: 18px;
    width: 4.2em; height: 4.2em;
}
section#s4_osusume figure#imgBox figure#visitCity div#re_locIkb {
    left: 88%; top: 15%;
}
section#s4_osusume figure#imgBox figure#visitCity div#re_locSby {
    left: 85%; top: 70%;
}
@media(max-width: 900px){
    section#s4_osusume figure#imgBox{
        width: 100%;
    }
}

section#s5_reason{
    background-color: var(--color-palette-blue-soft);
}
section#s5_reason header {
    padding-top: 75px;
}
section#s5_reason header h3 {
    padding-bottom: 20px;
}
section#s5_reason header p {
    margin: 5%;
}
section#s5_reason section.centerBox {
    max-width: 1200px;
}
section#s5_reason ol {
    padding-bottom: 75px;
    padding-left: 0;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 0;
}
section#s5_reason ol li {
    margin-top: 40px;
}
section#s5_reason ol li img{
    display: inline-block;
    max-width: 30vw;
}
section#s5_reason ol li div{
    display: inline-block;
    margin-left: 40px;
    padding-top: 20px;
    margin-right: 20px;
    vertical-align: top;
    text-align: left;
}
section#s5_reason ol li div h4 {
    color: var(--color-palette-blue-main);
    font-size: 26px;
    font-weight: 700;
}
@media(max-width: 900px){
    section#s5_reason ol li.flex{
        display: block;
    }
    section#s5_reason ol li div{
        margin-left: 5%;
        margin-right: 5%;
    }
}

section#s6_plan{
    background-color: var(--color-palette-gray-light);
    padding-bottom: 20px;
    background-image: url('/llc/forU/resource/com_omks_bg.svg');
    background-position: center;
    background-repeat: repeat-y;
    background-size: cover;
    background-clip: border-box;
}
section#s6_plan > header {
    padding-top: 75px;
}
section#s6_plan > header h3 {
    padding-bottom: 20px;
}
section#s6_plan ins {
    display: block;
    text-decoration: none;
    color: var(--color-palette-pink);
    font-family: var(--font-zenmaru);
    font-weight: bold;
    margin-bottom: 30px;
}
section#s6_plan ins span.s26 {
    font-size: 26px;
    font-weight: 900;
}
section#s6_plan ins span.s32 {
    font-size: 32px;
    font-weight: 900;
}
section#s6_plan ins span.s37 {
    font-size: 37px;
    font-weight: 900;
}
section#s6_plan ins span.s72 {
    font-size: 72px;
    font-weight: 900;
}
section#s6_plan ul#planList {
    padding: 100px 30px 30px;
    max-width: calc(100% - 60px);
    overflow-x: scroll;
    overflow-y: auto;
}
section#s6_plan ul#planList > li {
    max-width: 380px;
    width: 100%;
    min-width: 380px;
    background-color: var(--color-palette-white);
    border-radius: 40px;
    margin: 40px 20px 0;
    padding-top: 20px;
}
section#s6_plan ul#planList li.recommend {
    box-shadow: 0 4px 34px var(--color-palette-accectgreen);
    margin-top: 0;
}
section#s6_plan ul#planList li.recommend > img { /* おすすめ 猫 */
    margin-top: -125px;
}
section#s6_plan ul#planList li header {
    display: inline-block;
    max-width: 100%;
    width: 100%;
}
section#s6_plan ul#planList li header h4 {
    font-family: var(--font-zenmaru);
    font-size: 30px;
    font-weight: 900;
}
section#s6_plan ul#planList li.recommend header h4 {
    color: var(--color-palette-blue-main);
}
section#s6_plan ul#planList li header p {
    font-size: 14px;
    color: var(--color-palette-black);
    line-height: 180%;
    margin-top: 10px;
    margin-bottom: 15px;
}
section#s6_plan ul#planList li p.cost {
    margin-top: 20px;
    position: relative;
}
section#s6_plan ul#planList li p.cost img.freeForNow,
section#s6_plan ul#planList li p.cost {
    margin: auto;
    width: fit-content;
    display: block;
}
section#s6_plan ul#planList li p.cost img.cutCost {
    position: absolute;
}
section#s6_plan ul#planList li p.cost span.starting {
    font-size: 16px;
}
section#s6_plan ul#planList li p.cost span.startingCost {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-zenmaru);
    line-height: 60%;
}
section#s6_plan ul#planList li p.cost span.startingPrice {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-zenmaru);
}
section#s6_plan ul#planList li p.cost span.monthly {
    font-size: 22px;
}
section#s6_plan ul#planList li p.cost span.monthlyCost {
    font-size: 50px;
    font-weight: 700;
    font-family: var(--font-zenmaru);
    line-height: 60%;
}
section#s6_plan ul#planList li p.cost span.monthlyPrice {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--font-zenmaru);
}
section#s6_plan ul#planList ul.jobGuid {
    margin-left: 20px;
}
section#s6_plan ul#planList ul.jobGuid li {
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 700;
}
section#s6_plan ul#planList ul.jobGuid ul.check {
    list-style: url('/llc/forU/resource/com_bluecheck.svg');
}
section#s6_plan ul#planList li:nth-child(3) p.cost {
    margin-top: 20px;
    margin-bottom: 20px;
}
section#s6_plan ul#planList li:nth-child(3) p.cost span.monthly {
    font-family: var(--font-zenmaru);
    font-weight: 700;
    letter-spacing: 0.2px;
}
section#s6_plan ul#planList div.makeContact {
    height: 55px;
}
section#s6_plan ul#planList div.makeContact a {
    padding: 10px;
    border-radius: 24px;
    width: 230px;
    background-color: var(--color-palette-blue-main);
    text-decoration: none;
    color: var(--color-palette-white);
    display: inline-block;
}
section#s6_plan ul#planList div.makeContact a:hover {
    background-color: var(--color-palette-accectgreen);
}
section#s6_plan ul.jobGuid {
    padding-left: 10px;
}
section#s6_plan ul.jobGuid li h5,
section#s6_plan ul.jobGuid li span {
    display: inline-block;
    font-size: 16px;
    margin-left: 5px;
}
section#s6_plan ul.jobGuid li h5 {
    color: var(--color-palette-blue-main);
}

section#s7_voice{
    background-color: var(--color-palette-blue-soft);
    padding-bottom: 20px;
    background-image:
        url('/llc/forU/resource/com_vic_bg_left.svg'),
        url('/llc/forU/resource/com_vic_bg_right.svg')
    ;
    background-repeat: no-repeat;
    background-position: bottom left, bottom right;
}
section#s7_voice header {
    padding-top: 75px;
    margin-bottom: 5px;
}
section#s7_voice header p {
    padding-top: 20px;
}
section#s7_voice ul#userVoice {
    max-width: 100vw;
    padding: 0;
}
section#s7_voice ul#userVoice div.customer {
    white-space: nowrap;
    margin-left: 10%;
    margin-bottom: -5px;
    z-index: 21;
}
section#s7_voice ul#userVoice div.customer img {
    margin-bottom: -20px;
}
section#s7_voice ul#userVoice div.customer p {
    display: inline-block;
}
section#s7_voice ul#userVoice div.flex {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: -120px;
}
section#s7_voice ul#userVoice div.flex div.yui {
    order: 1;
    margin-right: 10%;
    margin-bottom: -15px;
    z-index: 20;
}
section#s7_voice ul#userVoice div.flex div.userComment {
    order: 2;
    background-color: var(--color-palette-white);
    padding: 30px;
    border-radius: 30px;
    width: 80%;
    max-width: 750px;
    margin: auto;
}
section#s7_voice ul#userVoice div.userComment p {
    margin: 10px;
}
@media(max-width: 750px){
    section#s7_voice ul#userVoice div.flex {
        margin-top: 15px;
    }
    section#s7_voice ul#userVoice div.flex div.yui{
        order: 3;
    }
}


section#contact{
    background-color: var(--color-palette-gray-light);
}
section#contact header {
    padding-top: 75px;
}
section#contact header p{
    padding-top: 20px;
    padding-bottom: 10px;
}
section#contact section.centerBox {
    width: fit-content;
    max-width: 80%;
}
section#contact p.guid{
    color: var(--color-palette-black);
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    word-wrap: break-word
}
section#contact p#telContact {
    font-weight: 700;
}
section#contact form {
    font-weight: 400;
    max-width: 100vw;
}
section#contact form label {
    display: block;
    margin-bottom: 20px;
    max-width: 95%;
    margin-left: 2%;
}
section#contact form label#adr1 {
    margin-bottom: 0;
}
section#contact form input,
section#contact form textarea,
section#contact form div.selectWrap {
    height: 32px;
    max-width: 800px;
    width: 95%;
    padding: 10px 20px;
    background-color: var(--color-palette-white);
    border: 1px var(--color-palette-gray-middle) solid;
    border-radius: 3px;
    font-size: 16px;
}
section#contact form input[type="radio"] {
    margin-top: 10px;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: text-bottom;
}
section#contact form input::placeholder {
    vertical-align: middle;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
section#contact form div.selectWrap {
    max-width: 320px;
    padding: 0;
    height: 52px;
    vertical-align: middle;
}
section#contact form div.selectWrap select {
    padding: 12px;
    display: block;
    border: none;
    border-radius: inherit;
    width: 95%;
    font-size: 20px;
    line-height: 32px;
}
section#contact form fieldset textarea {
    min-height: 200px;
    height: 200px;
    resize: vertical;
    overflow-y: scroll;
}

section#contact span#zipLoading {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Material Icons';
    font-size: 32px;
    animation: 3s linear infinite rolling;
}
@keyframes rolling {
    0%{transform: rotate(360deg)}
    100%{transform: rotate(0)}
}
section#contact span#zipErrMsg {
    color: orangered;
}
section#contact span#zipErrMsg.hidden {
    display: none;
}
section#contact form button {
    background-color: var(--color-palette-blue-main);
    color: var(--color-palette-white);
    padding: 7px 22px;
    font-size: 14px;
    border-radius: 3px;
    border: none;
    margin-left: 20px;
}
section#contact form p.centerBox {
    margin-top: 15px;
}
section#contact form fieldset#ptnRdo {
    border: none;
    max-width: 100%;
    padding: 0;
}
section#contact form fieldset#ptnRdo div#mindPlanSelector {
    transition: visibility,opacity 1s, height 1ms;
    margin-left: 30px;
}
section#contact form fieldset#ptnRdo div#mindPlanSelector.hidden {
    max-height: 0;
}
section#contact form button[type="button"].submit {
    background-color: var(--color-palette-blue-main);
    color: var(--color-palette-white);
    width: fit-content;
    display: block;
    margin: 30px auto 30px auto;
    padding: 17px 75px 17px 75px;
    border-radius: 40px;
    font-size: 26px;
    line-height: 32px;
    font-family: var(--font-zenmaru);
    font-weight: 900;
}
section#contact form button[type="button"].submit img {
    vertical-align: text-bottom;
}

span.required::before {
    content: '\5FC5\9808'; /* 必須 */
    font-size: 10px;
    background-color: var(--color-palette-blue-main);
    color: var(--color-palette-white);
    padding: 0 3px;
    margin: 3px 5px;
    border-radius: 2px;
}

section#contact section#telGuid {
    margin-top: 80px;
}
section#contact section#telGuid div#beforeContact {
    display: flex;
    margin-bottom: -20px;
}
section#contact section#telGuid div#beforeContact p,
section#contact section#telGuid div#beforeContact img {
    height: fit-content;
    font-family: var(--font-zenmaru);
    font-size: 16px;
    font-weight: 900;
    margin: 5px;
}
section#contact section#telGuid div#beforeContact p:first-child {
    order: 1;
}
section#contact section#telGuid div#beforeContact img {
    order: 4;
    width: 100%;
}
section#contact section#telGuid div#beforeContact p:last-child {
    order: 7;
}
@media(max-width: 900px){
    section#contact section#telGuid div#beforeContact {
        flex-direction: column;
    }
    section#contact section#telGuid div#beforeContact p {
        width: fit-content;
    }
    section#contact section#telGuid div#beforeContact p:first-child {
        margin-bottom: -30px;
    }
    section#contact section#telGuid div#beforeContact p:last-child {
        order: 2;
        align-self: flex-end;
        margin-bottom: 20px;
    }
}
@media(max-width: 750px){
    section#contact section#telGuid div#beforeContact p:first-child {
        margin-bottom: -10px;
    }
}
section#contact section#telGuid div#contactTel {
    background-color: var(--color-palette-blue-main);
    color: var(--color-palette-white);
    font-family: var(--font-zenmaru);
    text-align: center;
    height: fit-content;
    padding: 1px; /* pのmargin対応 */
    border-radius: 30px;
    max-width: 90vw;
    width: 100%;
}
section#contact section#telGuid div#contactTel p {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 900;
    width: 100%;
}
section#contact section#telGuid div#contactTel a img {
    margin-left: 18px;
    max-width: 80%;
}
section#contact section#telGuid div#contactTel p small {
    font-family: var(--font-notosans);
    font-size: 16px;
    font-weight: 700;
}
section#contact section#telGuid div#catImgBox {
    max-height: 300px;
    height: 100px;
    width: 135%;
    margin-left: -25%;
    display: flex;
    justify-content: space-between;
    overflow-anchor: none;
    overflow-x: clip;
}
section#contact section#telGuid div#catImgBox img {
    transition: margin-top 1s;
    vertical-align: top;
    margin-top: -200px;
    height: fit-content;
}
section#contact section#telGuid div#catImgBox img#catImg {
    padding-top: 70px;
}
@media(max-width: 900px){
    section#contact section#telGuid div#catImgBox {
        height: 200px;
    }
    section#contact section#telGuid div#catImgBox img {
        transition: margin-top 1s;
        margin-top: -5%;
    }
}

footer#mainFoot {
    padding-bottom: 75px;
    height: fit-content;
}
footer#mainFoot header {
    padding-top: 55px;
    padding-bottom: 35px;
}
footer#mainFoot address {
    font-style: normal;
}
footer#mainFoot header p,
footer#mainFoot header address
{
    text-shadow:
        1px 1px 0 var(--color-palette-blue-soft),
        1px 0 0 var(--color-palette-blue-soft),
        -1px 0 1px var(--color-palette-blue-soft);
}

