@charset "utf-8";
/*
theme Name: assist_garden
Description: アシストガーデンのテーマです
version： 1.0
*/

/*----------------------------------------
	all
----------------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif, '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo;
    font-size: 62.5%;
    color: #333;
    -webkit-text-size-adjust: 100%;
    line-height: 1;
    font-weight: 400;
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
    animation: loading 1s;
}

@keyframes loading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: bottom;
    height: auto;
}

ul {
    list-style-type: none;
}

.bold {
    font-weight: bold;
}

#container {
    overflow: clip;
}

@media screen and (max-width:768px) {
    body {
        font-size: 1.6rem;
    }
}

/*----------------------------------------
	common
----------------------------------------*/

.c-inner1000 {
    width: 1000px;
    margin: auto;
}

.c-inner1300 {
    width: 1300px;
    margin: auto;
}

.c-inner1536 {
    width: 1536px;
    margin: auto;
}

.c-text {
    font-size: 1.8rem;
    line-height: 1.75;
}

.c-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.8rem;
    letter-spacing: 0.07em;
    font-weight: bold;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

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

.c-button span:after {
    content: "";
    display: inline-block;
    width: 65px;
    height: 65px;
    background-image: url(images/button_arrow.svg);
    background-repeat: no-repeat;
    margin: 0 0 0 20px;
    transition: transform 0.3s ease, opacity 0.3s;
}

.color {
    color: #000;
}

.op {
    transition: .3s;
}

.op:hover {
    opacity: 0.7;
}

.lookforward-close-btn {
    display: none;
}

@media screen and (min-width:769px) {
    .c-button:hover {
        opacity: 0.9;
    }


    .c-button:hover span:after {
        transform: translateX(5px);
    }
}

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

    .c-inner1536 {
        width: 100%;
        padding: 0 4%;
    }
}

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

    .c-inner1300 {
        width: 100%;
        padding: 0 4%;
    }

    .c-inner1536 {
        width: 100%;
        padding: 0 3.5%;
    }
}

@media screen and (max-width:1100px) {
    .c-inner1000 {
        width: 100%;
        padding: 0 5%;
    }

    .c-inner1300 {
        width: 100%;
        padding: 0 4%;
    }

    .c-inner1536 {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-button span:after {
        background-size: 100%;
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width:768px) {
    .c-text {
        font-size: 1.4rem;
    }

    .c-button {
        font-size: 1.4rem;
    }

    .c-button span:after {
        width: 35px;
        height: 35px;
        margin: 0 0 0 10px;
    }

    c-inner1000 {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-inner1300 {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-inner1536 {
        width: 100%;
        padding: 0 3.5%;
    }
}

@media screen and (max-width:590px) {
    .c-button span:after {
        width: 28px;
        height: 28px;
        margin: 0 0 0 10px;
    }
}

/*----------------------------------------
	animation
----------------------------------------*/

.appear {
    transform-origin: center top;
    animation: show 1s both;
}

span.appear {
    display: inline-block;
}

.d1 {
    animation-delay: 0.5s;
}

.d2 {
    animation-delay: 1s;
}

.d3 {
    animation-delay: 1.5s;
}

.d4 {
    animation-delay: 2s;
}

.d5 {
    animation-delay: 2.5s;
}

.d6 {
    animation-delay: 3s;
}

.d8 {
    animation-delay: 3.5s;
}

.d10 {
    animation-delay: 10s;
}

.d12 {
    animation-delay: 12s;
}

@keyframes show {
    0% {
        transform: translate(0, 2em);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

.scroll_up__mv {
    transition: 0.8s ease-in-out;
    transform: translate(-50%, -35%);
    opacity: 0;
}

.scroll_up__mv.on {
    transform: translate(-50%, -50%);
    opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

.timing02 {
    transition-delay: .2s;
}

.timing03 {
    transition-delay: .4s;
}

.timing04 {
    transition-delay: .6s;
}

.timing05 {
    transition-delay: .8s;
}

/*----------------------------------------
	l-header
----------------------------------------*/

.l-header {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.4s ease;
    background-color: #DBA581;
    z-index: 9999;
}

/*.l-header.change-color {
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.l-header.change-color02 {
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}*/

.l-header__inner {
    width: 100%;
    height: 100%;
    padding: 0 50px 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.l-header__gnav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.l-header__gnavLists {
    display: flex;
    align-items: center;
}

.l-header__gnavList a {
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.l-header__gnavList:not(:last-child) {
    margin: 0 37px 0 0;
}

.input-hidden {
    display: none;
}

.hamburger-demo-cover {
    display: none;
}

.logo a {
    display: block;
}

.l-header__gnavContact a {
    width: 210px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background-color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: #DBA581;
    margin: 0 30px 0 0;
    font-weight: bold;
}

.l-header__gnavContact span:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 18px;
    background-image: url(images/header_form_icon.svg);
    margin: 0 10px 0 0;
}

.l-header__gnavSns .sp {
    display: none;
}

.l-header__gnavList.has-dropdown {
    position: relative;
}

.l-header__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    min-width: 200px;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transition: .3s;
}

.l-header__dropdownItem a {
    display: block;
    padding: 10px 20px;
    font-size: 1.4rem;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.l-header__dropdownItem a:hover {
    background-color: #F7F4F1;
    color: #F28C42;
}

@media screen and (min-width:1025px) {
    .l-header__gnavLists li a {
        transition: .3s;
    }

    .l-header__gnavLists li a:hover {
        opacity: 0.7;
    }
}

@media (min-width: 821px) {
    .l-header__gnavList.has-dropdown:hover > .l-header__dropdown {
        display: block;
    }
}

@media screen and (max-width:1500px) {
    .l-header__gnavList:not(:last-child) {
        margin: 0px 25px 0 0;
    }

    .l-header__gnavList a {
        font-size: 0.9vw;
    }

    .logo a {
        width: 250px;
    }

    .logo img {
        width: 100%;
    }

    .l-header__gnavContact a {
        width: 180px;
    }
}

@media screen and (max-width:1300px) {
    .logo a {
        width: 220px;
    }

    .l-header__inner {
        padding: 0 0 0 15px;
    }

    .l-header__gnavList:not(:last-child) {
        margin: 0px 20px 0 0;
    }
}

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

    .l-header__right {
        display: none;
    }

    #l-header {
        height: 70px;
    }

    .l-header__inner {
        padding: 0 0 0 35px;
    }

    .l-header__gnavLists {
        flex-direction: column;
    }

    .l-header__gnavList {
        width: 100%;
        height: auto;
    }

    .l-header__gnavList:not(:last-child) {
        margin: 0;
    }

    .l-header__gnavLists li > a {
        display: flex;
        flex-direction: column;
    }

    .l-header__gnavList a {
        font-size: 1.7rem;
    }

    .l-header__gnavLists li.has-child > a {
        position: relative;
    }

    .l-header__gnavLists li.has-child > a:after {
        content: '';
        position: absolute;
        right: 40px;
        width: 12px;
        height: 12px;
        border-top: 2px solid #222;
        border-right: 2px solid #222;
        transform: rotate(135deg) translateY(-50%);
    }

    .l-header__gnavLists li.has-child.active > a:after {
        transform: rotate(-45deg);
    }

    nav ul li a {
        padding: 10px 20px;
        border-bottom: 1px dashed #ccc;
    }

    .nav ul li:last-child a {
        border-bottom: none;
    }

    nav ul li:first-child a {
        border-top: 1px dashed #ccc;
    }

    nav ul li li a {
        padding: 0;
    }

    .input-hidden {
        display: none;
    }

    .hamburger-demo-switch {
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        width: 70px;
        height: 70px;
        background-color: #fff;
    }

    .hamburger-switch-line1,
    .hamburger-switch-line1-before,
    .hamburger-switch-line1-after {
        width: 25px;
        height: 3px;
        background: #DBA581;
        position: absolute;
        top: 50%;
        left: 50%;
        transition: .3s;
        border-radius: 100px;
        content: "";
    }

    .hamburger-switch-line1 {
        transform: translate(-50%, -50%);
    }

    .hamburger-switch-line1-before {
        transform: translate(-50%, -300%);
    }

    .hamburger-switch-line1-after {
        transform: translate(-50%, 200%);
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1 {
        width: 0;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1-before {
        background-color: #DBA581;
        transform: rotate(45deg) translate(-40%, 325%);
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1-after {
        background-color: #DBA581;
        transform: rotate(-45deg) translate(-40%, -325%);
    }

    .l-header__gnav {
        position: fixed;
        height: 100vh;
        background: #F7F4F1;
        padding: 5em 3% 2em;
        z-index: 9998;
        transition: .3s;
        overflow-y: scroll;
        justify-content: flex-start;
        align-items: center;
        top: 0;
        left: 100%;
        width: 80%;
    }

    .l-header__gnavLists {
        width: 100%;
        margin-right: 3%;
        padding-left: 5% !important;
        list-style: none;
        margin-bottom: 40px;
    }

    .l-header__gnavLists li a {
        text-decoration: none;
        color: #000;
        padding: 1.5em 0;
    }

    #hamburger-demo1:checked ~ .l-header__gnav {
        left: 20%;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-cover {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 9997;
        background: rgba(3, 3, 3, .5);
        display: block;
    }

    .l-header__gnavList > a {
        height: auto;
    }

    .logo a {
        width: 240px;
    }

    .l-header__gnavContact {
        width: 100%;
        margin: 20px 0;
    }

    .l-header__gnavContact a {
        width: 100%;
        border-bottom: none !important;

        background-color: #DBA581;
        color: #fff !important;
    }

    .l-header__gnavContact span:before {
        background-image: url(images/header_form_icon_sp.svg);
    }

    .l-header__gnavSns a {
        padding: 0 !important;
        border-bottom: none !important;
    }

    .l-header__dropdown {
        position: static;
        transform: none;
        width: 100%;
        background-color: #fff;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .l-header__dropdown li:first-child a {
        border-top: none;
    }

    .l-header__dropdownItem a {
        padding: 10px 20px 10px 20px !important;
        font-size: 1.5rem;
        color: #555;
    }

    .l-header__gnavList.has-dropdown.is-open > .l-header__dropdown {
        display: block;
    }

    .l-header__gnavList.has-dropdown > .l-header__dropdown {
        display: none;
    }

    .l-header__gnavList.has-dropdown {
        position: relative;
    }

    .l-header__gnavList.has-dropdown > a {
        padding-right: 40px !important;
        position: relative;
        display: block;
    }

    .l-header__gnavList.has-dropdown > a::after {
        content: "";
        display: block;
        border-top: 7px solid #DBA581;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }

    .l-header__gnavList.has-dropdown.is-open > a::after {
        transform: translateY(-50%) rotate(180deg);
        border-top-color: #DBA581;
    }

    .l-header__gnavSns .sp {
        display: block;
    }

    .l-header__gnavSns .pc {
        display: none;
    }
}

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

    #l-header {
        height: 55px;
    }

    .hamburger-demo-switch {
        width: 55px;
        height: 55px;
    }

    .l-header__gnav {
        padding: 4em 3% 2em;
    }

    .l-header__gnavList a {
        font-size: 1.5rem;
    }

    .l-header__inner {
        padding: 0 15px;
    }

    .l-header__gnavList {
        width: 100%;
    }

    .l-header__gnavLists li.has-child > a:after {
        right: 8px;
        width: 8px;
        height: 8px;
    }

    .logo a {
        width: 190px;
    }

    .l-header__gnavLists li a {
        padding: 0.9em 0;
    }

    .l-header__gnavWrap {
        flex-direction: column;
    }
}

/*----------------------------------------
	footer
----------------------------------------*/

.l-footer {
    padding: 75px 0 30px;
    background-color: #8C6A4D;
}

.l-footerLogo {
    display: block;
    margin: 0 0 30px;
}

.l-footer__copyright {
    color: #fff;
    font-size: 1.6rem;
    padding: 60px 0 0;
    text-align: center;
}

.l-footerNav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 40px;
}

.l-footerNav__list:not(:last-child) {
    margin: 0 54px 0 0;
}

.l-footerNav__list a {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    color: #fff;
}

.l-footerWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-footerArea {
    border-radius: 20px;
    background-color: #F7F4F1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 70px;
}

.l-footerArea__text {
    width: 53%;
    margin: 0 88px 0 0;
}

.l-footerArea__text h2 {
    font-size: 2.4rem;
    letter-spacing: 0.07em;
    margin: 0 0 30px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.l-footerInfo .c-text {
    color: #fff;
    line-height: 1.2;
}

.l-footerWrap {
    margin: 0 0 70px;
}

.l-footerSns {
    display: flex;
    align-items: center;
}

.l-footerSns a {
    display: block;
    text-align: center;
}

.l-footerSns span {
    color: #fff;
}

.l-footerSns a:first-child {
    margin: 0 42px 0 0;
}

.l-footerSns a:first-child:before {
    content: "";
    display: block;
    background-image: url(images/footer_instagram.svg);
    width: 46px;
    height: 45px;
    margin: 0 auto 14px;
}

.l-footerSns a:last-child:before {
    content: "";
    display: block;
    background-image: url(images/footer_access.svg);
    width: 34px;
    height: 45px;
    margin: 0 auto 14px;
}

.l-footerCopyright {
    font-size: 1.6rem;
    color: #fff;
    padding: 60px 0 0;
    text-align: center;
    border-top: 1px solid #fff;
}

@media (max-width: 1300px) {
    .l-footerNav__list a {
        font-size: 1.4vw;
    }

    .l-footerNav__list:not(:last-child) {
        margin: 0px 35px 0px 0px;
    }
}

@media (max-width: 820px) {
    .l-footer {
        padding: 50px 0 20px;
    }

    .l-footerLogo {
        margin: 0 0 20px;
        text-align: center;
    }

    .l-footerArea {
        flex-direction: column;
        padding: 30px 20px;
        margin: 0 0 50px;
    }

    .l-footerArea__text {
        width: 100%;
        margin: 0 0 20px 0;
        text-align: center;
    }

    .l-footerArea__text h2 {
        font-size: 2rem;
        margin: 0 0 20px;
    }

    .l-footerNav {
        flex-wrap: wrap;
        margin: 0 0 30px;
        padding: 0 10px;
    }

    .l-footerNav__list {
        width: 50%;
        margin: 0 !important;
        padding: 12px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
    }

    .l-footerNav__list:not(:last-child) {
        margin-right: 0;
    }

    .l-footerNav__list a {
        font-size: 1.6rem;
    }

    .l-footerWrap {
        flex-direction: column;
        margin: 0 0 50px;
    }

    .l-footerWrap .l-footerLogo {
        margin: 0 0 30px;
    }

    .l-footerInfo .c-text {
        text-align: center;
        margin: 0 0 30px;
    }

    .l-footerSns a:first-child {
        margin: 0 30px 0 0;
    }

    .l-footerCopyright {
        padding: 40px 0 0;
        font-size: 1.4rem;
    }
}

@media (max-width: 590px) {

    .l-footer {
        padding: 40px 0 10px;
    }

    .l-footerArea {
        padding: 20px 15px;
        margin: 0 0 40px;
    }

    .l-footerArea__text h2 {
        font-size: 1.8rem;
    }

    .l-footerNav {
        flex-direction: column;
        margin: 0px 0px 15px;
    }

    .l-footerNav__list {
        width: 100%;
        margin: 0 0 8px 0 !important;
    }

    .l-footerNav__list a {
        font-size: 1.5rem;
    }

    .l-footerSns a:first-child:before,
    .l-footerSns a:last-child:before {
        margin: 0 auto 8px;
    }

    .l-footerSns a:first-child {
        margin: 0 20px 0 0;
    }

    .l-footerCopyright {
        padding: 30px 0 0;
        font-size: 1.2rem;
    }

    .l-footerInfo .c-text {
        font-size: 1.2rem;
    }

    .l-footerLogo {
        width: 250px;
    }

    .l-footerWrap .l-footerLogo {
        margin: 0px auto 10px;
    }

    .l-footerLogo img {
        width: 100%;
    }

    .l-footerSns {
        font-size: 1.2rem;
    }

    .l-footerSns a:first-child:before {
        width: 38px;
        height: 37px;
        background-size: 100%;
    }

    .l-footerSns a:last-child:before {
        width: 30px;
        height: 39px;
        background-size: 100%;
    }
}

/*----------------------------------------
	bottomContact
----------------------------------------*/

.p-bottomContact {
    padding: 63px 0 102px;
    background-color: #DBA581;
    text-align: center;
}

.p-bottomContact .c-topTitle__wrap {
    margin: 0 0 88px;
    text-align: left;
    position: relative;
}

.p-bottomContact .c-topTitle__wrap:before {
    content: "Contact";
    font-size: 16.9rem;
    opacity: 0.17;
    font-family: "Homemade Apple", cursive;
    font-weight: 400;
    font-style: normal;
    position: absolute;
    transform: translateY(-50%);
    top: 105%;
    left: -15%;
    color: #fff;
}

.p-bottomContact ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 25px;
    padding: 0;
    list-style: none;
}

.p-bottomContact__point {
    font-size: 2.2rem;
    width: 32.3%;
    background: #fff;
    padding: 20px 0;
    border-radius: 8px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
}

.p-bottomContact__point span:before {
    content: "";
    display: block;
    background-image: url(images/contact_point_icon.svg);
    width: 36px;
    height: 32px;
    margin: 0 auto 10px;
}

.p-bottomContact__wrap {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 0 auto;
}

.p-bottomContact__box {
    background: #fff;
    padding: 32px 0;
    width: 48%;
    min-width: 300px;
    text-align: center;
    border-radius: 10px;
}

.p-bottomContact__box h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.p-bottomContact__tel a {
    display: block;
    font-size: 4.3rem;
    font-weight: bold;
    margin-bottom: 16px;
    letter-spacing: 0.07em;
    color: #F28C42;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-bottomContact__tel p {
    font-size: 1.6rem;
    color: #000000;
}

.p-bottomContact__form .c-button {
    display: block;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    margin: 10px 0;
    font-weight: bold;
}

.p-bottomContact__form p {
    font-size: 1.6rem;
}

.p-bottomContact__form a {
    width: 354px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F28C42;
    border-radius: 100px;
    margin: 0 auto 12px;
    color: #fff;
    font-weight: bold;
}

.p-bottomContact .c-topTitle__wrap p {
    color: #fff;
}

.p-bottomContact .c-topTitle__wrap h2 {
    color: #fff;
}

@media screen and (max-width:1600px) {
    .p-bottomContact .c-topTitle__wrap:before {
        font-size: 12.9rem;
        top: 95%;
        left: -3%;
    }
}

@media screen and (max-width:1200px) {
    .p-bottomContact__point {
        font-size: 1.8vw;
    }
}

@media screen and (max-width:820px) {
    .p-bottomContact {
        padding: 50px 0 60px;
    }

    .p-bottomContact .c-topTitle__wrap {
        margin: 0 0 52px;
    }

    .p-bottomContact__wrap {
        flex-direction: column;
        gap: 0;
    }

    .p-bottomContact__box h3 {
        font-size: 1.8rem;
    }

    .p-bottomContact__tel {
        margin: 0 0 20px;
    }

    .p-bottomContact__tel p {
        font-size: 1.4rem;
    }

    .p-bottomContact__tel a {
        font-size: 3.6rem;
    }

    .p-bottomContact .c-topTitle__wrap:before {
        font-size: 11vw;
    }

    .p-bottomContact__box {
        width: 100%;
        padding: 25px 0px;
    }

    .p-bottomContact__point {
        font-size: 2vw;
        border-radius: 100px;
    }

    .p-bottomContact__point span::before {
        width: 24px;
        height: 21px;
        background-size: 100%;
    }

    .p-bottomContact__form p {
        font-size: 1.4rem;
    }

    .p-bottomContact ul {
        flex-direction: column;
        gap: 10px;
    }

    .p-bottomContact__point {
        width: 100%;
        display: flex;
        font-size: 1.6rem;
        border-radius: 100px;
        padding: 8px 12px;
    }

    .p-bottomContact__point span::before {
        margin: 0px 10px 0 0;
    }

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

@media screen and (max-width:590px) {
    .p-bottomContact {
        padding: 40px 0px;
    }

    .p-bottomContact .c-topTitle__wrap {
        margin: 0px 0px 30px;
    }

    .p-bottomContact__form a {
        width: 90%;
        height: 45px;
    }

    .p-bottomContact__tel a {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .p-bottomContact__box h3 {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }

    .p-bottomContact__tel p {
        font-size: 1.2rem;
    }
}

/*----------------------------------------
	topCommon
----------------------------------------*/

.c-topTitle__wrap {
    margin: 0 0 36px;
}

.c-topTitle__wrap h2 {
    font-size: 4.2rem;
    letter-spacing: 0.07em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.c-topTitle__wrap p {
    font-size: 2.6rem;
    font-family: "Homemade Apple", cursive;
    font-weight: 400;
    font-style: normal;
    color: #F28C42;
    line-height: 1.452;
    margin: 0 0 14px;
}

@media screen and (max-width:1300px) {
    .c-topTitle__wrap h2 {
        font-size: 3.5rem;
    }

    .c-topTitle__wrap p {
        font-size: 2.2rem;
    }
}

@media screen and (max-width:820px) {
    .c-topTitle__wrap p {
        font-size: 1.8rem;
        margin: 0px 0px 5px;
    }

    .c-topTitle__wrap h2 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width:590px) {
    .c-topTitle__wrap {
        margin: 0px 0px 25px;
    }

    .c-topTitle__wrap p {
        font-size: 1.5rem;
        margin: 0px 0px 5px;
    }

    .c-topTitle__wrap h2 {
        font-size: 2.1rem;
    }

    .p-bottomContact .c-topTitle__wrap::before {
        font-size: 13vw;
    }
}

/*----------------------------------------
	topMv
----------------------------------------*/

.p-topMv {
    background-color: #DBA581;
    position: relative;
}

.p-topMv__bg {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.p-topMv__img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.p-topMv__imgLeft {
    background-image: url(images/mv_left.jpg);
    border-radius: 0 50px 50px 0;
    width: 44.7%;
    height: 69vh;
}

.p-topMv__imgRight {
    background-image: url(images/mv_right.jpg);
    border-radius: 50px 0 0 50px;
    width: 50%;
    height: 100vh;
}

.p-topMv__jp {
    font-size: 3.3rem;
    letter-spacing: 0.07em;
    writing-mode: vertical-rl;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 4.4%;
}

.p-topMv__jp p {
    display: inline-block;
    background-color: #fff;
    padding: 26px 18px;
}

.p-topMv__jp p:first-child {
    margin: 0 0 0 10px;
}

.p-topMv__en {
    width: 61.5%;
    position: absolute;
    bottom: 47px;
    left: 49px;
}

.p-topMv__en img {
    width: 100%;
}

.p-topMv__news {
    width: 1006px;
    position: absolute;
    right: 0;
    bottom: 55px;
    border-radius: 200px 0 0 200px;
    background-color: #fff;
    padding: 22px 22px 22px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-topMv__news h3 {
    font-size: 2.6rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.06em;
    margin: 0 50px 0 0;
    color: #F28C42;
}

.p-topMv__news h4 {
    width: 72%;
    font-size: 1.8rem;
    line-height: 1.3;
}

.p-topMv__newsDate {
    font-size: 1.4rem;
    color: #333333;
    display: flex;
    align-items: center;
}

.p-topMv__newsDate:after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background-color: rgba(49, 49, 49, 0.5);
    margin: 0 10px;
}

.p-topMv__newsTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.p-topMv__newsButton {
    display: flex;
    align-items: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topMv__newsButton:after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 42px;
    background-image: url(images/top_news_button_arrow.svg);
    background-repeat: no-repeat;
    margin: 0 0 0 20px;
}

@media (max-width: 1500px) {
    .p-topMv__news {
        width: 75%;
    }

    .p-topMv__news {
        bottom: -10px;
        z-index: 1;
    }

    .p-topMv__en {
        bottom: 95px;
    }
}

@media (max-width: 1200px) {
    .p-topMv__jp {
        font-size: 2.8rem;
    }

    .p-topMv__jp p {
        padding: 15px;
    }

    .p-topMv__news {
        width: 80%;
        padding: 15px 22px 15px 25px;
    }

    .p-topMv__news h3 {
        font-size: 2.2rem;
        margin: 0 30px 0 0;
    }

    .p-topMv__news h4 {
        font-size: 1.6rem;
    }

    .p-topMv__newsButton {
        font-size: 1.5rem;
    }

    .p-topMv__newsButton:after {
        width: 32px;
        height: 32px;
        background-size: 100%;
    }
}

@media (max-width: 820px) {
    .p-topMv__bg {
        flex-direction: column;
    }

    .p-topMv__imgLeft,
    .p-topMv__imgRight {
        width: 100%;
        border-radius: 0;
        height: 50vh;
    }

    .p-topMv__imgLeft {
        height: 40vh;
    }

    .p-topMv__jp {
        font-size: 2.5rem;
        right: 5%;
    }

    .p-topMv__jp p {
        padding: 20px 15px;
    }

    .p-topMv__en {
        width: 70%;
        bottom: 20%;
        left: 50%;
        transform: translateX(-50%);
    }

    .p-topMv__news {
        width: 90%;
        right: 5%;
        left: 5%;
        margin: 0 auto;
        bottom: 30px;
        border-radius: 100px;
        padding: 15px 15px 15px 25px;
        flex-wrap: wrap;
        bottom: -40px;
        z-index: 1;
    }

    .p-topMv__news h3 {
        font-size: 2.2rem;
        margin: 0px 0 12px 0px;
    }

    .p-topMv__newsTitle {
        flex-direction: column;
        align-items: flex-start;
        flex-grow: 1;
        min-width: 50%;
    }

    .p-topMv__newsTitle a {
        min-width: 100%;
    }

    .p-topMv__newsDate {
        font-size: 1.3rem;
    }

    .p-topMv__newsDate:after {
        margin: 0 5px;
    }

    .p-topMv__news h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 590px) {

    .p-topMv__imgLeft,
    .p-topMv__imgRight {
        height: 35vh;
    }

    .p-topMv__jp {
        font-size: 1.8rem;
        right: auto;
        left: 6%;
    }

    .p-topMv__jp p {
        padding: 15px 10px;
    }

    .p-topMv__en {
        width: 90%;
        bottom: 15%;
    }

    .p-topMv__news {
        width: 95%;
        left: 2.5%;
        right: 2.5%;
        bottom: -82px;
        border-radius: 10px;
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .p-topMv__news h3 {
        font-size: 1.6rem;
        margin: 0 0 10px 0;
        width: 100%;
        text-align: center;
    }

    .p-topMv__newsTitle {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .p-topMv__newsTitle a {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-topMv__newsDate {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .p-topMv__newsDate:after {
        display: none;
    }

    .p-topMv__news h4 {
        width: 100%;
        font-size: 1.4rem;
    }

    .p-topMv__newsButton::after {
        width: 20px;
        height: 20px;
        background-size: 100%;
        margin: 0px 0px 0px 8px;
    }

    .p-topMv__newsTitle a {
        margin: 0 0 12px;
    }
}

/*----------------------------------------
	topWorks
----------------------------------------*/

.p-topWorks {
    background-color: #DBA581;
    margin: 0 0 130px;
    padding: 70px 0 0;
    position: relative;
}

.p-topWorks:before {
    content: "";
    display: block;
    width: 100%;
    height: 165px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.p-topWorks .c-topTitle__wrap {
    margin: 0;
}

.p-topWorks .c-topTitle__wrap p {
    color: #fff;
}

.p-topWorks .c-topTitle__wrap h2 {
    color: #fff;
}

.p-topWorks__titleWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    margin: 0 0 90px;
    padding: 0 0 30px;
}

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

.p-topWorks__title .c-text {
    color: #fff;
    font-size: 2rem;
    margin: 0 0 0 75px;
}

.p-topWorks__slider {
    position: relative;
    z-index: 1;
}

.p-topWorks .c-button {
    color: #fff;
}

.p-topWorks .c-button span:after {
    background-image: url(images/button_arrow_white.svg);
}

.p-topWorks__slider img {
    width: 100%;
    border-radius: 10px;
}

.p-topWorks__img {
    width: 100%;
    margin: 0 0 30px;
}

.p-topWorks__item {
    margin: 0 25px;
}

.p-topWorks__item h3 {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topWorks__info {
    display: flex;
    align-items: center;
    margin: 0 0 8px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topWorks__access {
    margin: 0 10px 0 0;
    display: flex;
    align-items: center;
}

.p-topWorks__access:before {
    content: "";
    display: inline-block;
    background-image: url(images/works_access_icon.svg);
    width: 16px;
    height: 22px;
    margin: 0 6px 0 0;
}

.p-topWorks__slider .slick-prev:before,
.p-topWorks__slider .slick-next:before {
    background-image: url(images/top_works_button_arrow.svg) !important;
    width: 91px;
    height: 91px;
    top: 0;
}

.p-topWorks__slider .slick-next {
    width: 91px;
    height: 91px;
    right: 40px;
    top: 30%;
    transform: unset;
}

.p-topWorks__slider .slick-prev {
    width: 91px;
    height: 91px;
    left: 40px;
    top: 30%;
    transform: unset;
}

@media (max-width: 820px) {
    .p-topWorks {
        margin: 0 0 60px;
        padding: 85px 0px 0px;
    }

    .p-topWorks:before {
        height: 200px;
    }

    .p-topWorks__titleWrap {
        align-items: center;
        margin: 0px 0px 40px;
        padding: 0 0 20px;
    }

    .p-topWorks .p-topWorks__title {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .p-topWorks__title .c-text {
        font-size: 1.8rem;
        margin: 10px 0 0 0;
    }

    .p-topWorks__item {
        margin: 0 15px;
    }

    .p-topWorks__img {
        margin: 0 0 20px;
    }

    .p-topWorks__item h3 {
        font-size: 2.2rem;
    }

    .p-topWorks__slider .slick-prev:before,
    .p-topWorks__slider .slick-next:before {
        width: 60px;
        height: 60px;
    }

    .p-topWorks__slider .slick-next {
        width: 60px;
        height: 60px;
        right: 10px;
        top: 35%;
    }

    .p-topWorks__slider .slick-prev {
        width: 60px;
        height: 60px;
        left: 10px;
        top: 35%;
    }
}

@media (max-width: 590px) {
    .p-topWorks {
        margin: 0 0 40px;
        padding: 110px 0 0;
    }

    .p-topWorks:before {
        height: 170px;
        bottom: -1px;
    }

    .p-topWorks__titleWrap {
        margin: 0 0 30px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        padding: 0 0 15px;
    }

    .p-topWorks .c-button {
        display: none;
    }

    .p-topWorks .p-topWorks__title {
        margin: 0;
    }

    .p-topWorks__title .c-text {
        font-size: 1.5rem;
    }

    .p-topWorks__item {
        margin: 0 10px;
    }

    .p-topWorks__item h3 {
        font-size: 1.5rem;
    }

    .p-topWorks__info {
        font-size: 1.2rem;
    }

    .p-topWorks__slider .slick-prev:before,
    .p-topWorks__slider .slick-next:before {
        width: 40px;
        height: 40px;
    }

    .p-topWorks__slider .slick-next {
        width: 40px;
        height: 40px;
        right: 0px;
        top: 30%;
    }

    .p-topWorks__slider .slick-prev {
        width: 40px;
        height: 40px;
        left: 0px;
        top: 30%;
    }
}

/*----------------------------------------
	topAbout
----------------------------------------*/

.p-topAbout {
    background-image: url(images/top_about_bg.jpg);
    background-size: cover;
    padding: 65px 0 0;
    position: relative;
}

.p-topAbout:before {
    content: "";
    width: 100%;
    height: 128px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.p-topAbout:after {
    content: "";
    background-image: url(images/top_about_deco.png);
    background-repeat: no-repeat;
    width: 605px;
    height: 460px;
    position: absolute;
    bottom: 128px;
    left: 0;
}

.p-topAbout__text {
    width: 49%;
    z-index: 1;
    margin: 0 69px 0 0;
}

.p-topAbout__text h3 {
    font-size: 5.3rem;
    letter-spacing: 0.04em;
    margin: 0 0 56px;
    color: #F28C42;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topAbout__text .c-text {
    font-size: 2.2rem;
    line-height: 2.727;
    font-weight: bold;
}

.p-topAbout__img {
    width: 37.2%;
    height: 931px;
    border-radius: 40px 0 0 40px;
    background-image: url(images/top_about.jpg);
    background-size: cover;
    margin: 28px 0 0;
    z-index: 1;
}

.p-topAbout__wrap {
    display: flex;
    justify-content: flex-end;
}

.p-topAbout__text .c-button {
    align-items: flex-start;
    margin: 62px 0 0;
}

@media screen and (max-width: 1300px) {
    .p-topAbout__text {
        width: 52%;
    }

    .p-topAbout__text .c-text {
        font-size: 1.8rem;
    }

    .p-topAbout__text h3 {
        font-size: 4.3rem;
    }

    .p-topAbout:after {
        width: 450px;
        height: 340px;
        background-size: 100%;
    }

    .p-topStrength .c-topTitle__wrap {
        margin: 0 0 60px;
    }

    .p-topStrength__list:nth-of-type(even):before {
        right: -30px;
    }
}

@media (max-width: 820px) {
    .p-topAbout {
        margin: 0 0 100px;
        padding: 50px 0 0;
    }

    .p-topAbout:before {
        height: 80px;
    }

    .p-topAbout:after {
        width: 400px;
        height: 304px;
        bottom: 80px;
        background-size: contain;
    }

    .p-topAbout__wrap {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .p-topAbout__text {
        width: 90%;
        margin: 0 0 40px 0;
    }

    .p-topAbout__text h3 {
        font-size: 3.2rem;
        margin: 0 0 30px;
    }

    .p-topAbout__text .c-text {
        font-size: 1.6rem;
        line-height: 2;
    }

    .p-topAbout__text .c-button {
        margin: 25px 0 0;
    }

    .p-topAbout__img {
        width: 52%;
        height: 480px;
        margin: 0;
        border-radius: 20px;
    }
}

@media (max-width: 590px) {
    .p-topAbout {
        margin: 0px 0px 50px;
        padding: 40px 0 0;
    }

    .p-topAbout:before {
        height: 60px;
    }

    .p-topAbout:after {
        width: 250px;
        height: 190px;
        bottom: 60px;
        left: -20px;
    }

    .p-topAbout__text {
        width: 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .p-topAbout__text h3 {
        font-size: 2.4rem;
        margin: 0px 0px 15px;
    }

    .p-topAbout__text .c-text {
        font-size: 1.4rem;
    }

    .p-topAbout__text .c-button {
        margin: 30px 0 0;
    }

    .p-topAbout__img {
        width: 100%;
        height: 220px;
        border-radius: 0;
        background-position: center 79%;
    }
}

/*----------------------------------------
	topStrength
----------------------------------------*/

.p-topStrength {
    margin: 0 0 110px;
}

.p-topStrength .c-topTitle__wrap {
    margin: 0 0 95px;
}

.p-topStrength__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.p-topStrength__list:before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    background-image: url(images/top_strength_deco_left.png);
    width: 254px;
    height: 269px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.p-topStrength__list:nth-of-type(even):before {
    left: auto;
    right: -60px;
    background-image: url(images/top_strength_deco_right.png);
}

.p-topStrength__list:nth-of-type(even) {
    flex-direction: row-reverse;
}

.p-topStrength__list:not(:last-child) {
    margin: 0 0 60px;
}

.p-topStrength__img {
    width: 47%;
}

.p-topStrength__img img {
    border-radius: 10px;
}

.p-topStrength__num {
    display: block;
    font-size: 3.2rem;
    letter-spacing: 0.08em;
    color: #F28C42;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 12px;
}

.p-topStrength__text {
    width: 47.6%;
}

.p-topStrength__text h3 {
    font-size: 3rem;
    line-height: 1.833;
    margin: 0 0 40px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topStrength .c-button {
    margin: 90px 0 0;
}

@media screen and (max-width: 1300px) {
    .p-topStrength__list:before {
        width: 201px;
        height: 213px;
        top: -30px;
        left: -30px;
    }

    .p-topStrength__text h3 {
        font-size: 2.8rem;
        margin: 0 0 30px;
    }

    .p-topStrength .c-button {
        margin: 60px 0 0;
    }
}

@media screen and (max-width: 820px) {
    .p-topStrength {
        margin: 0 0 50px;
    }

    .p-topStrength .c-topTitle__wrap {
        margin: 0 0 50px;
    }

    .p-topStrength__list {
        flex-direction: column;
    }

    .p-topStrength__list:nth-of-type(even) {
        flex-direction: column;
    }

    .p-topStrength__list:before {
        left: 17%;
        transform: translateX(-50%);
        top: -40px;
    }

    .p-topStrength__list:nth-of-type(even):before {
        right: 17%;
        left: auto;
    }

    .p-topStrength__list:nth-of-type(even):before {
        right: -17%;
        left: auto;
    }

    .p-topStrength__list:not(:last-child) {
        margin: 0 0 70px;
    }

    .p-topStrength__img {
        width: 75%;
        margin-bottom: 20px;
    }

    .p-topStrength__text {
        width: 100%;
    }

    .p-topStrength__text h3 {
        font-size: 2rem;
        line-height: 1.4;
        margin: 0 0 20px;
    }

    .p-topStrength__num {
        font-size: 2.2rem;
        margin: 0 0 10px;
    }

    .p-topStrength__list::before {
        width: 130px;
        height: 138px;
    }

    .p-topStrength .c-button {
        margin: 60px 0 0;
    }

    .p-topStrength__text h3 br {
        display: none;
    }
}

@media screen and (max-width: 590px) {
    .p-topStrength {
        margin: 0 0 40px;
    }

    .p-topStrength .c-topTitle__wrap {
        margin: 0 0 40px;
    }

    .p-topStrength__list:not(:last-child) {
        margin: 0 0 50px;
    }

    .p-topStrength__text h3 {
        font-size: 1.8rem;
        line-height: 1.6;
        margin: 0 0 14px;
    }

    .p-topStrength__list::before {
        width: 100px;
        height: 105px;
    }

    .p-topStrength__num {
        font-size: 2.2rem;
    }

    .p-topStrength .c-button {
        margin: 40px 0 0;
    }

    .p-topStrength__text h3 br {
        display: block;
    }

    .p-topStrength__img {
        width: 100%;
    }

    .p-topStrength__list::before {
        left: 10%;
        top: -5%;
    }

    .p-topStrength__list:nth-of-type(even):before {
        right: -18%;
    }

    .p-topStrength .c-button {
        margin: 25px 0 0;
    }
}

/*----------------------------------------
	topService
----------------------------------------*/

.p-topService {
    background-color: #ABC59D;
    background-image: url(images/top_service_bg.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 0;
    margin: 0 0 110px;
    padding: 64px 0 115px;
}

.p-topService .c-topTitle__wrap {
    margin: 0 0 50px;
    text-align: center;
}

.p-topService .c-topTitle__wrap p {
    color: #fff;
}

.p-topService .c-topTitle__wrap h2 {
    color: #fff;
}

.p-topService__wrap {
    display: flex;
    justify-content: space-between;
}

.p-topService__box {
    width: 31%;
}

.p-topService__box img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.p-topService__text {
    padding: 50px 45px 0;
    background-color: #fff;
    height: 398px;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.p-topService__text:before {
    content: "";
    display: block;
    position: absolute;
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
    background-size: 100%;
    background-image: url(images/top_service_button_arrow.svg);
    background-repeat: no-repeat;
}

.p-topService__text h3 {
    font-size: 3.5rem;
    letter-spacing: 0.03em;
    margin: 0 0 32px;
    line-height: 1.455;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.p-topService__text h3 span {
    display: block;
    font-size: 2.2rem;
}

.p-topService__img {
    overflow: hidden;
}

.p-topService__img img {
    transition: transform 0.5s ease;
    display: block;
}

.p-topService__box a {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-topService__box a:hover .p-topService__img img {
    transform: scale(1.05);
}

@media (max-width: 1300px) {
    .p-topService__text h3 {
        font-size: 2.5vw;
    }

    .p-topService__text h3 span {
        font-size: 1.5vw;
    }
}

@media (max-width: 820px) {
    .p-topService {
        margin: 0 0 80px;
        padding: 50px 0 60px;
    }

    .p-topService .c-topTitle__wrap {
        margin: 0 0 40px;
    }

    .p-topService__wrap {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-around;
    }

    .p-topService__box {
        width: 100%;
    }

    .p-topService__box a {
        display: flex;
    }

    .p-topService__text {
        width: 70%;
        height: auto;
        min-height: auto;
        padding: 35px 20px 0;
        border-radius: 0 10px 10px 0;
    }

    .p-topService__text h3 {
        font-size: 2.4rem;
        margin: 0 0 20px;
    }

    .p-topService__text h3 span {
        font-size: 1.5rem;
    }

    .p-topService__text:before {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .p-topService__box img {
        height: 100%;
        object-fit: cover;
        border-radius: 10px 0;
    }

    .p-topService__img {
        width: 30%;
    }
}

@media (max-width: 590px) {
    .p-topService {
        border-radius: 30px 30px 0 0;
        margin: 0 0 60px;
        padding: 40px 0 60px;
    }

    .p-topService .c-topTitle__wrap {
        margin: 0 0 30px;
    }

    .p-topService__wrap {
        gap: 20px;
        justify-content: center;
    }

    .p-topService__box {
        width: 90%;
    }

    .p-topService__text {
        min-height: 250px;
        padding: 25px 15px 60px;
    }

    .p-topService__text h3 {
        font-size: 1.8rem;
        margin: 0 0 15px;
    }

    .p-topService__text h3 span {
        font-size: 1.5rem;
    }

    .p-topService__text:before {
        width: 35px;
        height: 35px;
    }

    .p-topService__box a {
        flex-direction: column;
    }

    .p-topService__img {
        width: 100%;
    }

    .p-topService__text {
        width: 100%;
        border-radius: 0px 0px 10px 10px;
        min-height: auto;
    }

    .p-topService__box img {
        border-radius: 10px 10px 0 0;
    }
}

/*----------------------------------------
	topInstagram
----------------------------------------*/

.p-topInstagram__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-topInstagram__wrap img {
    width: 15.3%;
}

.p-topInstagram__titleLogo {
    text-align: center;
    margin: 0 0 20px;
}

.p-topInstagram__title {
    text-align: center;
    margin: 0 0 48px;
}

.p-topInstagram__bg {
    background-color: #F7F4F1;
    border-radius: 20px;
    margin: 0 0 112px;
    padding: 90px 0;
}

.p-topInstagram .c-button {
    margin: 60px auto 0;
}

@media (max-width: 820px) {

    .p-topInstagram__wrap {
        flex-wrap: wrap;
        gap: 16px;
    }

    .p-topInstagram__wrap img {
        width: 22%;
    }

    .p-topInstagram__bg {
        padding: 70px 0;
        margin-bottom: 80px;
    }

    .p-topInstagram__title {
        margin-bottom: 32px;
    }

    .p-topInstagram__titleLogo {
        width: 269px;
        margin: 0px auto 15px;
    }

    .p-topInstagram__titleLogo img {
        width: 100%;
    }

    .p-topInstagram__title {
        width: 199px;
        margin: 0px auto 30px;
    }

    .p-topInstagram__title img {
        width: 100%;
    }

    .p-topInstagram__wrap img {
        width: 32%;
    }

    .p-topInstagram__wrap img:nth-child(n+4) {
        margin: 12px 0 0;
    }

    .p-topInstagram__wrap {
        gap: 0;
    }
}

@media (max-width: 590px) {

    .p-topInstagram__wrap {
        justify-content: center;
        gap: 12px;
    }

    .p-topInstagram__wrap img {
        width: 30%;
    }

    .p-topInstagram__bg {
        padding: 50px 0;
        margin-bottom: 50px;
    }

    .p-topInstagram__titleLogo {
        width: 210px;
        margin-bottom: 12px;
    }

    .p-topInstagram__title {
        width: 160px;
        margin-bottom: 24px;
        font-size: 18px;
    }

    .p-topInstagram .c-button {
        margin-top: 40px;
    }

    .p-topInstagram__wrap img:nth-child(n+4) {
        margin: 8px 0px 0px;
    }
}

/*----------------------------------------
	Contact
----------------------------------------*/

.p-contact {
    margin: 0 0 120px;
}

.p-contactIntro {
    margin: 0 0 110px;
    text-align: center;
}

.p-contactTel__box h2 {
    font-size: 3rem;
    letter-spacing: 0.08em;
    margin: 0 0 34px;
}

.p-contactTel__box {
    position: relative;
    text-align: center;
}

.p-contactTel__box:first-child {
    padding: 0 102px 0 0;
}

.p-contactTel__box:last-child {
    padding: 0 0 0 102px;
}

.p-contactTel__box:first-child:after {
    content: "";
    display: inline-block;
    background-color: #707070;
    width: 1px;
    height: 202px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.p-contactTel__wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 80px;
    padding: 64px 0;
    background-color: rgba(242, 140, 66, 0.18);
    border-radius: 30px;
}

.p-contactTel__time {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    line-height: 1.563;
    text-align: center;
}

.p-contactTel__number,
.p-contactFax__number {
    font-size: 4.4rem;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.08em;
}

.p-contactTel__number {
    display: block;
    margin: 0 0 16px;
}

.p-contactTel__number:before {
    content: "";
    display: inline-block;
    width: 48px;
    height: 48px;
    margin: 0 9px 0 0;
    background-image: url(images/contact_tel_icon.svg);
}

.p-contactFax__number:before {
    content: "";
    display: inline-block;
    width: 57px;
    height: 55px;
    margin: 0 9px 0 0;
    background-image: url(images/contact_fax_icon.svg);
}

.p-contactForm .c-pageTitle {
    text-align: center;
}

.contact_address_wrap input {
    width: 100%;
    border: none;
    height: 40px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid rgba(112, 112, 112, 0.3) !important;
}

.contact_address_box:not(:last-child) {
    margin: 0 0 13px;
}

.contact_address_box:nth-of-type(1) input {
    width: 45.6%;
}

.contact_address_box:nth-of-type(2) input {
    width: 26%;
}

.contact_address_box:nth-of-type(n+3) input {
    width: 60%;
}

.contact_address_box span {
    display: inline-block;
    width: 74px;
}

.contact_address_wrap {
    display: flex;
    flex-direction: column;
}

.p-contact__form {
    position: relative;
    padding: 130px 0 0;
}

.p-contact__form:before {
    content: "";
    background-color: #F0F9F8;
    width: 100%;
    height: 436px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.contact_mail {
    padding: 110px 0;
    background-color: #F7F7F7;
}

.contact_text {
    line-height: 2;
    padding: 70px 0;
}

.contact_time_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 60px;
    font-size: 1.6rem;
}

.contact_time_title {
    display: inline-block;
    background-color: #2da266;
    color: #fff;
    padding: 7px 14px;
    margin-right: 10px;
}

.page_contact_subtitle {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.table_contact_wrap {
    display: block;
    width: 1000px;
    margin: auto;
    padding: 80px 65px 110px;
    background-color: #F7F4F1;
    border-radius: 12px;
}

.table_contact {
    width: 100%;
    display: block;
}

.table_contact th {
    color: #333333;
    width: 24.5%;
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    line-height: 1.722;
    text-align: left;
}

.table_contact th label {
    display: flex;
    align-items: center;
}

.contact_address_wrap div:first-child {
    margin: 0 0 20px;
}

.table_contact tbody {
    display: block;
}

.table_contact td {
    padding: 20px;
    width: 75.5%;
    vertical-align: middle;
}

.table_contact td input.text {
    width: 100%;
    border: none;
    height: 40px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid rgba(112, 112, 112, 0.3);
}

.table_contact td input.text.addr {
    width: 85%;
}

.table_contact td span {
    margin: 0 20px 0 0;
}

.table_contact td span:last-of-type {
    font-weight: bold;
    margin: 0 0 15px;
}

.table_contact td textarea {
    width: 100%;
    border: none;
    height: 220px;
    padding: 20px 0 0 20px;
    background-color: #fff;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 3px;
    font-size: 1.6rem;
}

::placeholder {
    color: #9D9D9D;
}

.table_contact tr {
    display: flex;
    border-bottom: 1px solid #DDDDDD;
    width: 100%;
}

.table_contact tr:first-child {
    border-top: 1px solid #DDDDDD;
}

.required {
    display: inline-block;
    background-color: #F28C42;
    color: #fff;
    margin-left: 20px;
    padding: 1px 3px;
    font-weight: normal;
    letter-spacing: 0.06em;
    font-size: 1.1rem;
    border-radius: 2px;
}

.contact_button {
    width: 360px;
    height: 60px;
    margin: 40px auto 0;
    position: relative;
}

.contact_button input {
    background: none;
    border: none !important;
    border-radius: 3px;
    background-color: #F28C42 !important;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.07em;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 33px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}

.table_radio_wrap {
    display: flex;
}

.mwform-radio-field:last-child {
    margin: 0;
}

.agree_check {
    margin-bottom: 60px;
    color: #2B3A3F;
}

.agree_check a {
    color: #5BA560;
}

.mwform-checkbox-field {
    margin: 0 40px 0 0;
}

.agree_check .mwform-checkbox-field {
    margin: 0;
}

.mw_wp_form_confirm .required,
.mw_wp_form_confirm .option,
.mw_wp_form_confirm .agree_check,
.mw_wp_form_confirm .table_contact td span {
    display: none;
}

.selectbox {
    width: 320px;
    height: 40px;
    background-color: #EDEDED;
    border: 1px solid #DDDDDD;
    padding: 0 20px;
    border: none;
}

input::placeholder {
    color: #A0A0A0;
}

input[type="text"] {
    border: none;
}

input[type="text"]:focus {
    border: 1px solid #004DA0;
    outline: 0;
}

input::placeholder {
    color: #CECDCD;
}

.table_radio_wrap {
    display: flex;
    flex-direction: column;
}


.table_radio_wrap span:not(:last-child) {
    margin: 0 0 15px;
}

@media screen and (max-width: 1200px) {
    .p-contactTel__box:first-child {
        padding: 0 50px 0 0;
    }

    .p-contactTel__box:last-child {
        padding: 0 0 0 50px;
    }

    .p-contactTel__number,
    .p-contactFax__number {
        font-size: 3.8rem;
    }

    .p-contactTel__number:before {
        background-size: 100%;
        width: 35px;
        height: 35px;
    }

    .p-contactFax__number:before {
        background-size: 100%;
        width: 37px;
        height: 35px;
    }

    .p-contactTel__box h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 1000px) {
    .table_contact_wrap {
        width: 100%;
        padding: 50px 40px 80px;
    }

    .table_contact td input.text {
        width: 80%;
    }

    .table_contact th {
        width: 37%;
    }

    .table_contact td {
        width: 63%;
    }

    .table_radio_wrap {
        flex-direction: column;
        line-height: 2;
    }
}

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

    .p-contact {
        margin: 0 0 70px;
    }

    .table_contact tr:nth-of-type(1) td {
        display: flex;
        flex-direction: column;
        line-height: 2;
    }

    .mw_wp_form .bg01 {
        margin: 0 0 40px;
    }

    .contact_text {
        padding: 40px 0;
    }

    .table_contact tr {
        flex-direction: column;
        padding: 20px 0;
    }

    .table_contact th {
        width: 100%;
        font-size: 1.6rem;
        justify-content: flex-start;
        margin: 0 0 15px;
        padding: 0;
    }

    .table_contact td {
        width: 100%;
        padding: 0;
    }

    .mw_wp_form .bg01 {
        padding: 40px 0;
    }

    .table_contact td input.text {
        width: 60%;
        height: 35px;
    }

    .table_contact td input.text.addr {
        width: 85%;
    }

    .selectbox {
        width: 240px;
        height: 35px;
    }

    .contact_time_wrap {
        margin: 0 0 30px;
    }

    .agree_check {
        line-height: 1.75;
        margin-bottom: 30px;
    }

    .contact_time_wrap {
        font-size: 1.4rem;
    }

    .contact_button {
        width: 230px;
        height: 45px;
        margin: 30px auto 0;
    }

    .contact_button::before {
        left: 50px;
    }

    .contact_mail {
        padding: 60px 0;
    }

    .table_radio_wrap span:not(:last-child) {
        font-size: 1.4rem;
        margin: 0 0 8px;
    }

    .p-contact__form {
        padding: 70px 0 0;
    }

    .p-contactTel__wrap {
        flex-direction: column;
    }

    .p-contactTel__box {
        width: 100%;
        text-align: center;
    }

    .p-contactTel__box:first-child {
        padding: 0;
        margin: 0 0 30px;
    }

    .p-contactTel__box:last-child {
        padding: 0;
    }

    .p-contactTel__time {
        font-size: 1.4rem;
    }

    .p-contactTel__box h2 {
        font-size: 1.8rem;
        margin: 0 0 15px;
    }

    .p-contactTel__box:first-child:after {
        display: none;
    }

    .p-contactTel__wrap {
        margin: 0 0 70px;
    }

    .p-contactIntro {
        margin: 0 0 30px;
    }

    .p-contactTel__wrap {
        border-radius: 10px;
    }

    .p-contactTel__wrap {
        padding: 35px 0;
    }

    .p-contactTel__number,
    .p-contactFax__number {
        font-size: 2.4rem;
    }

    .p-contactTel__box h2 {
        font-size: 1.5rem;
        margin: 0 0 6px;
    }

    .p-contactTel__time {
        font-size: 1.1rem;
    }

    .p-contactTel__wrap {
        margin: 0 0 40px;
    }

    .contact_button input {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 590px) {
    .p-contact {
        margin: 0 0 50px;
    }

    .table_contact_wrap {
        padding: 35px 20px 50px;
    }

    .table_contact td input.text {
        width: 100%;
        height: 45px;
        font-size: 1.5rem;
    }

    .p-contactTel__number:before {
        width: 25px;
        height: 25px;
    }

    .p-contactFax__number:before {
        width: 27px;
        height: 25px;
    }

    .p-contactTel__number {
        margin: 0 0 10px;
    }

    .p-contactTel__wrap {
        padding: 25px 0;
    }

    .contact_address_box:nth-of-type(1) input {
        width: 220px;
    }

    .contact_address_box:nth-of-type(2) input {
        width: 76%;
    }

    .contact_address_box:nth-of-type(n+3) input {
        width: 76%;
    }
}

/*----------------------------------------
	page_common
----------------------------------------*/

.p-catch {
    width: 100%;
    height: 434px;
    position: relative;
    margin: 0 0 86px;
}

.p-catchBg {
    width: 95.3%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-position: right;
    margin-left: auto;
    border-radius: 40px 0 0 40px;
    background-position: 20%;
}

.p-catch:before {
    content: "";
    background-image: url(images/catch_deco.png);
    background-repeat: no-repeat;
    width: 299px;
    height: 183px;
    position: absolute;
    bottom: -68px;
    left: -53px;
}

.p-catch:after {
    content: "";
    width: 100%;
    height: 302px;
    background-color: #DBA581;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.p-catch__textWrap {
    display: flex;
    flex-direction: column-reverse;
    position: absolute;
    top: 50%;
    left: 13.6%;
    transform: translateY(-50%);
    z-index: 1;
}

.p-catch__jp {
    font-size: 3rem;
    letter-spacing: 0.08em;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-catch__en {
    display: block;
    font-size: 8.5rem;
    color: #fff;
    font-family: "Homemade Apple", cursive;
    font-weight: 400;
    font-style: normal;
    margin: 0 0 12px;
}

.p-catch__breadcrumb {
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    position: absolute;
    left: 13.2%;
    bottom: 23px;
    color: #fff;
}

.p-catch__breadcrumb a {
    color: #fff;
}

.c-pageTitle {
    display: flex;
    flex-direction: column-reverse;
    margin: 0 0 50px;
}

.c-pageTitle h2 {
    font-size: 4.2rem;
    letter-spacing: 0.07em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.c-pageTitle p {
    font-size: 2.6rem;
    font-family: "Homemade Apple", cursive;
    font-weight: 400;
    font-style: normal;
    color: #F28C42;
    margin: 0 0 16px;
}

@media screen and (max-width: 1300px) {
    .p-catch {
        height: 385px;
    }

    .p-catch:before {
        width: 260px;
        height: 160px;
        bottom: -50px;
        left: -72px;
        background-size: 100%;
    }

    .p-catch:after {
        height: 250px;
    }
}

@media screen and (max-width: 820px) {
    .p-catch:before {
        width: 180px;
        height: 112px;
        background-size: 100%;
        bottom: -32px;
    }

    .p-catch {
        height: 290px;
        margin: 0 0 50px;
    }

    .p-catch__en {
        font-size: 5.5rem;
        margin: 0 0 10px;
    }

    .p-catch__jp {
        font-size: 2.2rem;
    }

    .p-catch__breadcrumb {
        font-size: 1.1rem;
        line-height: 1.2;
        bottom: 12px;
    }

    .p-catch:after {
        height: 185px;
    }

    .c-pageTitle {
        margin: 0 0 25px;
    }

    .c-pageTitle p {
        font-size: 1.7rem;
        margin: 0 0 6px;
    }

    .c-pageTitle h2 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 590px) {
    .p-catch {
        height: 170px;
        margin: 0 0 40px;
    }

    .p-catchBg {
        border-radius: 18px 0 0 18px;
    }

    .p-catch:after {
        height: 116px;
    }

    .p-catch:before {
        width: 135px;
        height: 83px;
        bottom: -22px;
        background-size: 100%;
        left: auto;
        right: -30px;
    }

    .p-catch__en {
        font-size: 3.4rem;
        margin: 0px 0px 5px;
    }

    .p-catch__jp {
        font-size: 1.6rem;
    }

    .p-catch__textWrap {
        left: 10%;
    }

    .p-catch__breadcrumb {
        font-size: 1rem;
        left: 10%;
        bottom: 10px;
        padding: 0 10px 0 0;
    }

    .c-pageTitle p {
        font-size: 1.5rem;
    }

    .c-pageTitle h2 {
        font-size: 2rem;
    }
}

/*----------------------------------------
	company
----------------------------------------*/

.p-companyOutline {
    margin: 0 0 110px;
}

.table01 {
    display: block;
    margin: auto;
    font-size: 1.8rem;
}

.table01 tbody {
    display: block;
    width: 100%;
}

.table01 tr {
    display: flex;
    justify-content: space-between;
}

.table01 tr:last-child {
    border-bottom: none;
}

.table01 th {
    width: 24.5%;
    padding: 15px 0;
    border-bottom: 1px solid #F28C42;
    font-weight: normal;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    line-height: 1.4;
}

.table01 td {
    padding: 15px;
    width: 75.5%;
    vertical-align: middle;
    border-bottom: 1px solid #DDDDDD;
    line-height: 1.75;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.p-companyOffice {
    margin: 0 0 110px;
}

.p-companyOffice__imgWrap {
    display: flex;
    justify-content: space-between;
}

.p-companyOffice__img:nth-of-type(1) {
    width: 62%;
}

.p-companyOffice__img:nth-of-type(2) {
    width: 34.8%;
}

.p-companyOffice__img img {
    width: 100%;
}

.p-companyAccess {
    position: relative;
    padding: 0 0 125px;
}

.p-companyAccess:before {
    content: "";
    width: 100%;
    height: 230px;
    background-color: #FDECD0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.p-companyAccess__wrap {
    position: relative;
    width: 100%;
    height: 420px;
}

.p-companyAccess__wrap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.p-companyAccess__address {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}

.p-companyAccess__address span {
    font-size: 2.4rem;
    letter-spacing: 0.07em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

@media screen and (max-width:1000px) {
    .table01 {
        width: 100%;
    }

    .table01 th,
    .table01 td {
        font-size: 1.6rem;
        width: 100%;
    }

    .table01 th {
        width: 100%;
        font-weight: bold;
        margin: 0 0 8px;
        padding: 8px 2% 0 2%;
        border: none;
    }

    .table01 td {
        width: 100%;
        padding: 0 2% 8px 2%;
        line-height: 1.25;
    }

    .table01 tr {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
}

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

    .table01 {
        margin: 0 auto 70px;
    }

    .table01 th,
    .table01 td {
        font-size: 1.4rem;
        width: 100%;
    }

    .p-companyOutline {
        margin: 0 0 50px;
    }

    .p-companyOffice {
        margin: 0px 0px 50px;
    }

    .p-companyAccess {
        padding: 0px 0px 50px;
    }

    .p-companyAccess::before {
        height: 200px;
    }

    .p-companyAccess__address span {
        font-size: 1.8rem;
    }

    .p-companyAccess__wrap {
        height: 300px;
    }

    .p-companyAccess__address {
        margin: 0px 0px 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .p-companyAccess__address span {
        font-size: 1.6rem;
        display: block;
        margin: 0 0 5px;
    }
}

/*----------------------------------------
	news
----------------------------------------*/

.p-catch.p-catchNews .p-catchBg {
    background-image: url(images/news_catch.jpg);
}

.p-news__archive {
    margin: 0 0 135px;
}

.p-news__archiveWrap {
    width: 55.5%;
}

.p-news__archiveArticle a {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(198, 198, 198, 0.4);
    position: relative;
    transition: 0.3s;
}

.p-news__archiveArticle a:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 18px 18px;
    border-color: transparent transparent #F28C42 transparent;
    position: absolute;
    bottom: 0;
    right: 0;
}

.p-news__archiveArticle a:hover {
    opacity: 0.7;
}

.p-news__archiveArticle:last-child a {
    border-bottom: 1px solid rgba(198, 198, 198, 0.4);
}

.p-news__archiveInfo {
    display: flex;
    align-items: center;
    margin: 0 30px 0 0;
}

.p-news__archiveTime {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.53);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0 10px 0 0;
}

.p-news__archiveTitle {
    font-size: 1.7rem;
    letter-spacing: 0.06em;
    font-weight: bold;
    color: #404040;
}

.p-news__archiveCategory {
    background-color: #F28C42;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 21px;
    border-radius: 11px;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
}

.post-type-archive-news .p-news__archiveWrap,
.tax-news_category .p-news__archiveWrap {
    width: 100%;
}

.single-info {
    display: flex;
    align-items: center;
    margin: 0 0 28px;
}

.single-info__time {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: rgba(0, 0, 0, 0.53);
}

.single-news__title {
    font-size: 3.7rem;
    line-height: 1.486;
    letter-spacing: 0.08em;
    font-weight: bold;
    margin: 6px 0 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid #7070704D;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.single-news__text {
    margin: 0 0 105px;
}

.single-news__text pre {
    white-space: pre-wrap;
}

.single-all__button {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    font-weight: bold;
}

.single-all__button:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 46px;
    height: 46px;
    background-image: url(images/single_all_arrow.svg);
    margin: 0 20px 0 0;
    background-repeat: no-repeat;
}

.single-news__box {
    width: 62.3%;
    margin: 0 0 140px;
}

.single-news__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.single-news .p-sidebar__archive {
    width: 30%;
}

.single-news .c-button {
    margin: auto;
}

.single-news__img {
    margin: 0 0 40px;
}

.single-news__img img {
    width: 100%;
}

@media screen and (max-width:820px) {
    .p-news__archive {
        margin: 0 0 50px;
    }

    .p-news__archiveArticle a {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-news__archiveInfo {
        margin: 0 0 10px;
    }

    .p-news__archiveTitle {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .p-news__archiveTime {
        font-size: 1.2rem;
    }

    .p-news__archiveCategory {
        font-size: 1.2rem;
    }

    .single-news__text {
        margin: 0 0 70px;
    }

    .single-news__wrap {
        flex-direction: column;
    }

    .single-news__box {
        width: 100%;
    }

    .single-news__title {
        font-size: 3rem;
        line-height: 1.2;
        margin: 6px 0 30px;
        padding-bottom: 15px;
    }

    .single-info {
        margin: 0 0 18px;
    }

    #toc_container p.toc_title {
        font-size: 1.8rem;
    }

    .single-news .p-sidebar__archive {
        width: 100%;
    }

    .single-news__box {
        margin: 0 0 70px;
    }

    .p-sidebar__archive {
        margin: 0 0 60px;
    }
}

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

    .single-all__button {
        margin: 30px 0 0;
    }

    .single-news__title {
        font-size: 2.4rem;
    }

    .single-info__time {
        font-size: 1.2rem;
        margin: 0 0 5px;
    }

    .single-news__title {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .single-news__text {
        margin: 0 0 30px;
    }

    .single-news__box {
        margin: 0 0 30px;
    }

    .p-sidebar__archiveLists li {
        font-size: 1.4rem;
        padding: 12px 0;
    }

    .single-news__img {
        margin: 0 0 20px;
    }
}

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

.p-sidebar__archive {
    background-color: #fff;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 5px;
    padding: 40px 26px;
}

.p-sidebar__archiveTitle {
    position: relative;
    color: #F28C42;
    line-height: 1.5;
    margin: 0 0 30px;
    padding: 0 0 6px;
    font-size: 2.6rem;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #F28C42;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.p-sidebar__archiveLists li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    text-align: center;
}

.p-sidebar__archiveLists li:first-child {
    border-top: 1px solid rgba(112, 112, 112, 0.3);
}

@media screen and (max-width:768px) {
    .p-sidebar__archiveTitle {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .p-sidebar__archiveLists li {
        font-size: 1.8rem;
        padding: 15px 0;
    }

    .p-sidebar__archive {
        padding: 30px 12px;
    }

    .p-sidebar__archive {
        width: 100%;
    }

    .p-sidebar__archiveLists li {
        width: 100%;
    }
}

/*----------------------------------------
	faq
----------------------------------------*/

.p-faq {
    margin: 0 0 124px;
}

.page-id-795 .p-catch__en {
    margin: 0 0 38px;
}

.p-faqList__box span {
    width: 86px;
    height: 86px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3.8rem;
    color: #fff;
    position: relative;
}

.p-faqList__boxQuestion span {
    background-color: #7DA66B;
}

.p-faqList__boxQuestion span:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 14px 8px 0;
    border-color: transparent #7DA66B transparent transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -13px;
}

.p-faqList__boxAnswer span {
    background-color: #F28C42;
}

.p-faqList__boxAnswer span:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #F28C42;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -13px;
}

.p-faqList__box {
    display: flex;
    justify-content: space-between;
}

.p-faqList__boxQuestion h3,
.p-faqList__boxAnswer .c-text {
    width: 90.6%;
}

.p-faqList__boxQuestion {
    align-items: center;
    margin: 0 0 40px;
}

.p-faqList__boxAnswer {
    align-items: flex-start;
}

.p-faqList__boxQuestion h3 {
    font-size: 2.6rem;
    line-height: 1.462;
    font-weight: bold;
}

.p-faqList {
    padding: 60px 0;
}

.p-faqList:not(:last-child) {
    border-bottom: 1px dashed #707070;
}

.p-faqList:last-child {
    padding-bottom: 0;
}

.p-faqList:first-child {
    padding-top: 0;
}

@media screen and (max-width:1200px) {
    .p-faqList__box span {
        margin: 0 30px 0 0;
    }
}

@media screen and (max-width:820px) {
    .p-faq {
        margin: 0 0 50px;
    }

    .p-faqList {
        padding: 35px 0;
    }

    .p-faqList__boxQuestion h3 {
        font-size: 1.8rem;
    }

    .p-faqList__box span {
        width: 65px;
        height: 65px;
        font-size: 3rem;
        margin: 0 20px 0 0;
    }

    .p-faqList__boxAnswer span:before {
        border-width: 7px 0 7px 10px;
        right: -8px;
    }

    .p-faqList__boxQuestion span:before {
        border-width: 7px 10px 7px 0;
        left: -10px;
    }

    .p-faqList__boxQuestion {
        margin: 0 0 25px;
    }
}

@media screen and (max-width:590px) {
    .p-faqList {
        padding: 25px 0;
    }

    .p-faqList__box span {
        font-size: 2rem;
        width: 40px;
        height: 40px;
        border-radius: 5px;
    }

    .p-faqList__boxAnswer span:before {
        border-width: 5px 0 5px 7px;
        right: -7px;
    }

    .p-faqList__boxQuestion span:before {
        border-width: 5px 7px 5px 0;
        left: -7px;
    }

    .p-faqList__boxQuestion h3 {
        font-size: 1.6rem;
    }

    .p-faqList__box span {
        margin: 0 10px 0 0;
    }

    .p-faqList__boxQuestion {
        margin: 0px 0px 10px;
    }
}

/*----------------------------------------
	flow
----------------------------------------*/

.p-flow {
    margin: 0 0 130px;
}

.p-flowIntro {
    margin: 0 0 100px;
}

.p-flowIntro .c-text {
    text-align: center;
}

.p-flow ul li {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    height: 185px;
    position: relative;
}

.p-flow ul li:not(:last-child) {
    margin: 0 0 50px;
}

.p-flowNum {
    background-color: #F28C42;
    color: #fff;
    width: 170px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 7.3rem;
}

.p-flow ul li:not(:last-child) .p-flowNum:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 85px 0 85px;
    border-color: #F28C42 transparent transparent transparent;
    position: absolute;
    bottom: -50px;
}

.p-flowNum span {
    font-size: 2.3rem;
    margin: 0 0 12px;
}

.p-flow ul {
    background-color: #F7F4F1;
    border-radius: 10px;
    padding: 90px 118px;
}

.p-flowText {
    padding: 0 0 0 225px;
}

.p-flowText h2 {
    font-size: 2.8rem;
    color: #F28C42;
    margin: 0 0 20px;
}

.p-flowText .c-text {
    font-size: 1.8rem;
}

@media screen and (max-width:1400px) {
    .p-flow ul {
        padding: 70px 60px;
    }

    .p-flow ul li {
        height: 170px;
    }

    .p-flow ul li:not(:last-child) {
        margin: 0 0 38px;
    }

    .p-flow ul li:not(:last-child) .p-flowNum:before {
        bottom: -38px;
        border-width: 38px 85px 0 85px;
    }

    .p-flowNum {
        font-size: 5.3rem;
    }

    .p-flowNum span {
        font-size: 2rem;
    }

    .p-flowText {
        padding: 0 20px 0 200px;
    }
}

@media screen and (max-width:1200px) {
    .p-flow ul {
        padding: 50px 40px;
    }
}

@media screen and (max-width:820px) {
    .p-flow {
        margin: 0 0 50px;
    }

    .p-flowIntro {
        margin: 0px 0px 50px;
    }

    .p-flow ul li {
        height: auto;
        flex-direction: column;
    }

    .p-flowNum {
        font-size: 3.3rem;
        width: 100%;
        height: 40px;
        flex-direction: row;
        position: unset;
        border-radius: 10px 10px 0 0;
    }

    .p-flowText {
        width: 100%;
        padding: 30px 20px;
    }

    .p-flow ul li:not(:last-child) .p-flowNum::before {
        display: none;
    }

    .p-flowNum span {
        margin: 0 8px 0 0;
    }

    .p-flowText h2 {
        font-size: 2.5rem;
    }

    .p-flow ul li:not(:last-child):before {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 21.5px 0 21.5px;
        border-color: #F28C42 transparent transparent transparent;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }

    .p-flowText .c-text {
        font-size: 1.4rem;
    }

    .p-flow ul {
        padding: 30px 20px;
    }
}

@media screen and (max-width:590px) {
    .p-flowText h2 {
        font-size: 1.8rem;
        margin: 0px 0px 10px;
    }

    .p-flowText {
        padding: 15px;
    }

    .p-flowNum {
        font-size: 2.8rem;
        height: 34px;
    }

    .p-flowNum span {
        font-size: 1.7rem;
    }

    .p-flow ul li:not(:last-child)::before {
        border-width: 15px 16.5px 0 16.5px;
        bottom: -28px;
    }

    .p-flowIntro {
        margin: 0px 0px 30px;
    }
}

/*----------------------------------------
	about
----------------------------------------*/

.p-aboutPhilosophy {
    margin: 0 0 150px;
}

.p-aboutPhilosophy__img {
    width: 83.8%;
    text-align: right;
    margin-left: auto;
    margin-bottom: 58px;
}

.p-aboutPhilosophy__img img {
    width: 100%;
}

.p-aboutPhilosophy__text h3 {
    font-size: 3.2rem;
    color: #F28C42;
    margin: 0 0 40px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
}

.p-aboutPhilosophy__text h3:before {
    content: "";
    display: inline-block;
    width: 48px;
    height: 5px;
    background-color: #F28C42;
    margin: 0 26px 0 0;
}

.p-aboutStrength {
    background-color: #FAF1E7;
    padding: 120px 0 122px;
}

.p-aboutStrength__intro {
    margin: 0 0 110px;
}

.p-aboutStrength__intro h3 {
    font-size: 3.5rem;
    color: #F28C42;
    margin: 0 0 40px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-aboutStrength__tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 126px;
}

.p-aboutStrength__tab li {
    width: 24%;
    height: 95px;
}

.p-aboutStrength__tab li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #F28C42;
    border-radius: 100px;
    font-size: 2.5rem;
    letter-spacing: 0.03em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
}

.p-aboutStrength__listWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-aboutStrength__list:nth-of-type(even) .p-aboutStrength__listWrap {
    flex-direction: row-reverse;
}

.p-aboutStrength__listImg {
    width: 51.1%;
}

.p-aboutStrength__listImg img {
    border-radius: 10px;
}

.p-aboutStrength__listTitle {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(49, 49, 49, 0.5);
    margin: 0 0 50px;
    padding: 0 0 39px;
}

.p-aboutStrength__listTitle h2 {
    font-size: 3.8rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 30px 0 0;
}

.p-aboutStrength__listTitle p {
    font-size: 2.3rem;
    letter-spacing: 0.03em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
}

.p-aboutStrength__listTitle p:before {
    content: "";
    display: inline-block;
    width: 46px;
    height: 1px;
    background-color: #707070;
    margin: 0 20px 0 0;
}

.p-aboutStrength__listTitle p:after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 1px;
    background-color: #707070;
    margin: 0 0 0 20px;
}

.p-aboutStrength__listText {
    width: 40.5%;
}

.p-aboutStrength__listText .c-button {
    align-items: flex-start;
}

.p-aboutStrength__listText .c-text {
    margin: 0 0 20px;
}

.p-aboutStrength__listText h3 {
    font-size: 3rem;
    line-height: 1.5;
    margin: 0 0 40px;
}

.p-aboutStrength__listnumber {
    font-size: 6.8rem;
    font-family: "Homemade Apple", cursive;
    font-weight: 400;
    font-style: normal;
    color: #F28C42;
    margin: 0 15px 0 0;
}

.p-aboutStrength__list:not(:last-child) {
    margin: 0 0 150px;
}

.p-aboutStrength__listText .c-button {
    color: #F28C42;
}

@media (max-width: 820px) {

    .p-aboutPhilosophy,
    .p-aboutStrength__list:not(:last-child) {
        margin: 0 0 60px;
    }

    .p-aboutPhilosophy__img {
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }

    .p-aboutPhilosophy__text h3 {
        font-size: 2.5rem;
    }

    .p-aboutPhilosophy__text h3:before {
        width: 30px;
        margin: 0 20px 0 0;
    }

    .p-aboutStrength {
        padding: 60px 0;
    }

    .p-aboutStrength__intro {
        margin: 0 0 50px;
    }

    .p-aboutStrength__intro h3 {
        font-size: 2.5rem;
        margin: 0 0 30px;
    }

    .p-aboutStrength__tab {
        flex-wrap: wrap;
        gap: 15px;
        margin: 0 0 60px;
    }

    .p-aboutStrength__tab li {
        width: 48%;
        height: 55px;
    }

    .p-aboutStrength__tab li a {
        font-size: 1.8rem;
    }


    .p-aboutStrength__listWrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .p-aboutStrength__list:nth-of-type(even) .p-aboutStrength__listWrap {
        flex-direction: column;
    }

    .p-aboutStrength__listImg {
        width: 100%;
        order: 1;
    }

    .p-aboutStrength__listText {
        width: 100%;
        order: 2;
    }

    .p-aboutStrength__listTitle {
        flex-wrap: wrap;
        margin: 0 0 30px;
        padding: 0 0 20px;
        align-items: flex-start;
    }

    .p-aboutStrength__listTitle h2 {
        font-size: 3rem;
    }

    .p-aboutStrength__listTitle p {
        font-size: 1.8rem;
    }

    .p-aboutStrength__listTitle p:before,
    .p-aboutStrength__listTitle p:after {
        width: 18px;
        margin: 0 10px;
    }

    .p-aboutStrength__listText h3 {
        font-size: 2.2rem;
        margin: 0 0 30px;
    }

    .p-aboutStrength__listnumber {
        font-size: 5rem;
        margin: 0 10px 0 0;
    }
}

@media (max-width: 590px) {

    .p-aboutPhilosophy,
    .p-aboutStrength__list:not(:last-child) {
        margin: 0 0 50px;
    }

    .p-aboutPhilosophy__text h3 {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .p-aboutPhilosophy__text h3:before {
        width: 20px;
        height: 3px;
        margin: 0 10px 0 0;
    }

    .p-aboutStrength {
        padding: 40px 0;
    }

    .p-aboutStrength__intro {
        margin: 0 0 25px;
    }

    .p-aboutStrength__intro h3 {
        font-size: 4.2vw;
        margin: 0px 0px 20px;
        line-height: 1.3;
    }

    .p-aboutStrength__listWrap {
        gap: 20px;
    }

    .p-aboutStrength__list:not(:last-child) {
        margin: 0px 0px 30px;
    }

    .p-aboutStrength__tab {
        flex-direction: column;
        margin: 0 0 50px;
    }

    .p-aboutStrength__tab li {
        width: 100%;
        height: 45px;
    }

    .p-aboutStrength__tab li a {
        font-size: 1.5rem;
    }

    .p-aboutStrength__listTitle {
        margin: 0px 0px 25px;
        padding: 0px 0px 12px;
    }

    .p-aboutStrength__listTitle h2 {
        font-size: 2rem;
        margin: 0 10px 0 0;
    }

    .p-aboutStrength__listTitle p {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .p-aboutStrength__listTitle p:before,
    .p-aboutStrength__listTitle p:after {
        display: none;
    }

    .p-aboutStrength__listText h3 {
        font-size: 1.6rem;
        margin: 0 0 15px;
    }

    .p-aboutStrength__listnumber {
        font-size: 3.7rem;
        margin: 0px 5px 0px 0px;
    }

    .p-aboutStrength__listText .c-text {
        margin: 0 0 12px;
    }
}

/*----------------------------------------
	service
----------------------------------------*/

.p-service {
    margin: 0 0 120px;
}

.p-serviceTab {
    display: flex;
    justify-content: space-between;
}

.p-serviceTab li {
    width: 32.3%;
    height: 80px;
}

.p-serviceTab a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #F28C42;
    color: #fff;
    border-radius: 100px;
    font-weight: bold;
    position: relative;
}

.p-serviceTab a:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(images/service_tab_button_arrow.svg);
    right: 20px;
    width: 37px;
    height: 37px;
}

.p-serviceTab a span {
    display: block;
    font-size: 1.3rem;
    margin-top: 8px;
    letter-spacing: 0.03em;
}

.p-serviceLists {
    padding: 0;
    margin-top: 50px;
}

.p-serviceList__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-serviceList:nth-of-type(even) .p-serviceList__wrap {
    flex-direction: row-reverse;
}

.p-serviceList__img {
    width: 45.3%;
}

.p-serviceList__img img {
    width: 100%;
    border-radius: 10px;
}

.p-serviceList__text {
    width: 46.7%;
}

.p-serviceList__text .c-text {
    line-height: 1.944;
}

.p-serviceList__title {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
    padding: 0 0 40px;
    border-bottom: 5px solid #F28C42;
}

.p-serviceList__titleNumber {
    font-size: 2.5rem;
    color: #F28C42;
    margin-right: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-serviceList__title h2 {
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.p-serviceList__title h2 span {
    display: block;
    font-size: 2.8rem;
}

.p-serviceList__place {
    margin: 130px 0 0;
    background-color: #F7F4F1;
    position: relative;
}

.p-serviceList__place:before {
    content: "";
    width: 100%;
    height: 220px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.p-serviceList__placeIntro {
    margin: 0 0 96px;
    position: relative;
}

.p-serviceList__place h2 {
    font-size: 3.6rem;
    letter-spacing: 0.03em;
    line-height: 1.25;
    font-weight: bold;
    color: #F28C42;
    margin: 0 0 50px;
    display: flex;
    align-items: center;
}

.p-serviceList__place h2:before {
    content: "";
    display: inline-block;
    margin: 0 25px 0 0;
    width: 36px;
    height: 36px;
    background-color: #F28C42;
}

.p-serviceList__placeBox img {
    border-radius: 20px;
}

.p-serviceList__placeLists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.p-serviceList__placeList {
    width: 22.6%;
}

.p-serviceList__placeList:nth-child(n+5) {
    margin: 100px 0 0;
}

.p-serviceList__placeList a {
    display: block;
}

.p-serviceList__placeImg {
    background-color: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-serviceList__placeList h3 {
    font-size: 2.3rem;
    font-weight: bold;
    text-align: left;
    position: relative;
}

.p-serviceList__placeList h3:after {
    content: "";
    width: 34px;
    height: 34px;
    background-image: url(images/place_button_arrow.svg);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.p-serviceList:not(:last-child) {
    margin: 0 0 100px;
}

.p-serviceList__pet {
    width: 100%;
    height: 468px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(images/service_bg.jpg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 120px 0 0;
    background-position: 42%;
}

.p-serviceList__petEn {
    font-size: 7rem;
    letter-spacing: 0.03em;
    color: #fff;
    opacity: 0.26;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 25px;
}

.p-serviceList__pet h3 {
    font-size: 3.8rem;
    letter-spacing: 0.03em;
    font-weight: bold;
    margin: 0 0 15px;
    color: #fff;
}

.p-serviceList__pet .c-text {
    color: #fff;
}

.p-serviceList__pet .c-button02 {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 60px;
    border-radius: 100px;
    background-color: #fff;
    margin: 50px auto 0;
    color: #000000;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .p-serviceList__title h2 span {
        font-size: 2.5rem;
    }

    .p-serviceList__title h2 {
        font-size: 3.2rem;
    }

    .p-serviceList__text {
        width: 48%;
    }

    .p-serviceList__pet {
        height: 365px;
    }

    .p-serviceList__petEn {
        font-size: 6vw;
        margin: 0 0 -15px;
    }

    .p-serviceList__pet h3 {
        font-size: 3.2rem;
    }

    .p-serviceList__pet .c-button02 {
        margin: 35px auto 0;
    }

    .p-serviceTab a:before {
        background-size: 100%;
        width: 25px;
        height: 25px;
    }

    .p-serviceTab a span {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .p-serviceList__placeList h3 {
        font-size: 1.7vw;
    }

    .p-serviceList__placeList:nth-child(n+5) {
        margin: 55px 0 0;
    }

    .p-serviceList__title h2 {
        font-size: 3vw;
    }

    .p-serviceList__title h2 span {
        font-size: 2.3vw;
    }

    .p-serviceList__place h2 {
        font-size: 3.2rem;
    }
}

@media (max-width: 820px) {
    .p-service {
        margin: 0 0 80px;
    }

    .p-serviceList:not(:last-child) {
        margin: 0 0 80px;
    }

    .p-serviceTab {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .p-serviceTab li {
        width: 48%;
        height: 60px;
    }

    .p-serviceTab a span {
        font-size: 1.2rem;
        margin-top: 5px;
    }

    .p-serviceTab a:before {
        right: 12px;
        width: 22px;
        height: 22px;
        background-size: contain;
    }

    .p-serviceLists {
        margin-top: 40px;
    }

    .p-serviceList__wrap {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .p-serviceList:nth-of-type(even) .p-serviceList__wrap {
        flex-direction: column;
    }

    .p-serviceList__img {
        width: 60%;
        order: 1;
        margin: 0 auto;
    }

    .p-serviceList__text {
        width: 100%;
        order: 2;
    }

    .p-serviceList__title {
        margin-bottom: 20px;
        padding: 0 0 20px;
    }

    .p-serviceList__titleNumber {
        font-size: 2rem;
        margin-right: 15px;
    }

    .p-serviceList__title h2 {
        font-size: 3rem;
    }

    .p-serviceList__title h2 span {
        font-size: 2.2rem;
    }

    .p-serviceList__place {
        margin: 60px 0 0;
    }

    .p-serviceList__place:before {
        height: 150px;
    }

    .p-serviceList__placeIntro {
        margin: 0 0 60px;
    }

    .p-serviceList__place h2 {
        font-size: 3rem;
        margin: 0 0 30px;
    }

    .p-serviceList__placeLists {
        gap: 20px;
    }

    .p-serviceList__placeList {
        width: 48%;
    }

    .p-serviceList__placeList:nth-child(n+5) {
        margin: 0;
    }

    .p-serviceList__placeList:nth-child(n+3) {
        margin: 40px 0 0;
    }

    .p-serviceList__placeList h3 {
        font-size: 1.8rem;
    }

    .p-serviceList__placeList h3:after {
        width: 25px;
        height: 25px;
        background-size: contain;
    }

    .p-serviceList__place h2 {
        font-size: 2.5rem;
    }

    .p-serviceList__place h2:before {
        width: 20px;
        height: 20px;
    }

    .p-serviceList__placeBox img {
        border-radius: 10px;
    }

    .p-serviceList__pet {
        height: 350px;
        margin: 80px 0 0;
    }

    .p-serviceList__petEn {
        font-size: 5rem;
        margin: 0 0 15px;
    }

    .p-serviceList__pet h3 {
        font-size: 3rem;
    }

    .p-serviceList__pet .c-button02 {
        width: 250px;
        height: 50px;
        margin: 30px auto 0;
    }
}

@media (max-width: 590px) {

    .p-service {
        margin: 0 0 40px;
    }

    .p-serviceList__img {
        width: 100%;
        order: 1;
    }

    .p-serviceList:not(:last-child) {
        margin: 0 0 50px;
    }

    .p-serviceTab li {
        width: 100%;
        height: 50px;
    }

    .p-serviceTab a {
        font-size: 1.4rem;
    }

    .p-serviceList__title {
        flex-wrap: wrap;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .p-serviceList__title h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .p-serviceList__title h2 span {
        font-size: 2rem;
    }

    .p-serviceList__titleNumber {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .p-serviceList__title h2 {
        font-size: 2rem;
    }

    .p-serviceList__title h2 span {
        font-size: 1.4rem;
    }

    .p-serviceList__place {
        margin: 40px 0px 0px;
    }

    .p-serviceList__place:before {
        height: 100px;
    }

    .p-serviceList__placeIntro {
        margin: 0 0 40px;
    }

    .p-serviceList__place h2 {
        font-size: 1.8rem;
        margin: 0px 0px 20px;
        border-left: 5px solid #F28C42;
        padding: 0 0 0 12px;
    }

    .p-serviceList__place h2:before {
        display: none;
    }

    .p-serviceList__placeLists {
        gap: 10px;
    }

    .p-serviceList__placeList {
        width: 48%;
    }

    .p-serviceList__placeList:nth-child(n+3) {
        margin: 30px 0 0;
    }

    .p-serviceList__placeList h3 {
        font-size: 1.3rem;
    }

    .p-serviceList__placeBox img {
        border-radius: 5px;
    }

    .p-serviceList__placeImg {
        border-radius: 5px;
    }

    .p-serviceList__placeList h3::after {
        width: 18px;
        height: 18px;
    }

    .p-serviceList__pet {
        height: 220px;
        margin: 40px 0 0;
    }

    .p-serviceList__petEn {
        font-size: 6vw;
        margin: 0 0 10px;
    }

    .p-serviceList__pet h3 {
        font-size: 2.5rem;
    }

    .p-serviceList__pet .c-button02 {
        width: 200px;
        height: 40px;
        font-size: 1.4rem;
        margin: 25px auto 0;
    }

    .p-serviceList__pet h3 {
        font-size: 2rem;
    }
}

/*----------------------------------------
	service_pet
----------------------------------------*/

.p-servicePet {
    margin: 0 0 120px;
}

.p-servicePet__intro {
    margin: 0 0 100px;
    text-align: center;
}

.p-servicePet__intro h2 {
    font-size: 3.5rem;
    letter-spacing: 0.03em;
    margin: 0 0 42px;
}

.p-servicePet__about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F7F4F1;
    margin: 0 0 100px;
    padding: 58px 50px 58px 58px;
    border-radius: 20px;
}

.p-servicePet__aboutImg {
    width: 38.7%;
}

.p-servicePet__aboutImg img {
    border-radius: 10px;
}

.p-servicePet__aboutImg img {
    width: 100%;
}

.p-servicePet__aboutText {
    width: 56%;
}

.p-servicePet__aboutText h2 {
    font-size: 3.2rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    margin: 0 0 45px;
}

.p-servicePet__aboutText h2:after {
    content: "";
    display: inline-block;
    background-image: url(images/service_pet_intro_deco.svg);
    margin: 0 0 -10px 25px;
    width: 69px;
    height: 62px;
}

.p-servicePet__example h2 {
    font-size: 3.8rem;
    letter-spacing: 0.03em;
    color: #F28C42;
    margin: 0 0 45px;
    padding: 0 0 20px;
    border-bottom: 5px solid #F28C42;
}

.p-servicePet__example .c-text {
    margin: 0 0 60px;
}

.p-servicePet__example figure figcaption {
    font-size: 2.5rem;
    letter-spacing: 0.03em;
    font-weight: bold;
    margin: 30px 0 0;
}

.p-servicePet__exampleImg {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.p-servicePet__exampleImg figure {
    margin: 70px 0 0;
}

.p-servicePet__exampleImg img {
    width: 100%;
}

.p-servicePet__exampleImg01 {
    width: 44%;
}

.p-servicePet__exampleImg02 {
    width: 53%;
}

.p-servicePet__exampleImg03 {
    width: 53%;
}

.p-servicePet__exampleImg04 {
    width: 44%;
}

@media (max-width: 820px) {
    .p-servicePet {
        margin: 0 0 80px;
    }

    .p-servicePet__intro {
        margin: 0 0 50px;
    }

    .p-servicePet__intro h2 {
        font-size: 2.8rem;
        line-height: 1.4;
        margin: 0 0 30px;
    }

    .p-servicePet__about {
        flex-direction: column;
        margin: 0 0 70px;
        padding: 40px;
    }

    .p-servicePet__aboutImg {
        width: 45%;
        margin-bottom: 30px;
    }

    .p-servicePet__aboutText {
        width: 100%;
    }

    .p-servicePet__aboutText h2 {
        font-size: 2.5rem;
        line-height: 1.3;
        text-align: center;
        margin: 0 0 30px;
        position: relative;
    }

    .p-servicePet__aboutText h2:after {
        margin: 0 0 -5px 15px;
        width: 50px;
        height: 45px;
        background-size: contain;
        position: absolute;
        top: 0;
        right: 22%;
    }

    .p-servicePet__example h2 {
        font-size: 2rem;
        margin: 0 0 15px;
        padding: 0 0 15px;
    }

    .p-servicePet__example .c-text {
        margin: 0 0 20px;
    }

    .p-servicePet__exampleImg {
        gap: 20px;
        justify-content: space-around;
    }

    .p-servicePet__exampleImg figure {
        margin: 40px 0 0;
    }

    .p-servicePet__exampleImg01,
    .p-servicePet__exampleImg02,
    .p-servicePet__exampleImg03,
    .p-servicePet__exampleImg04 {
        width: 48%;
    }

    .p-servicePet__example figure figcaption {
        font-size: 1.5rem;
        margin: 10px 0 0;
    }
}

@media (max-width: 590px) {
    .p-servicePet {
        margin: 0 0 60px;
    }

    .p-servicePet__intro {
        margin: 0 0 35px;
    }

    .p-servicePet__intro h2 {
        font-size: 1.8rem;
        margin: 0 0 15px;
    }

    .p-servicePet__about {
        padding: 30px 20px;
    }

    .p-servicePet__aboutText h2 {
        font-size: 1.8rem;
        margin: 0px 0px 14px;
    }

    .p-servicePet__aboutImg {
        width: 100%;
        margin-bottom: 20px;
    }

    .p-servicePet__aboutText h2:after {
        right: 4%;
        width: 39px;
        height: 35px;
    }

    .p-servicePet__about {
        margin: 0px 0px 50px;
    }

    .p-servicePet__example h2 {
        font-size: 1.8rem;
        margin: 0 0 25px;
        padding: 0 0 10px;
        border-bottom-width: 3px;
    }

    .p-servicePet__example .c-text {
        margin: 0 0 30px;
    }

    .p-servicePet__exampleImg {
        flex-direction: column;
        gap: 0;
    }

    .p-servicePet__exampleImg figure {
        margin: 30px 0 0;
    }

    .p-servicePet__example img {
        width: 100%;
    }

    .p-servicePet__example > figure {
        margin: 0 0 30px;
    }

    .p-servicePet__exampleImg01,
    .p-servicePet__exampleImg02,
    .p-servicePet__exampleImg03,
    .p-servicePet__exampleImg04 {
        width: 100%;
    }

    .p-servicePet__exampleImg figure:first-child {
        margin-top: 0;
    }

    .p-servicePet__example figure figcaption {
        font-size: 1.4rem;
        margin: 10px 0 0;
    }
}

/*----------------------------------------
	works
----------------------------------------*/

.p-catch.p-catchWorks .p-catchBg {
    background-image: url(images/works_catch.jpg);
}

/*--------- worksArchive ---------*/

.p-worksArchive {
    margin: 0 0 120px;
}

.p-works__lists {
    display: flex;
    flex-wrap: wrap;
}

.p-works__list:not(:nth-child(3n+3)) {
    margin-right: 5.07%;
}

.p-works__list:nth-child(n+4) {
    margin-top: 38px;
}

.p-worksArchive__listsWrap {
    background-color: #FDEFD8;
    border-radius: 10px;
    margin: 0 0 70px;
    padding: 45px 60px;
}

.p-worksArchive__listsWrap h2 {
    font-size: 2.5rem;
    letter-spacing: 0.04em;
    margin: 0 0 30px;
    font-style: bold;
}

.p-worksArchive__lists {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.p-worksArchive__lists li a {
    text-align: center;
    display: inline-block;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    background-color: #fff;
    color: #F28C42;
    transition: all 0.3s;
    position: relative;
    border: 1px solid #F28C42;
    padding: 8px 10px;
    font-weight: bold;
}

.p-worksArchive__lists li a:before {
    content: "#";
    display: inline-block;
}

.p-worksArchive__intro {
    margin: 0 0 110px;
}

.p-worksArchive .p-works__list {
    width: 29.9%;
}

.p-worksArchive__img {
    margin: 0 0 26px;
}

.p-worksArchive__img img {
    width: 100%;
    border-radius: 10px;
}

.p-worksArchive__info {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 8px;
}

.p-works__archiveTitle {
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-worksArchive__access {
    margin: 0 10px 0 0;
    display: flex;
    align-items: center;
}

.p-worksArchive__access:before {
    content: "";
    display: inline-block;
    background-image: url(images/works_access_icon.svg);
    background-repeat: no-repeat;
    width: 16px;
    height: 22px;
    margin: 0 6px 0 0;
}

.p-worksArchive__category {
    font-size: 3.5rem;
    letter-spacing: 0.06em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 40px;
    text-align: center;
    color: #F28C42;
}

@media (max-width: 1200px) {
    .p-works__archiveTitle {
        font-size: 2rem;
    }
}

@media (max-width: 820px) {

    .p-worksArchive {
        margin: 0 0 70px;
    }

    .p-worksArchive__intro {
        margin: 0 0 80px;
    }

    .p-worksArchive__listsWrap {
        padding: 30px 40px;
        margin: 0 0 50px;
    }

    .p-worksArchive__listsWrap h2 {
        font-size: 2rem;
        margin: 0 0 20px;
    }

    .p-worksArchive__lists {
        gap: 8px;
    }

    .p-worksArchive__lists li a {
        font-size: 1.4rem;
        padding: 6px 8px;
    }

    .p-works__lists {
        justify-content: space-between;
    }

    .p-worksArchive .p-works__list {
        width: 48%;
        margin-right: 0 !important;
    }

    .p-works__list:nth-child(2n+1) {
        margin-right: 4%;
    }

    .p-works__list:nth-child(2n+2) {
        margin-right: 0;
    }

    .p-works__list:nth-child(n+4) {
        margin-top: 0;
    }

    .p-works__list:nth-child(n+3) {
        margin-top: 30px;
    }

    .p-works__list:not(:nth-child(3n+3)) {
        margin-right: 0;
    }

    .p-worksArchive__img {
        margin: 0 0 20px;
    }

    .p-worksArchive__info {
        font-size: 1.3rem;
        margin: 0 0 5px;
    }

    .p-works__archiveTitle {
        font-size: 1.8rem;
    }

    .p-worksArchive__category {
        font-size: 3rem;
        margin: 0 0 20px;
    }
}

@media (max-width: 590px) {
    .p-worksArchive {
        margin: 0 0 50px;
    }

    .p-worksArchive__intro {
        margin: 0 0 60px;
    }

    .p-worksArchive__listsWrap {
        padding: 15px 12px;
        margin: 0 0 30px;
    }

    .p-worksArchive__listsWrap h2 {
        font-size: 1.6rem;
        margin: 0 0 15px;
        text-align: center;
    }

    .p-worksArchive__lists {
        justify-content: center;
    }

    .p-worksArchive__lists li a {
        font-size: 1.3rem;
        padding: 5px 8px;
    }

    .p-worksArchive .p-works__list {
        margin-right: 0 !important;
    }

    .p-works__list:first-child {
        margin-top: 0 !important;
    }

    .p-worksArchive__img {
        margin: 0 0 15px;
    }

    .p-worksArchive__info {
        font-size: 1.1rem;
    }

    .p-worksArchive__access:before {
        width: 14px;
        height: 19px;
        background-size: 100%;
    }

    .p-works__archiveTitle {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .p-worksArchive__img img {
        border-radius: 5px;
    }

    .p-worksArchive__category {
        font-size: 2.2rem;
    }
}

/*--------- worksSingle ---------*/

.p-singleWorks {
    margin: 0 0 120px;
}

.p-singleWorks__sliderImg img {
    width: 100%;
    height: 708px;
    object-fit: contain;
    border-radius: 10px;
}

.p-singleWorks__sliderThumb .p-singleWorks__sliderThumbimg {
    margin: 0 7.5px;
}

.p-singleWorks__sliderThumb img {
    width: 100%;
    height: 162px;
    object-fit: cover;
    border-radius: 10px;
}

.p-singleWorks__sliderThumb {
    margin: 15px 0 0;
}

.p-singleWorks h1 {
    font-size: 3.6rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 35px;
}

.p-singleWorks__category {
    margin: 0 0 70px;
}

.p-singleWorks__category a {
    text-align: center;
    display: inline-block;
    border-radius: 100px;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    background-color: #fff;
    color: #F28C42;
    transition: all 0.3s;
    position: relative;
    border: 1px solid #F28C42;
    padding: 8px 10px;
    font-weight: bold;
}

.p-singleWorks__category a:before {
    content: "#";
    display: inline-block;
}

.p-singleWorks__category a:not(:last-child) {
    margin: 0 10px 0 0;
}

.p-singleWorks .c-button02 {
    text-align: center;
    display: block;
    width: 300px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background-color: #F28C42;
    color: #fff;
    position: relative;
    font-weight: bold;
    transition: all 0.4s;
    border-radius: 100px;
    margin: 50px auto 0;
}

.p-singleWorks__changeItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 100px;
}

.p-singleWorks__changeItem img {
    width: 100%;
    height: 326px;
    object-fit: cover;
    border-radius: 10px;
}

.p-singleWorks__changeBefore,
.p-singleWorks__changeAfter {
    width: 46%;
    position: relative;
}

.p-singleWorks__changeBefore figcaption,
.p-singleWorks__changeAfter figcaption {
    width: 113px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px 0 10px 0;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    position: absolute;
    top: 0;
    color: #fff;
}

.p-singleWorks__changeBefore figcaption {
    background-color: #313131;
}

.p-singleWorks__changeAfter figcaption {
    background-color: #F28C42;
}

.p-singleWorks__changeBefore:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 21.5px 0 21.5px 27px;
    border-color: transparent transparent transparent #F28C42;
    position: absolute;
    top: 50%;
    right: -57px;
    transform: translateY(-50%);
}

.p-singleWorks__sliderWrap {
    margin: 0 0 70px;
    padding: 0 0 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.p-singleWorks__point {
    background-color: #F7F4F1;
    border-radius: 10px;
    padding: 30px 40px;
}

.p-singleWorks__point h3 {
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    margin: 0 0 25px;
}

@media (max-width: 820px) {
    .p-singleWorks {
        margin: 0 0 80px;
    }

    .p-singleWorks h1 {
        font-size: 3rem;
        margin: 0 0 25px;
    }

    .p-singleWorks__sliderWrap {
        margin: 0 0 50px;
        padding: 0 0 50px;
    }

    .p-singleWorks__category {
        margin: 0 0 50px;
    }

    .p-singleWorks__sliderImg img {
        height: 500px;
        object-fit: cover;
    }

    .p-singleWorks__sliderThumb .p-singleWorks__sliderThumbimg {
        margin: 0 5px;
    }

    .p-singleWorks__sliderThumb img {
        height: 90px;
    }

    .p-singleWorks__changeItem {
        margin: 0 0 70px;
    }

    .p-singleWorks__changeItem img {
        height: 250px;
    }

    .p-singleWorks__point {
        padding: 25px 30px;
    }

    .p-singleWorks__point h3 {
        font-size: 2.4rem;
        margin: 0 0 20px;
    }

    .p-singleWorks__changeBefore:before {
        border-width: 18.5px 0 18.5px 17px;
        right: -42px;
    }
}

@media (max-width: 590px) {
    .p-singleWorks {
        margin: 0 0 50px;
    }

    .p-singleWorks h1 {
        font-size: 1.8rem;
        margin: 0 0 15px;
    }

    .p-singleWorks__sliderWrap {
        margin: 0 0 30px;
        padding: 0 0 30px;
    }

    .p-singleWorks__category {
        margin: 0 0 20px;
    }

    .p-singleWorks__sliderImg img {
        height: 250px;
    }

    .p-singleWorks__sliderThumb img {
        border-radius: 5px;
        height: 45px;
    }

    .p-singleWorks__sliderThumb .p-singleWorks__sliderThumbimg {
        margin: 0 3px;
    }

    .p-singleWorks__category a {
        font-size: 1.3rem;
        padding: 6px 8px;
        margin: 0 8px 8px 0;
    }

    .p-singleWorks__category a:not(:last-child) {
        margin-right: 8px;
    }

    .p-singleWorks .c-button02 {
        width: 250px;
        height: 50px;
        font-size: 1.4rem;
        margin: 40px auto 0;
    }

    .p-singleWorks__changeItem {
        flex-direction: column;
        gap: 20px;
        margin: 0 0 30px;
    }

    .p-singleWorks__changeBefore,
    .p-singleWorks__changeAfter {
        width: 100%;
    }

    .p-singleWorks__changeItem img {
        height: 200px;
    }

    .p-singleWorks__changeBefore figcaption,
    .p-singleWorks__changeAfter figcaption {
        width: 80px;
        height: 25px;
        font-size: 1.4rem;
        border-radius: 5px 0 5px 0;
    }

    .p-singleWorks__changeBefore::before {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 15px 16.5px 0 16.5px;
        border-color: #F28C42 transparent transparent transparent;
        top: auto;
        bottom: -20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .p-singleWorks__point {
        padding: 20px 20px;
    }

    .p-singleWorks__point h3 {
        font-size: 1.8rem;
        margin: 0 0 15px;
    }

    .p-singleWorks .c-button02 {
        margin: 30px auto 0;
    }
}

/*----------------------------------------
	privacy policy
----------------------------------------*/

.privacy_title {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 0.5em;
    background-color: rgba(196, 221, 180, 0.09);
    border-left: 4px solid #000;
    margin: 0 0 15px;
}

.privacy_title02 {
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 0.5em;
    color: #fff;
    background-color: #000;
    margin: 0 auto 30px;
    width: 500px;
    text-align: center;
}

.privacy_policy .text {
    margin: 0 0 30px;
}

.privacy_policy_list {
    font-weight: bold;
    color: #93C572;
    margin: 0 0 20px;
    line-height: 1.3;
}

.privacy_policy_lists li {
    line-height: 1.75;
}

.privacy_policy_list > ul {
    margin: 10px 0 0;
    color: #000;
    line-height: 1.7;
    font-weight: normal;
}

@media screen and (max-width: 768px) {
    .privacy_title {
        font-size: 1.6rem;
    }

    .privacy_title02 {
        font-size: 1.8rem;
    }

    .privacy_policy_list {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 590px) {
    .privacy_title02 {
        width: 100%;
        margin: 0 auto 20px;
    }
}

/*----------------------------------------
	404 not found
----------------------------------------*/

.p-catch.p-catch404 .p-catchBg {
    background-image: url(images/404_catch.jpg);
}

.error404 .c-button {
    margin: auto;
}

.error404 .p-catch__en {
    margin: 0 0 50px;
}
