@charset "UTF-8";
:root {
    --accent: #7A553A;
    --pc-width: 1080px;
}
.accent_color {
    color: var(--accent);
}
html,body{
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}
._inner{
    max-width: var(--pc-width);
}
@media screen and (max-width: 1080px) {
._inner{
    width: 100%;
    margin: 0 2.5%;
    max-width: 95%;
}
}
.sp_disp {
    display: none !important;
}
.pc_disp {
    display: block !important;
}
@media screen and (max-width: 1080px) {
    .sp_disp {
        display: block !important;
    }
    .pc_disp {
        display: none !important;
    }
}

header{
    width: 100%;
    height: 60px;
    display: flex;
    padding: 0 5%;
}
header nav{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
._nav_inner{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 0.5rem 0;
}
._nav_inner ul{
    display: flex;
    gap: 2rem;
}
@media screen and (max-width: 1080px) {
._nav_inner ul{
    display: none;
}
}
._nav_inner h1{
    height: 100%;
}
._nav_inner h1 img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
._contact{
    border: 0.5px solid #000000;
    padding: 0.3rem 3rem;
    border-radius: 30px;
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
._contact{
    margin-right: 40px;
    padding: 0.3rem 2rem;
}
}

main{
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
@media screen and (max-width: 767px) {
main{
    gap: 3rem;
}
}
._mv{
    width: 100%;
    position: relative;
}
._mv_img{
    width: 100%;
    aspect-ratio: 3/1.2;
}
._mv_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.8);
}
._mv_info{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
._mv_info img {
    width: 30%;
    filter: invert(1) drop-shadow(0px 0px 5px black);
}
@media screen and (max-width: 767px) {
._mv_info img {
    width: 20%;
}
}
._mv h1{
    font-size: 2.4rem;
    color: #FFFFFF;
    font-weight: 600;
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
._mv h1{
    font-size: 1.5rem;
}
}
._about{
    width: 100%;
    display: flex;
    justify-content: center;
}
._about ._inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;    
}
._about h2{
    width: 100%;
    display: inline-block;
    font-size: 2rem;
    font-weight: 400;
    color: var(--accent);
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._about h2{
    font-size: 1.5rem;
}
}
._about h2 span{
    font-size: 1.5rem;
}
@media screen and (max-width: 1080px) {
._about h2 span{
    font-size: 1.2rem;
}
}
._about ._about_inner{
    width: 100%;
    display: flex;
    flex-direction: column;
}
._about_inner h3{
    width: 100%;
    font-size: 1.3rem;
    font-weight: 300; 
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._about_inner h3{
    font-size: 1.2rem;
}
}
._about_txt{
    width: 100%;
    font-size: 1.1rem;
    line-height: 2;
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._about_txt{
    font-size: 1rem;
}
}

._history{
    width: 100%;
    display: flex;
    justify-content: center;
}
._history ._inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;    
}
._history_head{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
._history h2{
    width: 100%;
    display: inline-block;
    font-size: 2rem;
    font-weight: 400;  
    color: var(--accent);
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._history h2{
    font-size: 1.5rem;
}
}
._history h3{
    width: 100%;
    font-size: 1.3rem;
    font-weight: 300;  
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._history h3{
    font-size: 1.2rem;
}
}
._history_txt{
    width: 100%;
    font-size: 1.1rem;
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._history_txt{
    font-size: 1rem;
}
}
._history_map{
    border-radius: 40px;
    background: #FCF1DE;
    display: flex;
    flex-wrap: wrap;
    margin: 3rem;
    position: relative;
}
@media screen and (max-width: 767px) {
._history_map{
    border-radius: 20px;
}
}
._history_map::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 95%;
    background: var(--accent);
}
._history_map::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 95%;
    width: 2px;
    background: var(--accent);
}
._history_item{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
._history_parts{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #975C1E;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.2;
}
@media screen and (max-width: 767px) {
._history_parts{
    width: 100px;
    height: 100px;
}
}
._history_parts.base{
    border: 2px solid #975C1E;
    background: #FFFFFF;
}
._history_parts img{
    width: 50%;
}
._history_title{
    position: absolute;
    border: 1px solid var(--accent);
    border-radius: 20px;
    color: var(--accent);
    white-space: nowrap;
}
._history_title.no1{
    padding: 0.2rem 1rem;
    top: -3rem;
    left: 50%;
    transform: translate(-50%, 0);
}
._history_title.no2{
    padding: 1rem 0.2rem;
    right: -3rem;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-writing-mode: vertical-rl; /* Safari/Chrome用 */
    writing-mode: vertical-rl; /* 標準 */
}
._history_title.no3{
    padding: 0.2rem 1rem;
    bottom: -3rem;
    left: 50%;
    transform: translate(-50%, 0);
}
._history_title.no4{
    padding: 1rem 0.2rem;
    left: -3rem;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-writing-mode: vertical-rl; /* Safari/Chrome用 */
    writing-mode: vertical-rl; /* 標準 */
}

._strong{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
    position: relative;
}
@media screen and (max-width: 1080px) {
._strong{
    gap: 2rem;
}
}
._strong ._inner{
    width: 100%;
}
._strong h2{
    width: 100%;
    display: inline-block;
    font-size: 2rem;
    font-weight: 400;  
    color: var(--accent);
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._strong h2{
    font-size: 1.5rem;
}
}
._strong_wrap{
    width: 100%;
    overflow: visible !important;
    /* 左側の余白を計算：(画面幅 - コンテンツ幅) / 2 */
    padding-left: calc((100% - var(--pc-width)) / 2);
    box-sizing: border-box;
    margin-bottom: 3rem;
}
@media screen and (max-width: 1080px) {
._strong_wrap{
    padding: 0 2.5%;
}
}
._strong_wrap article{
    width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
}
._strong_img{
    width: 300px;
    aspect-ratio: 1/1;
}
._strong_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
._strong_inner{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    flex-grow: 1;
}
._strong_inner h3{
    font-size: 1.3rem;
    font-weight: 400;
    word-break: auto-phrase;
    height: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
@media screen and (max-width: 1080px) {
._strong_inner h3{
    font-size: 1.2rem;
}
}
._strong_no{
    font-size: 1.2rem;
    text-align: center;
}
._strong_txt{
    word-break: auto-phrase;
    text-align: center;
    flex-grow: 1;
}
.swiper-button-next {
    top: unset;
    left: unset;
    width: 40px;
    height: 40px;
    background: rgba(210,210,215,0.64);
    color: #000000;
    z-index: 2;
    border-radius: 50%;
    bottom: 0rem;
    right: calc((100% - var(--pc-width) + 80px) / 2);
}
@media screen and (max-width: 1080px) {
.swiper-button-next {
    right: unset;
    left: calc((100% + 80px) / 2);
}
}
.swiper-button-next:after {
    font-size: 1rem;
}
.swiper-button-prev {
    top: unset;
    left: unset;
    width: 40px;
    height: 40px;
    background: rgba(210, 210, 215, 0.64);
    color: #000000;
    z-index: 2;
    border-radius: 50%;
    bottom: 0rem;
    right: calc((100% - var(--pc-width) + 240px) / 2);;
}
@media screen and (max-width: 1080px) {
.swiper-button-prev {
    left: unset;
    right: calc((100% + 80px) / 2);
}
}
.swiper-button-prev:after {
    font-size: 1rem;
}

._intro{
    width: 100%;
    display: flex;
    justify-content: center;
}
._intro ._inner{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
._intro h2{
    font-size: 2rem;
    font-weight: bold;
}
._intro_message{
    width: 70%;
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
    word-break: auto-phrase;
}
._intro_btn{
    background: var(--accent);
    color: #FFFFFF;
    width: 65%;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.5rem;
    border-radius: 30px;
    text-align: center;
    margin-top: 1rem;
}

._message{
    width: 100%;
    display: flex;
    justify-content: center;
}
._message ._inner{
    width: 100%;
    display: flex;
}
._message_btn{
    width: 100%;
    height: 480px;
    position: relative;
    display: block;
}
@media screen and (max-width: 767px) {
._message_btn{
    max-height: 480px;
    height: unset;
    aspect-ratio: 1/1;
}
}
._message_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
._message_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    filter: brightness(0.7);
}
._message_inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
._message_inner ._message_txt{
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    color: #FFFFFF;
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
._message_inner ._message_txt{
    font-size: 1.3rem;
}
}
._message_inner h2{
    background: #FFFFFF;
    font-size: 1.5rem;
    padding: 0.5rem 3rem;
    border-radius: 30px;
    text-align: center;
}
@media screen and (max-width: 767px) {
._message_inner h2{
    background: #FFFFFF;
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
}
}
._method{
    width: 100%;
    display: flex;
    justify-content: center;
}
._method ._inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}
@media screen and (max-width: 767px) {
._method ._inner{
    flex-direction: column;
}
}
._method ._method_btn{
    width: calc((100% - 1rem) / 2);
    background:rgb(245,245,247);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
@media screen and (max-width: 767px) {
._method ._method_btn{
    width: 100%;
    padding: 2rem;
}
}
._method_img{
    width: 100%;
    aspect-ratio: 16/10;
}
._method_img img{
    object-fit: cover;
    width: 100%;
}
._method h2{
    width: 100%;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}
._method_link{
    color: blue;
}
._method_txt{
    text-align: center;
    font-weight: 400;
    word-break: auto-phrase;
}

footer{
    margin-top: 10rem;
    width: 100%;
    background: var(--accent);
}
._copyright{
    width: 100%;
    color: #FFFFFF;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
}

._submv{
    width: 100%;
    padding: 5rem 0 2rem;
}
._submv h1{
    width: 100%;
    color: var(--accent);
    font-size: 2.4rem;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
}
._messagepage{
    width: 100%;
    display: flex;
    justify-content: center;
}
._messagepage ._inner{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
._messagepage h2{
    font-size: 2rem;
    font-weight: 400;
    word-break: auto-phrase;
}
@media screen and (max-width: 767px) {
._messagepage h2{
    font-size: 1.5rem;
}
}
._messagepage_wrap{
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 2rem;
}
@media screen and (max-width: 1080px) {
._messagepage_wrap{
    flex-direction: column;
}
}
@media screen and (max-width: 767px) {
._messagepage_wrap{
    align-items: center;
}
}
._messagepage_inner{
    width: calc((70% - 1rem));
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 1080px) {
._messagepage_inner{
    width: 100%;
}
}
._messagepage_img{
    width: calc((30% - 1rem));
}
@media screen and (max-width: 767px) {
._messagepage_img{
    width: 90%;
    text-align: center;
}
}
._messagepage_img img{
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1/1;
}
._messagepage_txt{
    font-size: 1.2rem;
    line-height: 2;
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._messagepage_txt{
    font-size: 1rem;
}
}
._messagepage_president{
    font-size: 1rem;
    word-break: auto-phrase;
    text-align: right;
}

._operation{
    width: 100%;
    display: flex;
    justify-content: center;
}
._operation h2{
    color: #9b7d5c;
    font-size: 2rem;
    font-weight: 400;
    border-bottom: 1px solid;
    line-height: 2.5;
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._operation h2{
    font-size: 1.5rem;
    line-height: 2;
}
}
._operation ._inner{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
._operation_wrap{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
._operation_wrap article{
    display: flex;
    flex-direction: row;
    gap: 2rem;    
}
@media screen and (max-width: 1080px) {
._operation_wrap article{
    flex-direction: column;
    align-items: center;
}
}
._operation_img{
    width: 40%;
}
@media screen and (max-width: 1080px) {
._operation_img{
    width: 80%;
}
}
@media screen and (max-width: 767px) {
._operation_img{
    width: 100%;
}
}
._operation_img img{
    object-fit: cover;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 20px;
}
@media screen and (max-width: 767px) {
._operation_img img{
    border-radius: 10px;
}
}
._operation_inner{
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 1080px) {
._operation_inner{
    width: 100%;
}
}
._operation_no span{
    border: 0.5px solid #000000;
    border-radius: 30px;
    padding: 0 1rem;
}
._operation_inner h3{
    font-size: 1.4rem;
    font-weight: 400;
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._operation_inner h3{
    font-size: 1.2rem;
}
}
._operation_inner ._operation_txt{
    font-size: 1.2rem;
    line-height: 2;
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._operation_inner ._operation_txt{
    font-size: 1rem;
}
}
._headoffice{
    width: 100%;
    display: flex;
    justify-content: center;
}
._headoffice ._inner{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
._headoffice h2{
    color: #9b7d5c;
    font-size: 2rem;
    font-weight: 400;
    border-bottom: 1px solid;
    line-height: 2.5;
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._headoffice h2{
    font-size: 1.5rem;
    line-height: 2;
}
}
._headoffice_wrap{
    width: 100%;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
._headoffice_wrap article{
    width: calc((100% - 2rem) / 2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: #FCF1DE;
    border-radius: 20px;
}
@media screen and (max-width: 767px) {
._headoffice_wrap article{
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
}
}
._headoffice_wrap article h3{
    font-size: 1.4rem;
    font-weight: 400;
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._headoffice_wrap article h3{
    font-size: 1.2rem;
}
}
._headoffice_inner{
    display: flex;
    gap: 1rem;    
}
._headoffice_img{
    width: 20%;
}
._headoffice_img img{
    object-fit: contain;
    width: 80%;
    aspect-ratio: 1 / 1;
}
._headoffice_txt{
    width: 80%;
}
._headoffice_txt{
    word-break: auto-phrase;
}

._strategies{
    width: 100%;
    display: flex;
    justify-content: center;
}
._strategies h2{
    color: #9b7d5c;
    font-size: 2rem;
    font-weight: 400;
    border-bottom: 1px solid;
    line-height: 2.5;
}
._strategies ._inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 3rem;
}
._strategies_wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
@media screen and (max-width: 1080px) {
._strategies_wrap{
    flex-direction: column;
    align-items: center;
}
}
._strategies_img{
    width: 50%;
}
@media screen and (max-width: 767px) {
._strategies_img{
    width: 100%;
}
}
._strategies_img img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
._strategies_inner{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 1080px) {
._strategies_inner{
    width: 100%;
}
}
._strategies_wrap h3{
    width: 100%;
    font-size: 1.3rem;
    font-weight: 300; 
    word-break: auto-phrase;
}
._strategies_txt{
    font-size: 1.2rem;
    line-height: 2;
    word-break: auto-phrase;
}
@media screen and (max-width: 1080px) {
._strategies_txt{
    font-size: 1rem;
}
}
/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 300;
  display: none;
}
@media screen and (max-width: 767px) {
.hamburger {
    display: block;
}
}
.hamburger__line {
  position: absolute;
  width: 22px;
  height: 2px;
  right: 0;
  background-color: #000;
  transition: all 0.5s;
}
.hamburger__line--1 {
top: 24px;
right: 20px;
}
.hamburger__line--2 {
top: 30px;
right: 20px;
}
.hamburger__line--3 {
top: 36px;
right: 20px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 30px;
}
.open .hamburger__line--2 {
  opacity: 0;
}
.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 30px;
}
.sp_nav{
    display: none;
    width: 100%;
    position: absolute;
    top: 60px;
    background: #000000;
    color: #FFFFFF;
    z-index: 1;
    left: 0;
    padding: 1rem;
}
.sp_nav ul li{
    padding: 0.5rem;
}

/*topへ戻る*/
#page_top {
    position: fixed;
    bottom: 40px;
    right: 0px;
}
#page_top a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#page_top a:hover {
    text-decoration: none;
}

#fc_contact_form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.fc_contact_txt {
    background-color: #ffffff;
}
.fc_contact_txt p {
    margin-bottom: 1rem;
}
.fc_contact_txt p span {
    color: red;
}
.fc_contact_item_title{
    font-weight: 400;
}
.fc_contact_item_title span,
.error{
    color: red;
}
#fc_contact_privacy{
    margin: 3rem 0;
    font-size: 0.9rem;
}
#fc_contact_privacy h4{
    font-weight: 400;
}



