 
/* 
Theme Name: とりこ
Author: とりこ
Author URI: 
Version: 1.0
*/
@charset "UTF-8";
/* CSS Document */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    width: 100%;
    height: 100%;
    font-size: 1.6em;
    line-height: 1.875;
    letter-spacing: 0.05em;
    overflow-x: hidden;
}
*,
*:before,
*:after {
    box-sizing:border-box;
}
@media (max-width: 600px) {
body {
    font-size: 1.4rem;
    line-height: 1.6;
}
fwB{
    font-weight: 500!important;
}
}
/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}
.taR {
    text-align: right;
}
.fwM {
    font-weight: 500;
}
.fwSB {
    font-weight: 600;
}
.fwB {
    font-weight: bold;
}
.flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.justify__between{
    justify-content: space-between;
}
.anchor {
    padding-top: 100px;
    margin-top: -100px;
}
.flex-end{
    align-items: flex-end;
}
.flex-contents{
    justify-content: flex-start!important;
}
.font-20{
    font-size: clamp(1.6rem, 3vw, 2rem);
}
.font-25{
    font-size: clamp(2rem, 3vw, 2.5rem);
}
.font-30{
    font-size: clamp(2.6rem, 3vw, 3rem);
}
.l-height-25{
    line-height: 2.5;
}
*:before,
*:after {
    box-sizing:border-box;
}
/* ------------------------------------- /
/   inner
/* ------------------------------------- */
.inner {
    width: min(100%, calc(1200px + (6% * 2)));
    margin: 0 auto;
    padding: 0 6%;
}
@media screen and (max-width:600px){
.inner {
    padding: 0 4%;
}
}
.flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.align__center{
    align-items: center;
}
/* ------------------------------------- /
/   pc-none、sp-none
/* ------------------------------------- */
.pc-none {
    display: none;
}
.pc-none768 {
    display: none;
}
.pc-none425 {
    display: none;
}
.pc-none__inline {
    display: none;
}
.pc-none__inline768 {
    display: none;
}
.pc-none__inline1200 {
    display: none;
}
@media screen and (max-width:1200px){
.pc-none__inline1200 {
    display: inline;
}
.sp-none1200 {
    display: none;
}
}
@media screen and (max-width:768px){
.pc-none768 {
    display: block;
}
.pc-none__inline768 {
    display: inline;
}
.sp-none768 {
    display: none;
}
}
@media screen and (max-width:600px){
.pc-none {
    display: block;
}
.pc-none__inline {
    display: inline;
}
.sp-none {
    display: none !important;
}
}
@media screen and (max-width:425px){
.pc-none425 {
    display: block;
}
}

/* ------------------------------------- /
/   サイトカラー、フォント
/* ------------------------------------- */
body {
    color: #151515;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}
a {
    color: #151515;
    text-decoration: none;
    display: block;
}
/*::selection {
    background: var(--color-orange);
    color: #fff;
}*/
:root {
    --color-red: #A65B50;
    --color-black: #151515;
    --font-min: "Noto Serif JP", serif;
    --font-go: "Noto Sans JP", sans-serif;
    --font-en: "Cormorant Garamond", serif;
}


/* ------------------------------------- /
/  header
/* ------------------------------------- */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-sizing: border-box;
}
.header__box {
    font-family: var(--font-min);
    font-weight: 500;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5.55% 15px 5.97%;
    width: 100%;
    height: 100px;
    z-index: 99;
    box-sizing: border-box;
}
.header__left {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.header__left p {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: 0;
}
.header__logo {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(2.2rem, 3vw, 3.8rem);
    font-weight: 500;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-height: 55px;
}
.header__logo img {
    width: 45px;
}
.header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.header__nav li {
    background-image: linear-gradient(var(--color-red), var(--color-red));
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 1px;
    transition: background-size 0.3s;
}
.header__nav li:hover {
    background-position: bottom left;
    background-size: 100% 1px;
}
.header__nav li a {
    font-size: 1.5rem;
    font-weight: 500;
}
.hum__button {
    display: none;
}
.hum__menu {
    display: none;
}

@media screen and (max-width: 1024px) {
    .header__nav {
        gap: 15px;
    }
}
@media screen and (max-width: 900px) {
    .header__box {
        position: relative;
        height: 80px;
        padding: 10px 3%;
    }
    .header__nav {
        display: none;
    }
    .header__logo img {
        width: 30px;
    }
    .hum__menu {
        flex-wrap: wrap;
        position: absolute;
        top: 80px;
        right: 0;
        width: min(500px, 100%);
        height: 500px;
        background-color: #fff;
        z-index: 99;
        padding: 50px 20px;
        display: none;
    }
    .hum__menu ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        margin: 0 auto;
    }
    .hum__menu ul li {
        text-align: center;
        padding: 10px;
    }
    .hum__menu ul li a {
        font-size: 1.5rem;
        font-weight: 500;
    }
    .hum__button {
        position: relative;
        display: block;
    }
    .hum__button span {
        content: '';
        display: block;
        background: var(--color-black);
        width: 40px;
        height: 1px;
    }
    .hum__button span:nth-child(2){
        margin-top: 8px;
    }
    .hum__button span:nth-child(3){
        margin-top: 8px;
    }
    .hum__button.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    }
    .hum__button.active span:nth-child(2) {
        opacity: 0;
    }
    .hum__button.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        margin-top: 5px;
    }
    .hum__contact {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
    }
    .hum__contact .tel {
        color: #fff;
        font-family: var(--font-min);
        font-size: 1.4rem;
        padding-left: 23px;
        background-color: var(--color-black);
        border: 1px solid var(--color-black);
        border-radius: 22px;
        width: 160px;
        height: 36px;
        display: flex;
        align-items: center;
        transition: 0.3s, color 0.3s;
    }
    .hum__contact .tel::before {
        content: '';
        background-image: url(../img/tel_w.svg);
        width: 12px;
        height: 14px;
        margin-right: 4px;
        transition: 0.3s, color 0.3s;
    }
    .hum__contact .tel:hover {
        background-color: #fff;
        color: var(--color-black);
        border: 1px solid var(--color-black);
    }
    .hum__contact .tel:hover::before{
        background-image: url(../img/tel_b.svg);
    }
    .hum__contact .mail {
        color: #fff;
        font-family: var(--font-min);
        font-size: 1.4rem;
        padding-left: 23px;
        background-color: var(--color-black);
        border: 1px solid var(--color-black);
        border-radius: 22px;
        width: 210px;
        height: 36px;
        display: flex;
        align-items: center;
        transition: 0.3s, color 0.3s;
    }
    .hum__contact .mail::before {
        content: '';
        background-image: url(../img/mail_w.svg);
        width: 13px;
        height: 9px;
        margin-right: 4px;
        transition: 0.3s, color 0.3s;
    }
    .hum__contact .mail:hover {
        background-color: #fff;
        color: var(--color-black);
        border: 1px solid var(--color-black);
    }
    .hum__contact .mail:hover::before{
        background-image: url(../img/mail_b.svg);
    }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 425px) {
    .header__box {
        height: 70px;
    }
    .hum__menu {
        top: 70px;
    }
}

/* ------------------------------------- /
/  title
/* ------------------------------------- */
.section__title span{
    font-family: var(--font-min);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 500;
}
.section__title h2 {
    font-family: var(--font-en);
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    font-weight: 600;
}
/* ------------------------------------- /
/  mv__wrapper
/* ------------------------------------- */
.mv__wrapper {
    padding-top: 70px;
    position: relative;
    margin-top: 100px;
}
.mv__wrapper::after {
    content: "TRUST";
    position: absolute;
    top: 50px;
    right: 0;
    font-family: var(--font-en);
    font-size: clamp(9rem, 20vw, 27rem);
    color: #FBFBF9;
    font-weight: 600;
    line-height: 1.21;
    pointer-events: none;
    z-index: -1;
    white-space: nowrap;
}
.mv__wrapper p {
    font-family: var(--font-en);
    font-size: 1.4rem;
    color: var(--color-red);
    margin-bottom: 20px;
    font-weight: 500;
}
.mv__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}
.mv__text {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(3.0rem, 4vw, 3.8rem);
    font-weight: 600;
}
.mv__contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.mv__contact .tel {
    color: #fff;
    font-family: var(--font-min);
    font-size: 1.4rem;
    padding-left: 23px;
    background-color: var(--color-black);
    border: 1px solid var(--color-black);
    border-radius: 22px;
    width: 160px;
    height: 36px;
    display: flex;
    align-items: center;
    transition: 0.3s, color 0.3s;
}
.mv__contact .tel::before {
    content: '';
    background-image: url(../img/tel_w.svg);
    background-size: cover;
    width: 12px;
    height: 14px;
    margin-right: 4px;
    transition: 0.3s, color 0.3s;
}
.mv__contact .tel:hover {
    background-color: #fff;
    color: var(--color-black);
    border: 1px solid var(--color-black);
}
.mv__contact .tel:hover::before{
    background-image: url(../img/tel_b.svg);
}
.mv__contact .mail {
    color: #fff;
    font-family: var(--font-min);
    font-size: 1.4rem;
    padding-left: 23px;
    background-color: var(--color-red);
    border: 1px solid var(--color-red);
    border-radius: 22px;
    width: 210px;
    height: 36px;
    display: flex;
    align-items: center;
    transition: 0.3s, color 0.3s;
}
.mv__contact .mail::before {
    content: '';
    background-image: url(../img/mail_w.svg);
    background-size: cover;
    width: 13px;
    height: 9px;
    margin-right: 4px;
    transition: 0.3s, color 0.3s;
}
.mv__contact .mail:hover {
    background-color: #fff;
    color: var(--color-red);
    border: 1px solid var(--color-red);
}
.mv__contact .mail:hover::before{
    background-image: url(../img/mail_r.svg);
}
.mv__img {
    margin-bottom: -80px;
    z-index: 2;
    position: relative;
}
@media screen and (max-width: 900px) {
    .mv__contact {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .mv__img {
        margin-bottom: -40px;
    }
}
@media screen and (max-width: 425px) {
}

/* ------------------------------------- /
/  about__wrapper
/* ------------------------------------- */
.about__wrapper {
    position: relative;
    text-align: center;
}
.about__box{
    width: 100%;
    /* position: absolute; */
    top: -80px;
    z-index: -1;
    background-color: #F4F1EB;
}
.about__title::after {
    content: '';
    display: block;
    background-color: var(--color-red);
    width: 1px;
    height: 25px;
    margin: 10px auto 20px;
}
.about__message {
    font-family: var(--font-min);
    font-size: clamp(2.0rem, 2.5vw, 2.6rem);
    font-weight: 600;
}
.about__text {
    width: min(100%, 580px);
    margin: 0 auto;
    text-align: left;
}

/* ------------------------------------- /
/  service__wrapper
/* ------------------------------------- */
.service__wrapper {
    position: relative;
}
.service__wrapper::after {
    content: "SERVICE";
    position: absolute;
    top: 0;
    right: 0;
    font-family: var(--font-en);
    font-size: clamp(9rem, 20vw, 27rem);
    color: #FBFBF9;
    font-weight: 600;
    line-height: 1.21;
    pointer-events: none;
    z-index: -1;
    white-space: nowrap;
}
.service__title {
    position: relative;
    padding-left: 20px;
}
.service__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 35.7%;
    background-color: #A65B50;
}
.service__title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 35.7%;
    width: 1px;
    height: 64.3%;
    background-color: #E6DFD1;
}
.service__table {
    width: min(994px, 100%);
    margin: 0 auto;
}
.service__table tr {
    border-bottom: solid 1px #E6DFD1;
}
.service__table th {
    font-family: var(--font-min);
    font-size: clamp(1.8rem, 2vw, 2.1rem);
    font-weight: 600;
    color: var(--color-red);
    padding: 15px 0;
}
.service__table td {
    width: 66.39%;
    padding: 15px 0;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
    .service__table tr {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .service__table th {
        padding: 15px 0 10px;
    }
    .service__table td {
        width: 100%;
        padding-top: 0;
    }
}
@media screen and (max-width: 425px) {
}

/* ------------------------------------- /
/  profile
/* ------------------------------------- */
.profile__box {
    width: min(1000px, 100%);
    margin: 0 auto;
    background-color: #F4F1EB;
}
.profile__title {
    margin: 0 auto;
    text-align: center;
}
.profile__title h2::after{
    content: '';
    display: block;
    background-color: var(--color-red);
    width: 1px;
    height: 25px;
    margin: 0 auto 30px;
}
.profile__table {
    width: min(800px, 90%);
    margin: 0 auto;
}
.profile__table tr {
    border-bottom: solid 1px #E6DFD1;
}
.profile__table tr:first-child {
    border-top: solid 1px #E6DFD1;
}
.profile__table th {
    font-weight: 500;
    padding: 17px 0;
}
.profile__table td {
    width: 81.6%;
    padding: 17px 0;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
    .profile__table tr {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .profile__table th {
        padding: 17px 0 10px;
    }
    .profile__table td {
        width: 100%;
        padding-top: 0;
    }
}
@media screen and (max-width: 425px) {
}

/* ------------------------------------- /
/  access
/* ------------------------------------- */
.access__wrapper {
    position: relative;
}
.access__wrapper::after {
    content: "ACCESS";
    position: absolute;
    top: 0;
    right: 0;
    font-family: var(--font-en);
    font-size: clamp(9rem, 20vw, 27rem);
    color: #FBFBF9;
    font-weight: 600;
    line-height: 1.58;
    pointer-events: none;
    z-index: -1;
    white-space: nowrap;
}
.access__title {
    position: relative;
    padding-left: 20px;
}
.access__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 35.7%;
    background-color: #A65B50;
}
.access__title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 35.7%;
    width: 1px;
    height: 64.3%;
    background-color: #E6DFD1;
}
.access__table {
    width: 100%;
    margin-bottom: 21px;
}
.access__table th {
    width: 7.8%;
    color: var(--color-red);
    font-weight: 500;
}
.access__table td {
    padding-bottom: 12px;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
    .access__table tr {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .access__table th {
        width: 100%;
        margin-bottom: 5px;
    }
    .access__table td {
    padding-bottom: 15px;
    }
}
@media screen and (max-width: 425px) {
}

/* ------------------------------------- /
/  contact
/* ------------------------------------- */
.contact__title h2::after{
    content: '';
    display: block;
    background-color: #fff;
    width: 1px;
    height: 25px;
    margin: 0 auto 10px;
}
.contact__box {
    background: url(../img/contact.webp);
    background-size: cover;
    color: #fff;
    text-align: center;
    position: relative;
}
.contact__box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(157, 102, 95, 0.9);
    z-index: 1;
    pointer-events: none;
}
.contact__box > * {
    position: relative;
    z-index: 2;
}
.contact__text {
    font-family: var(--font-min);
}
.contact__content {
    width: min(800px, 90%);
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-black);
    margin: 0 auto;
    padding: 20px;
}
.contact__item {
    width: 50%;
}
.contact__item div {
    font-family: var(--font-min);
    font-size: 2.1rem;
    font-weight: 500;
}
.contact__item span {
    font-size: 1.4rem;
    color: var(--color-red);
}
.contact__item.tel {
    border-right: solid 1px var(--color-red);
}
.contact__item.tel::before {
    content: '';
    display: block;
    background: url(../img/tel_r.svg);
    width: 21px;
    height: 24px;
    margin: 0 auto 10px;
}
.contact__item.tel:hover::before {
    animation: poyoyon 2.5s infinite;
    opacity: 1;
}
.contact__item.mail::before {
    content: '';
    display: block;
    background: url(../img/mail_r.svg);
    width: 26px;
    height: 18px;
    margin: 0 auto 10px;
}
.contact__item.mail:hover::before {
    animation: poyoyon 2.5s infinite;
    opacity: 1;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
    .contact__content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .contact__item.tel {
        border-right: none;
        border-bottom: solid 1px var(--color-red);
    }
    .contact__item {
        width: 100%;
    }
}
@media screen and (max-width: 425px) {
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
.footer {
    background-color: var(--color-black);
    color: #fff;
}
.footer__box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer__left {
    width: 50%;
}
.footer__logo__text {
    font-family: var(--font-min);
    font-size: clamp(1.2rem, 1vw, 1.4rem);
    font-weight: 500;
    margin-bottom: 8px;
}
.footer__logo {
    display: inline-block;
}
.footer__logo:hover {
    opacity: 0.7;
    transition: 0.3s, color 0.3s;
}
.footer__logo h1{
    display: flex;
    align-items: center;
    font-family: "Shippori Mincho", serif;
    font-size: clamp(2.0rem, 3vw, 2.8rem);
    color: #fff;
}
.footer__logo img {
    width: 31px;
    margin-right: 8px;
}
.footer__access {
    font-size: 1.5rem;
}
.footer__access a {
    color: #fff;
}
.footer__access .tel a:hover {
    opacity: 0.7;
    transition: 0.3s, color 0.3s;
}
.footer__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.footer__nav a {
    color: #fff;
    font-family: var(--font-min);
    font-size: 1.5rem;
    font-weight: 500;
}
.footer__nav li {
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
    transition: background-size 0.3s;
}
.footer__nav li:hover {
    background-position: bottom left;
    background-size: 100% 1px;
}
.footer__contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer__contact .tel {
    color: var(--color-black);
    font-family: var(--font-min);
    font-size: 1.4rem;
    padding-left: 23px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 22px;
    width: 160px;
    height: 36px;
    display: flex;
    align-items: center;
    transition: 0.3s, color 0.3s;
}
.footer__contact .tel::before {
    content: '';
    background-image: url(../img/tel_b.svg);
    width: 12px;
    height: 14px;
    margin-right: 4px;
    transition: 0.3s, color 0.3s;
}
.footer__contact .tel:hover {
    background-color: var(--color-black);
    color: #fff;
    border: 1px solid #fff;
}
.footer__contact .tel:hover::before{
    background-image: url(../img/tel_w.svg);
}
.footer__contact .mail {
    color: var(--color-black);
    font-family: var(--font-min);
    font-size: 1.4rem;
    padding-left: 23px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 22px;
    width: 210px;
    height: 36px;
    display: flex;
    align-items: center;
    transition: 0.3s, color 0.3s;
}
.footer__contact .mail::before {
    content: '';
    background-image: url(../img/mail_b.svg);
    width: 13px;
    height: 9px;
    margin-right: 4px;
    transition: 0.3s, color 0.3s;
}
.footer__contact .mail:hover {
    background-color: var(--color-black);
    color: #fff;
    border: 1px solid #fff;
}
.footer__contact .mail:hover::before{
    background-image: url(../img/mail_w.svg);
}
.copyright {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    color: #4D4D4D;
    text-align: right;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
    .footer__box {
        flex-wrap: wrap;
    }
    .footer__left {
        margin-bottom: 50px;
        width: 100%;
    }
    .footer__right {
        width: 100%;
    }
    .footer__nav {
        margin-bottom: 50px;
        justify-content: center;
    }
    .footer__contact {
        justify-content: center;
    }
}
@media screen and (max-width: 425px) {
}