@charset "utf-8";
/*
theme Name: harima-fudo
Description: はりま不動産管理株式会社のテーマです
version： 1.0
*/

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

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

html {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
    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;
}

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

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

ul {
    list-style-type: none;
}

.bold {
    font-weight: bold;
}


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

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

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

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

.op {
    transition: .3s;
}

.op:hover {
    opacity: 0.7;
}

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

@media screen and (max-width:1400px) {
    .c-inner1300 {
        width: 100%;
        padding: 0 4.5%;
    }
}

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

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

/*----------------------------------------
	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: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.4s ease;
    background-color: #FEF0E1;
}

.l-header.change-color {
    background-color: rgba(255, 255, 255, 1);
    transition: 0.3s;
}

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

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

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

.l-header__gnavList a {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.8rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
}

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

.input-hidden {
    display: none;
}

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

.logo a {
    display: block;
}

.l-header__gnavContact {
    background-color: #F08300;
    border-radius: 5px;
    width: 230px;
    height: 65px;
    font-size: 1.9rem;
    line-height: 1.421;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, border 0.3s, transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
}

.l-header__gnavContact span {
    display: flex;
    align-items: center;
    color: #fff;
}

.l-header__gnavContact span:before {
    content: "";
    display: block;
    width: 25px;
    height: 17px;
    margin: 0 13px 0 0;
    background-image: url(images/header_contact.svg);
}

.l-header__gnavContact span,
.l-header__gnavContact span:before {
    transition: color 0.3s, filter 0.3s;
}

.l-header__gnavNumber {
    font-size: 2.9rem;
    letter-spacing: 0.04em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.448;
    color: #F08300;
    margin: 0 20px 0 0;
}

.l-header__gnavNumber span {
    font-size: 1.8rem;
    color: #F08300;
}

.l-header__gnavTime {
    font-size: 1.1rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    line-height: 1.455;
}

@media (hover: hover) {
    .l-header__gnavContact:hover {
        background-color: #fff;
        border-color: #F08300;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(240, 131, 0, 0.2);
    }

    .l-header__gnavContact:hover span {
        color: #F08300;
    }

    .l-header__gnavContact:hover span:before {
        filter: invert(56%) sepia(91%) saturate(2132%) hue-rotate(1deg) brightness(101%) contrast(101%);
    }
}

@media screen and (min-width:1001px) {
    .l-header__gnavList a {
        transition: .3s;
        padding: 0 0 12px;
    }

    .l-header__gnavList.current a,
    .l-header__gnavList a:hover {
        color: #F08300;
    }

    .l-header__gnavList a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #F08300;
        transition: all .3s;
        transform: scale(0, 1);
        transform-origin: left top;
    }

    .l-header__gnavLists.current a::after,
    .l-header__gnavLists a:hover::after {
        transform: scale(1, 1);
    }
}

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

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

    .logo a {
        width: 275px;
    }

    .logo img {
        width: 100%;
    }

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

    .l-header__gnav {
        margin: 0 30px 0 0;
    }
}

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

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

    .l-header__gnavNumber {
        font-size: 2.4rem;
    }

    .l-header__gnavNumber span {
        font-size: 1.4rem;
    }

    .l-header__gnavContact {
        width: 200px;
        height: 55px;
        font-size: 1.5rem;
    }

    .l-header__gnavContact span:before {
        margin: 0 8px 0 0;
        width: 18px;
        height: 13px;
        background-size: 100%;
    }

    .l-header__gnav {
        margin: 0 30px 0 0;
    }
}

@media screen and (max-width:1024px) {
    .l-header__gnavSp {
        display: flex;
    }

    #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__gnavList a {
        padding: 10px 20px;
        border-bottom: 1px dashed #ccc;
    }

    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: #F08300;
    }

    .hamburger-switch-line1,
    .hamburger-switch-line1-before,
    .hamburger-switch-line1-after {
        width: 25px;
        height: 3px;
        background: #fff;
        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: #fff;
        transform: rotate(45deg) translate(-40%, 325%);
    }

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

    .l-header__gnav {
        position: fixed;
        height: 100vh;
        background: #fafafa;
        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.6em 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;
    }

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

    .logo a {
        width: 300px;
    }

    .l-header__gnavContact {
        width: 100%;
    }
}

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

    .logo a {
        width: 180px;
    }

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

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

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

.l-footer {
    padding: 235px 0 30px;
    background-color: #292929;
    position: relative;
}

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

.l-footerInfo {
    margin: 0 0 100px;
}

.l-footerLogo,
.l-footerName,
.l-footerAdd {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
}

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

.l-footerName {
    font-size: 2.5rem;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.44;
}

.l-footerAdd {
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.5;
}

.l-footerTel {
    display: block;
    color: #fff;
    font-size: 2.1rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.429;
}

.l-footer__navLists li a {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: bold;
    transition: .3s;
    color: #fff;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
}

.l-footer__navList a:hover {
    color: #F08300;
}

.l-footerCopyRight {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    line-height: 1.667;
    text-align: center;
    color: #fff;
}

.l-footer__navLists {
    display: flex;
    align-items: center;
    gap: 45px;
}

@media screen and (max-width: 1500px) {
    .l-footer {
        padding: 120px 4% 30px;
    }
}

@media screen and (max-width: 820px) {
    .l-footer {
        padding: 80px 4% 30px;
    }

    .l-footerWrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .l-footerInfo {
        margin: 0 auto;
    }

    .l-footerLogo {
        width: 60%;
        margin: 0 auto 30px;
    }

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

    .l-footer__navLists {
        width: 100%;
        flex-wrap: wrap;
        gap: 20px 30px;
    }

    .l-footer__navLists li {
        width: 100%;
        padding: 0 0 10px;
        border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    }

    .l-footerName,
    .l-footerAdd,
    .l-footerTel {
        text-align: center;
    }

    l-footerInfo {
        margin: 0 auto;
    }

    .l-footerCopyRight {
        margin: 50px 0 0;
    }
}

@media screen and (max-width: 590px) {
    .l-footer {
        padding: 60px 10px 20px;
    }

    .l-footerName {
        font-size: 2rem;
    }

    .l-footerAdd,
    .l-footer__navLists li a {
        font-size: 1.4rem;
    }

    .l-footerTel {
        font-size: 1.8rem;
    }

    .l-footer__navLists {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .l-footerCopyRight {
        font-size: 1rem;
        margin-top: 40px;
        text-align: center;
    }

    .l-footerLogo {
        width: 70%;
    }
}

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

.p-bottomContact__wrap {
    background-color: #F08300;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 307px;
    padding: 0 56px;
    margin: 0 0 -145px;
    position: relative;
    z-index: 1;
}

.p-bottomContact__text {
    width: 43.3%;
    position: relative;
}

.p-bottomContact__text:before {
    content: "";
    display: block;
    width: 1px;
    height: 195px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.p-bottomContact__text span {
    font-size: 2.9rem;
    line-height: 1.448;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    color: #fff;
    display: flex;
    align-items: center;
}

.p-bottomContact__text span:before {
    content: "";
    display: inline-block;
    width: 97px;
    height: 97px;
    background-image: url(images/bottom_contact_icon.svg);
    background-repeat: no-repeat;
    margin: 0 20px 0 0;
}

.p-bottomContact__link {
    width: 56.7%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.p-bottomContact__number {
    font-size: 3.4rem;
    letter-spacing: 0.04em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.448;
    color: #fff;
    margin: 0 20px 0 0;
}

.p-bottomContact__number span {
    font-size: 1.9rem;
    color: #fff;
}

.p-bottomContact__time {
    font-size: 1.5rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    line-height: 1.455;
    color: #fff;
}

.p-bottomContact__form {
    background-color: #fff;
    border-radius: 5px;
    width: 305px;
    height: 80px;
    font-size: 2.2rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: background-color 0.3s, border-color 0.3s;
    border: 1px solid transparent;
}

.p-bottomContact__form span {
    display: flex;
    align-items: center;
    color: #F08300;
    transition: color 0.3s;
}

.p-bottomContact__form:after {
    content: "";
    display: block;
    width: 29px;
    height: 29px;
    background-image: url(images/bottom_contact_arrow.svg);
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: 0.3s;
    border-radius: 50%;
}

@media (hover: hover) {
    .p-bottomContact__form:hover {
        background-color: transparent;
        border-color: #fff;
    }

    .p-bottomContact__form:hover span {
        color: #fff;
    }

    .p-bottomContact__form:hover:after {
        transform: translate(5px, -50%);
        border: 1px solid #fff;
    }
}

@media screen and (max-width: 1500px) {
    .p-bottomContact__wrap {
        height: 255px;
        margin-left: 4%;
        margin-right: 4%;
        margin: 0 0 -80px;
        padding: 0 40px;
    }

    .p-bottomContact__text span:before {
        width: 70px;
        height: 70px;
        font-size: 1.83vw;
        background-size: 100%;
    }

    .p-bottomContact__form {
        width: 270px;
        height: 65px;
        font-size: 1.8rem;
    }

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

@media screen and (max-width: 1300px) {
    .p-bottomContact__text span {
        font-size: 2.2vw;
    }

    .p-bottomContact__number {
        font-size: 2.5vw;
    }

    .p-bottomContact__form {
        width: 220px;
        height: 60px;
    }

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

@media screen and (max-width: 820px) {
    .p-bottomContact__wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
        margin-bottom: -60px;
        height: auto;
    }

    .p-bottomContact__text {
        width: 100%;
    }

    .p-bottomContact__text:before {
        display: none;
        height: 80%;
    }

    .p-bottomContact__text span {
        justify-content: center;
        font-size: 2.4rem;
    }

    .p-bottomContact__text span:before {
        width: 70px;
        height: 70px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .p-bottomContact__link {
        width: 100%;
        align-items: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .p-bottomContact__number {
        margin: 0;
        font-size: 2.8rem;
    }

    .p-bottomContact__form {
        width: 280px;
    }

    .p-bottomContact__number span {
        font-size: 1.6rem;
    }

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

@media screen and (max-width: 590px) {
    .p-bottomContact__wrap {
        margin-left: 10px;
        margin-right: 10px;
        padding: 22px 20px;
        margin-bottom: -38px;
    }

    .p-bottomContact__text span {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    .p-bottomContact__text span:before {
        margin: 0;
        width: 45px;
        height: 45px;
    }

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

    .p-bottomContact__number span {
        font-size: 1.4rem;
    }

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

    .p-bottomContact__form {
        width: 100%;
        height: 50px;
        font-size: 1.4rem;
    }

    .p-bottomContact__form:after {
        width: 20px;
        height: 20px;
        background-size: contain;
        background-repeat: no-repeat;
    }
}

/*----------------------------------------
	top
----------------------------------------*/

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

.p-topAccess__map {
    position: relative;
    width: 100%;
    height: 500px;
}

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

.p-topAccess__add {
    text-align: center;
    margin: 0 0 30px;
    line-height: 1.556;
}

@media screen and (max-width: 1500px) {
    .p-topAccess {
        margin: 0 0 100px;
    }

    .p-topAccess__map {
        height: 450px;
    }
}

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

    .p-topAccess__map {
        height: 380px;
    }

    .p-topAccess__add {
        padding: 0 20px;
        margin: 0 0 25px;
    }
}

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

    .p-topAccess__map {
        height: 300px;
    }

    .p-topAccess__add {
        font-size: 1.4rem;
        text-align: left;
        margin: 0 0 20px;
    }
}

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

.p-catch {
    width: 100%;
    position: relative;
    margin: 0 0 100px;
    padding: 113px 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-position: right;
    background-color: #FEF0E1;
    position: relative;
}

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

.p-catchImg {
    width: 95.4%;
    height: 445px;
    background-size: cover;
    background-image: url(images/company_catch.jpg);
    margin-right: auto;
    position: relative;
}

.p-catch__textWrap {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    position: absolute;
    left: 7.6%;
    top: -55px;
}

.p-catch__en {
    font-size: 9.7rem;
    letter-spacing: 0.02em;
    color: #F08300;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    margin: 0 20px 0 0;
}

.p-catch__jp {
    font-size: 3.4rem;
    letter-spacing: 0.05em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
}

@media screen and (max-width: 1500px) {
    .p-catch {
        padding-top: 50px;
        margin-bottom: 80px;
    }

    .p-catch__en {
        font-size: 8.0rem;
    }

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

@media screen and (max-width: 1200px) {
    .p-catchImg {
        height: 380px;
        width: 100%;
    }

    .p-catch__textWrap {
        left: 4%;
        top: -40px;
    }

    .p-catch__en {
        font-size: 6.5rem;
    }

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

@media screen and (max-width: 820px) {
    .p-catch {
        padding-top: 40px;
        margin-bottom: 60px;
    }

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

    .p-catchImg {
        height: 300px;
    }

    .p-catch__textWrap {
        flex-direction: column-reverse;
        align-items: flex-start;
        position: relative;
        left: 0;
        top: 0;
        padding: 30px 20px;
    }

    .p-catch__en {
        font-size: 5.0rem;
        margin: 0 0 5px;
        line-height: 1;
    }

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

@media screen and (max-width: 590px) {
    .p-catch {
        padding-top: 20px;
        margin-bottom: 40px;
    }

    .p-catch:before {
        height: 40px;
    }

    .p-catchImg {
        width: 93%;
        height: 180px;
    }

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

    .p-catch__en {
        font-size: 3.2rem;
    }

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

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

.table01 {
    display: block;
    width: 1000px;
    margin: auto;
    font-size: 1.8rem;
    margin: 0 auto 140px;
}

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

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

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

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

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

@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 60px;
    }

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

/*----------------------------------------
	contact
----------------------------------------*/

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

.p-contact__form {
    width: 66.6%;
}

.table_contact {
    background-color: #fff;
    border-radius: 12px;
}

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

.table_contact_wrap {
    border-radius: 12px;
    border: 1px solid rgba(85, 85, 85, 0.5);
    padding: 80px 65px 90px;
}

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

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

.table_contact th .small {
    font-size: 1.2rem;
}

.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);
    border-radius: 3px;
}

.table_contact td input.text.zip {
    width: 54%;
}

.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: 180px;
    padding: 20px 0 0 20px;
    border: 1px solid rgba(112, 112, 112, 0.3);
    background-color: #fff;
    font-size: 1.6rem;
    border-radius: 3px;
}

.table_contact td textarea.text_area_remarks {
    height: 237px;
}

.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: #F08300;
    color: #fff;
    margin-left: 20px;
    padding: 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;
    background-color: #F08300 !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 {
    margin: 0 0 120px;
}

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

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

input {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
}

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

.p-contact__tel {
    background-color: #404040;
    width: 403px;
    height: 225px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #E6ECF8;
    position: relative;
}

.p-contact__tel:before {
    content: "";
    background-image: url(images/contact_tel_triangle.svg);
    background-repeat: no-repeat;
    background-position: left;
    position: absolute;
    width: 68px;
    height: 100%;
    right: -68px;
}

.p-contact__tel h2 {
    font-size: 2.4rem;
    letter-spacing: 0.03em;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.486;
    color: #000000;
    margin: 0 0 30px;
}

.p-contact__telTitle {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 97px 0 0;
}

.p-contact__telTitle p {
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    font-weight: 800;
    font-weight: 800;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #2AAAA4;
}

.p-contact__telNumber {
    font-size: 4rem;
    letter-spacing: 0.06em;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-contact__telNumber span {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.p-contact__telNumber a {
    font-size: 4rem;
    letter-spacing: 0.06em;
    color: #F08300;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    margin: 0 0 18px;
}

.p-contact__telNumber a:before {
    content: "";
    display: inline-block;
    background-image: url(images/contact_tel_icon.svg);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin-right: 9px;
}

.table_contact_privacy {
    color: #F08300;
    display: block;
    text-align: center;
    margin: 45px auto 55px;
    padding: 0 0 8px;
    font-weight: bold;
}

.table_contact_privacy span {
    border-bottom: 1px solid #F08300;
    padding: 0 0 8px;
}

.table_contact td select {
    width: 230px;
    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);
    border-radius: 3px;
}

@media screen and (max-width: 1300px) {
    .p-contact__tel {
        width: 30%;
        height: 210px;
    }
}

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

    .table_contact_wrap {
        width: 100%;
        padding: 50px 40px 80px;
    }

    .page_contact_subtitle {
        width: 100%;
    }

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

    .c-table__date_wrap {
        display: flex;
        flex-direction: column;
    }

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

    .p-contact__wrap {
        flex-direction: column;
        justify-content: center;
    }

    .p-contact__form {
        width: 100%;
    }

    .p-contact__tel {
        width: 80%;
        margin: 0 0 50px;
    }

    .table_contact_privacy {
        font-size: 1.2rem;
        margin: 25px auto 35px;
    }
}

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

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

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

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

    .mw_wp_form_confirm {
        margin: 0 0 80px;
    }

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

    .p-contact__tel {
        width: 100%;
        height: auto;
        border-radius: 5px;
        padding: 30px 10px;
    }

    .p-contact__telNumber a {
        font-size: 3rem;
    }

    .p-contact__telNumber a:before {
        background-size: 100%;
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    .p-contact__tel h2 {
        font-size: 1.8rem;
    }

    .p-contact__telNumber span {
        font-size: 1.2rem;
    }

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

    .p-contact__tel h2 {
        margin: 0 0 20px;
    }

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

    .table_contact td select {
        width: 200px;
    }
}

@media screen and (max-width: 590px) {
    .table_contact_wrap {
        padding: 50px 20px 80px;
    }

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

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

    .table_contact td input.text.zip {
        width: 75%;
    }
}

/*----------------------------------------
	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 #F08300;
    margin: 0 0 15px;
}

.privacy_title02 {
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 0.5em;
    color: #fff;
    background-color: #F08300;
    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__404 {
    background-image: url(images/catch_404.jpg);
}

.error404 .c-button {
    margin: auto;
}
