@charset "UTF-8";

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    min-width: 0;
    min-height: 0;
}

/* アニメーション */
@keyframes rotate_anime {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

html,
body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
}

html {
    box-sizing: border-box;
    height: 100%;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-size: 1.6rem;
    font-weight: normal;
}

::-moz-selection {
    background: #3d1d0122;
}

::selection {
    background: #3d1d0122;
}

h1 {
    margin: 0;
    color: #3c1c00;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

h2 {
    margin: 0 0 30px 0;
    color: #3c1c00;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

h3 {
    margin: 0;
    color: #3c1c00;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

h4 {
    margin: 0;
    color: #3c1c00;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

h5 {
    margin: 0;
    color: #3c1c00;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

h6 {
    margin: 0;
    color: #3c1c00;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

p {
    margin: 0;
}

a {
    color: #3d1d01;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    transform: translateY(-0.6rem);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.en {
    line-height: 1;
}

.ja {
    line-height: 1;
}

.cart_btn {
    width: 15rem;
    height: 15rem;
    background: url("../img/common/button.png") center center no-repeat;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: fixed;
    bottom: 3rem;
    left: 3rem;
    z-index: 99;
}

.cart_btn .icon {
    width: 5rem;
    height: 5rem;
    color: #ffffff;
}

.cart_btn .icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.cart_btn .text {
    color: #ffffff;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
}

.cart_btn .text span {
    display: block;
    text-align: center;
}

.link_btn {
    margin: 7rem auto 0;
    padding: 1.1rem 0;
    width: 30%;
    background: #f6f2ed59;
    border: solid 1px currentColor;
    border-radius: 0.5rem;
    color: #3d1d01;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-weight: bold;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.link_btn::before {
    width: 100%;
    height: 100%;
    background: url("../img/common/arrow.png") 95% 50% no-repeat;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    content: "";
}

.link_btn:hover {
    background: #3c1c0059;
}

.pagination .pagination_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.pagination .pagination_list .pagination_item a {
    width: 3.7rem;
    height: 3.7rem;
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .pagination_list .pagination_item a.current {
    background: #3c1c00;
    color: #ffffff;
}

.pagination .pagination_list .pagination_item a.current:hover {
    transform: translateY(0);
}

.pagination .pagination_list .pagination_item a:hover {
    background: #3c1c00;
    color: #ffffff;
}

.article_pagination .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article_pagination .nav-links .nav-previous,
.article_pagination .nav-links .nav-next {
    flex: 1 0 50%;
}

.article_pagination .nav-links .arrow {
    padding: 1.1rem 0;
    width: min(20%, 8rem);
    color: #3d1d01;
    display: flex;
    align-items: center;
    position: relative;
    font-weight: bold;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.article_pagination .nav-links .arrow.prev {
    margin: 0 auto 0 0;
    justify-content: flex-end;
}

.article_pagination .nav-links .arrow.next {
    margin: 0 0 0 auto;
    justify-content: flex-start;
}

.article_pagination .nav-links .arrow::before {
    width: 100%;
    height: 100%;
    background: url("../img/common/arrow.png") 95% 50% no-repeat;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.article_pagination .nav-links .arrow.prev::before {
    transform: scaleX(-1);
}

.slider_arrow {
    width: calc(2.5vw + 3.1rem);
    aspect-ratio: 1 / 1;
    background: #e2cca2;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
}

.slider_arrow.prev {
    left: 0;
}

.slider_arrow.next {
    right: 0;
}

.slider_arrow::before {
    width: 100%;
    height: 100%;
    background: url("../img/common/arrow.png") 55% 50% no-repeat;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.slider_arrow.prev::before {
    transform: scaleX(-1);
}

header.pc {
    margin: 3rem auto;
    width: 100%;
    padding: 0 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

header.pc .g_nav .g_nav_list {
    padding: 1.5rem 4rem;
    background-color: #fff;
    -webkit-backdrop-filter: brightness(0.75) blur(30px);
    /* backdrop-filter: brightness(0.75) blur(30px); */
    border-radius: 4.6rem;
    display: flex;
    gap: 3rem;
    /* color: cadetblue; */
}

@supports not ((-webkit-backdrop-filter: brightness(0.75) blur(30px)) or (backdrop-filter: brightness(0.75) blur(30px))) {
    header.pc .g_nav .g_nav_list {
        background: #bebebe;
    }
}

header.pc .g_nav .g_nav_list a span {
    color: #3c1c00;
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
}

header.pc .icons {
    padding: 0 2rem;
}

header.pc .icons .icons_list .icons_item {
    line-height: 0;
}

header.pc .icons .icons_list .icons_item .icon {
    padding: 1.6rem;
    background: #411a00;
    border-radius: 2.8rem;
    display: block;
}

header.pc .icons .icons_list .icons_item .icon.mail {
    color: #ffffff;
}

header.sp {
    display: none;
}
/*追加*/
.kv_wrap {
    padding-bottom: 100px;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    width: 100%;
    /* height: 30vw; */
    /* min-height: 450px; */
    /* height: 33vw; */
    /* min-height: 400px; */
    padding-left: 33%;
    position: relative;
}

.copy {
    left: 3.125%;
    width: 50%;
    /* min-width: 334px; */
    bottom: 5%;
    margin: auto;
    height: 25vw;
    max-height: 460px;
    min-height: 310px;
    z-index: 2;
    transform: translateY(-150px);
    position: absolute;
    z-index: 6;
    bottom: 40px;
    left: 6.25%;
}

.bgWrap {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0 0 0 40px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.unit {}

.unit {
    width: 25%;
    padding-right: 1%;
    /* height: 100%; */
    float: left;
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: transform 1s cubic-bezier(0, 0, 0, 1), opacity 3s cubic-bezier(0, 0, 0, 1);
}

.imgList {
    -webkit-animation: topAtfAnimeUp 40.0s linear infinite;
    animation: topAtfAnimeUp 40.0s linear infinite;
    width: 100%;
    display: block;
}

.imgList > li {
    width: 100%;
    height: 15vw;
    min-height: 180px;
    padding-bottom: 3%;
}

span.bg {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.clearfix {
    width: 100%;
}

.unit {
    transform: translateY(0%);
    opacity: 1;
}

.frame {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0 0 0 40px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.imgList {
 -webkit-animation: topAtfAnimeUp 40.0s linear infinite; 
 animation: topAtfAnimeUp 40.0s linear infinite; 
}
@keyframes topAtfAnimeUp { 
0% {transform: translateY(0%);}
100% {transform: translateY(-25%);}
}
.unit:nth-child(2) ul {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.unit:nth-child(4) ul {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.unit:nth-child(3) ul {
  -webkit-animation-duration: 29s;
  animation-duration: 29s;
}
.unit:nth-child(4) ul {
  -webkit-animation-duration: 29s;
  animation-duration: 29s;
}
.unit:nth-child(1) ul li span:before{
content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .75;
}
.unit:nth-child(2) ul li span:before{
content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .75;
}
.unit:nth-child(1) ul li span:before {
    background-image: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,.3) 100%);
    background-image: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,.3) 100%);
}

.unit:nth-child(2) ul li span:before{
background-image: -webkit-linear-gradient(0deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,0) 100%);
background-image: linear-gradient(90deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,0) 100%);
}
@media screen and (max-width: 1279px) {
.unit:nth-child(2) ul {
    display:none;
}
.unit:nth-child(3) ul {
    display:none;
}  
.unit {
    width: 50%;
}
}
/*ここまで*/
.wrap {
    /* width: 100%; */
    /* position: relative; */
}

.top .kv {
    /* margin: 8rem 0; */
    height: 90vh;
    position: relative;
    background: #e6cfa1;
}

.top .kv::before {
    margin: 0 auto;
    padding: 0 2vw;
    width: 100vw;
    height: 100%;
    background: url("../img/common/bg_line_header.png") center bottom no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    /* content: ""; */
}

.top .kv_box {
    /* margin: 0 auto; */
    /* padding: 9rem 0 0; */
    /* width: 100%; */
    /* display: flex; */
    /* justify-content: center; */
    /* gap: 7rem; */
    /* position: relative; */
}

.top .kv_box .copy {
    width: min(45%, 70rem);
}

.top .kv_box .kv_img {
    width: min(40%, 72rem);
}

.top .kv_box .kv_img .kv_rotate {
    margin: 0 0 0 auto !important;
}

.top .kv_box .kv_img .img {
    width: 73%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top .kv_box .kv_img .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top .kv .kv_img .kv_rotate .text {
    animation: rotate_anime infinite linear 10s;
}

.top .main_copy {
    color: #ffffff;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: calc(1.5vw + 4rem);
    font-weight: bold;
    /* display: inline-block; */
}

.top .main_copy span {
    display: inline-block;
}

.top .sub_copy {
    color: #3c1c00;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: calc(0.9vw + 1.104rem);
    font-weight: bold;
    width: 26vw;
    min-width: 300px;
}

.top .sub_copy span {
    display: inline-block;
}

.top .about {
    margin: 0 auto;
    padding: 24rem 0 16rem;
    background: #f6f2ed;
    position: relative;
}

.top .about::before {
    width: 100%;
    height: 2.104vw;
    background: url("../img/common/bg_line_01.png") center top repeat no-repeat;
    background-size: cover;
    display: inline-block;
    position: absolute;
    bottom: calc(100% - 1.052vw);
    left: 0;
    content: "";
}

.top .about_box {
    margin: 0 auto;
    width: 85%;
    display: flex;
    justify-content: space-evenly;
}

.top .about_box h2 {
    display: flex;
    flex-direction: column;
    position: relative;
    line-height: 1;
    font-weight: bold;
}

.top .about_box h2::before {
    width: 100%;
    height: 6rem;
    background: url("../img/common/title.png") no-repeat;
    display: block;
    position: absolute;
    top: -75%;
    left: -3.6rem;
    content: "";
}

.top .about_box h2 .en {
    width: 100%;
    font-size: calc(1.6vw + 4rem);
    font-weight: 500;
    letter-spacing: 6px;
}

.top .about_box h3 {
    font-size: calc(2vw + 0.72rem);
    font-weight: bold;
}

.top .about_box h3 span {
    display: inline-block;
}

.top .about_box p {
    margin: 5rem auto;
    font-size: calc(1vw + 0.36rem);
    line-height: 2;
}

.top .about_box .l_box {
    padding: 0 0 0 3.6rem;
    width: min(50%, 50rem);
}

.top .about_box .l_box .img {
    margin: 3.5rem 0;
    max-width: 39rem;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.top .about_box .l_box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top .about_box .r_box {
    width: min(50%, 70rem);
}

.top .about_box .link_btn {
    margin: 7rem 0 0 auto;
    width: 45%;
}

.top .feature {
    margin: 0 auto;
    padding: 18rem 0 16rem;
    background: #e2cca2 url("../img/common/bg_01_1.png") repeat;
    position: relative;
}

.top .feature::before {
    width: 100%;
    height: 2.104vw;
    background: url("../img/common/bg_line_02.png") center top repeat no-repeat;
    background-size: cover;
    display: inline-block;
    position: absolute;
    bottom: calc(100% - 1.052vw);
    left: 0;
    content: "";
}

.top .feature h2 {
    height: 10rem;
    position: relative;
    font-weight: bold;
    text-align: center;
}

.top .feature h2 .en {
    width: 100%;
    color: #ffffff;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 0;
    font-size: calc(5vw + 2.8rem);
}

.top .feature h2 .ja {
    width: 100%;
    color: #3c1c00;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 1;
    font-size: calc(2.02vw + 1.4rem);
}

.top .feature_box {
    margin: 8rem auto;
    padding: 2rem 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.top .feature_box .l_box,
.top .feature_box .r_box {
    margin: 0 calc(50% - 50vw);
    width: 50%;
}

.top .feature_box .img {
    margin: 0 auto;
    width: 41.7vw;
    min-width: 61.2rem;
    aspect-ratio: 3 / 2;
    border-radius: 0.8rem;
    overflow: hidden;
    position: relative;
}

.top .feature_box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top .feature_box .text {
    margin: 0 auto;
    padding: 3.6rem;
    width: 28.7vw;
    min-width: 42rem;
    border-radius: 1.6rem;
    background: #ffffff;
    transform: translate(5%, 0);
}

.top .feature_box:nth-of-type(2n) {
    flex-flow: row-reverse wrap;
}

.top .feature_box:nth-of-type(1) .img {
    filter: drop-shadow(-6.8vw 6.4vh #27a7fb);
    transform: translate(20%, 0);
}

.top .feature_box:nth-of-type(2) .img {
    filter: drop-shadow(6.8vw 6.4vh #fdb902);
    transform: translate(-20%, 0);
}

.top .feature_box:nth-of-type(2) .text {
    transform: translate(-5%, 0);
}

.top .feature_box:nth-of-type(3) .img {
    filter: drop-shadow(-6.8vw 6.4vh #fb5c66);
    transform: translate(20%, 0);
}

.top .feature_box .title {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.top .feature_box h3 {
    font-size: calc(0.9vw + 1.104rem);
    font-weight: bold;
}

.top .feature_box:nth-of-type(1) h3 {
    color: #27a7fb;
}

.top .feature_box:nth-of-type(2) h3 {
    color: #fdb902;
}

.top .feature_box:nth-of-type(3) h3 {
    color: #fb5c66;
}

.top .point {
    margin: 0 !important;
    width: 7.2rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    color: #ffffff;
    position: relative;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.top .point .number {
    color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
}

.top .feature_box .desc {
    color: #3c1c00;
    font-size: calc(0.402vw + 0.82rem);
    font-weight: bold;
    line-height: 2.8;
}

.top .feature .link_btn {
    margin: 10rem auto 8rem;
}

.top .case {
    position: relative;
}

.top .case::before {
    width: 100%;
    height: 0.6rem;
    background: url("../img/common/bg_line_04.png") center top repeat no-repeat;
    display: block;
    position: absolute;
    top: -1%;
    left: 0;
    z-index: 1;
    content: "";
}

.top .case::after {
    width: 100%;
    height: 0.6rem;
    background: url("../img/common/bg_line_04.png") center top repeat no-repeat;
    background-size: auto;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    content: "";
}

.top .case_box {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
}

.top .case h2 {
    width: 100%;
    height: 10rem;
    position: relative;
    font-weight: bold;
}

.top .case h2 .en {
    width: 100%;
    color: #f6f2ed;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: calc(5vw + 2.8rem);
    text-align: right;
    letter-spacing: 6px;
}

.top .case h2 .ja {
    width: 100%;
    color: #3c1c00;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: calc(2.02vw + 1.4rem);
    text-align: right;
}

.top .case_box .l_box {
    width: 100%;
}

.top .case_box .r_box {
    padding: 0 9.5vw 0 8vw;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 3.9rem;
}

.top .case_box .r_box p {
    width: 75%;
    font-size: calc(1vw + 0.36rem);
    line-height: 2;
}

.top .case_box .link_btn {
    margin: 7rem 0 0 auto;
    width: 45%;
    background: #ffffff;
}

.top .case_box .link_btn:hover {
    background: #3c1c0059;
}

.top .news {
    padding: 23rem 0;
    background: #ffffff;
    position: relative;
    z-index: 0;
}

.top .news_box {
    margin: 0 auto;
    padding: 11rem 21rem;
    max-width: 108rem;
    background: #f6f2ec;
    border-radius: 1.5rem;
    position: relative;
}

.top .news .shape_01,
.top .news .shape_02,
.top .news .shape_03 {
    width: 16.3vw;
    height: 16.3vw;
    position: absolute;
    z-index: -1;
}

.top .news .shape_01 {
    top: -8vw;
    left: -8vw;
}

.top .news .shape_02 {
    top: 50%;
    right: -8vw;
    transform: translateY(-50%);
}

.top .news .shape_03 {
    bottom: -8vw;
    left: -8vw;
}

.top .news h2 {
    font-weight: bold;
    text-align: center;
}

.top .news h2 .en {
    position: absolute;
    top: -8%;
    left: -2.5vw;
    font-size: calc(5vw + 2.8rem);
}

.top .news h2 .ja {
    width: 100%;
    font-size: calc(2.02vw + 1.4rem);
}

.top .news .link_btn {
    width: 50%;
    background: #ffffff;
}

.top .news .link_btn:hover {
    background: #3c1c0059;
}

.top .contact::before {
    display: none;
}

@counter-style zenkaku-number {
    system: fixed;
    symbols: １ ２ ３ ４ ５ ６ ７ ８ ９;
    suffix: "";
}

.sub .page_title {
    margin: 8rem 0;
    height: calc(100vh - 24vw);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sub .page_title h1 {
    margin: 0 auto;
    width: 55vw;
    max-width: 100rem;
    height: 10rem;
    color: #e2cca2;
    position: relative;
    font-size: calc(3.05vw + 5.608rem);
    font-weight: bold;
    line-height: 1.7;
}

.sub .page_title h1 span {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    text-align: center;
    line-height: 1;
}

.sub .page_title h1::before {
    width: 14rem;
    height: 6rem;
    background: url("../img/common/title.png") no-repeat right;
    display: block;
    position: absolute;
    top: calc(10% - 10vh);
    right: calc(100% - 14vw);
    content: "";
}

.sub .page_title h1 .en {
    width: 100%;
    color: #f6f2ed;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    text-align: center;
}

.sub .page_title h1 .ja {
    width: 100%;
    color: #3c1c00;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    font-size: calc(2.02vw + 1.4rem);
    text-align: center;
}

.sub .page_title.bg {
    margin: 8rem 0 4rem;
    position: relative;
}

.sub .page_title.bg::before {
    width: 100%;
    height: 2.275vw;
    background: url("../img/common/bg_line_header.png") repeat;
    background-size: contain;
    position: absolute;
    top: calc(100% - 1.052vw);
    left: 0;
    content: "";
}

.sub .page_content {
    background: #f6f2ed;
    padding: 16.5rem 18rem 20rem;
}

.sub .page_content h2 {
    font-size: calc(2.02vw + 1.4rem);
    font-weight: bold;
}

.sub .page_content:has(#use_case) {
    padding: 0 18rem;
}

.sub #use_case .slick-slider .slick-dots {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.sub #use_case .slick-slider .slick-dots li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub #use_case .slick-slider .slick-dots li button {
    margin: 0;
    padding: 0;
    width: 1rem;
    aspect-ratio: 1 / 1;
    border: none;
    background: #ffffff;
    border-radius: 50%;
    font-size: 0;
    cursor: pointer;
}

.sub #use_case .slick-slider .slick-dots li.slick-active button {
    background: #3c1c00;
}

.sub #use_case #about {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    position: relative;
}

.sub #use_case #about .about_box {
    padding: 9.4rem 8rem;
    overflow: hidden;
    background: #e2cca2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub #use_case #about .about_box h2 {
    font-size: calc(2vw + 0.72rem);
}

.sub #use_case #about .about_box .desc {
    margin: 5rem auto;
    font-size: calc(1vw + 0.36rem);
}

.sub #use_case #about .about_box .l_box,
.sub #use_case #about .about_box .r_box {
    flex: 1 0 50%;
}

.sub #use_case #about .about_box .l_box {
    position: relative;
}

.sub #use_case #about .about_box .l_box::before {
    width: 75vw;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-26%, -50%);
    z-index: 0;
    content: "";
}

.sub #use_case #about .about_box .l_box .box_wrap {
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.sub #use_case #about .about_box .r_box {
    padding: 0;
}

.sub #use_case #case {
    margin: 0 calc(50% - 50vw);
    padding: 10rem 8rem 20rem;
    width: 100vw;
    position: relative;
}

.sub #use_case #case::before {
    width: 100%;
    height: 2.104vw;
    background: url("../img/common/bg_line_05.png") left top repeat no-repeat;
    background-size: cover;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: calc(100% - 1.052vw);
    content: "";
}

.sub #use_case #case h2 {
    height: 10rem;
    position: relative;
    font-weight: bold;
}

.sub #use_case #case h2 .en {
    color: #e2cca2;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 0;
    font-size: calc(5vw + 2.8rem);
}

.sub #use_case #case h2 .ja {
    color: #3c1c00;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    font-size: calc(2.02vw + 1.4rem);
}

.sub #use_case #case .case_box_wrap {
    margin: 15rem auto;
    display: flex;
    gap: 4rem;
    position: relative;
}

.sub #use_case #case .case_box_wrap:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.sub #use_case #case .case_box_wrap .shape {
    width: 33.89vw;
    aspect-ratio: 1 / 1;
    position: absolute;
    z-index: 0;
}

.sub #use_case #case .case_box_wrap:nth-of-type(1) .shape {
    top: 3vw;
    left: -14vw;
    transform: rotate(-10deg) scale(1.2);
}

.sub #use_case #case .case_box_wrap:nth-of-type(2) .shape {
    top: -3vw;
    right: -14vw;
    transform: rotate(-10deg) scale(1.2);
}

.sub #use_case #case .case_box_wrap:nth-of-type(3) .shape {
    top: 3vw;
    left: -14vw;
    transform: rotate(-10deg) scale(1.2);
}

.sub #use_case #case .case_box_wrap .shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub #use_case #case .case_box_wrap .l_box,
.sub #use_case #case .case_box_wrap .r_box {
    flex: 1 0 45%;
    z-index: 1;
}

.sub #use_case #case .case_box_wrap .case_number {
    color: #ffffff;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: calc(5vw + 2.8rem);
    font-weight: bold;
    line-height: 1;
}

.sub #use_case #case .case_box_wrap:nth-last-of-type(2n) .case_number {
    text-align: right;
}

.sub #use_case #case .case_box_wrap .img {
    margin: 0 0 0 auto;
    width: 36.945vw;
}

.sub #use_case #case .case_box_wrap:nth-last-of-type(2n) .img {
    margin: 0 auto 0 0;
}

.sub #use_case #case .case_box_wrap .case_box {
    margin: 0 auto;
    width: 36.945vw;
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-flow: column wrap;
    position: relative;
}

.sub #use_case #case .case_box_wrap .t_box {
    padding: 2.5rem 3.5rem 6.4rem;
    background: #ffffff;
}

.sub #use_case #case .case_box_wrap .t_box h3 {
    margin: 0 auto 1.7rem;
    display: inline-block;
    position: relative;
    font-size: calc(0.9vw + 1.104rem);
    font-weight: bold;
}

.sub #use_case #case .case_box_wrap .t_box h3::before {
    width: 100%;
    height: 100%;
    background: url("../img/common/bg_line_04.png") bottom no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.sub #use_case #case .case_box_wrap .t_box p {
    color: #3c1c00;
    font-size: calc(1vw + 0.26rem);
    line-height: 2;
}

.sub #use_case #case .case_box_wrap .b_box {
    padding: 4.5rem 3.5rem 3.5rem;
    background: #e2cca2 url("../img/common/bg_01_1.png") 35% 50%;
    position: relative;
}

.sub #use_case #case .case_box_wrap .b_box h4 {
    padding: 1.2rem 3.6rem;
    width: max-content;
    background: #e2cca2;
    border-radius: 2.9rem;
    color: #ffffff;
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translate(-50%, 20%);
    font-size: calc(0.9vw + 1.104rem);
    font-weight: bold;
    text-align: center;
}

.sub #use_case #case .case_box_wrap .b_box ul li {
    color: #3c1c00;
    display: flex;
    align-items: center;
    font-size: calc(0.402vw + 0.82rem);
}

.sub #use_case #case .case_box_wrap .b_box ul li::before {
    content: "・";
}

.sub .page_content:has(#our_story) {
    padding: 0 18rem;
}

.sub #our_story #about {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    position: relative;
}

.sub #our_story #about::before {
    width: 100%;
    height: 0.6rem;
    background: url("../img/common/bg_line_04.png") center top repeat no-repeat;
    display: block;
    position: absolute;
    top: 99%;
    left: 0;
    z-index: 1;
    content: "";
}

.sub #our_story #about .about_box {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub #our_story #about .about_box .l_box,
.sub #our_story #about .about_box .r_box {
    flex: 1 0 50%;
}

.sub #our_story #about .about_box .l_box {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    transform: translateX(-50%) scale(2);
}

.sub #our_story #about .about_box .l_box .img {
    width: 100%;
    height: 100%;
    transform: scaleX(-1) translateX(0rem);
}

.sub #our_story #about .about_box .l_box .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sub #our_story #about .about_box .r_box {
    padding: 0 8rem 0 10rem;
}

.sub #our_story #about .about_box h2 {
    font-size: calc(0.9vw + 1.104rem);
}

.sub #our_story #about .about_box h2 span {
    display: inline-block;
}

.sub #our_story #about .about_box .desc {
    margin: 5rem auto;
    font-size: calc(1vw + 0.36rem);
}

.sub #our_story #about .about_box .link_btn {
    margin: 0 0 0 auto;
    width: 45%;
}

.sub #our_story #story {
    margin: 0 calc(50% - 50vw);
    padding: 16.5rem 18rem 20rem;
    width: 100vw;
    background: #ffffff;
}

.sub #our_story #story .story_box {
    display: flex;
    justify-content: center;
}

.sub #our_story #story .story_box .l_box,
.sub #our_story #story .story_box .r_box {
    flex: 1 0 50%;
}

.sub #our_story #story h2 {
    position: relative;
}

.sub #our_story #story h2::before {
    width: 100%;
    height: 6rem;
    background: url("../img/common/title.png") no-repeat;
    display: block;
    position: absolute;
    top: -95%;
    left: -3.6rem;
    content: "";
}

.sub #our_story #story p {
    margin: 5rem auto;
    font-size: calc(1vw + 0.36rem);
}

.sub #our_story #story .link_btn {
    margin: 0 auto 0 0;
    width: 45%;
    background: #ffffff;
}

.sub #our_story #story .img {
    margin: 0 0 0 auto;
    width: 29.1vw;
    aspect-ratio: 1 / 1;
}

.sub #our_story #story .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub #feature .slick-slider {
    padding: 0 9.9rem;
}

.sub #feature .slick-slider .slick-dots {
    margin: 4rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.sub #feature .slick-slider .slick-dots li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub #feature .slick-slider .slick-dots li button {
    margin: 0;
    padding: 0;
    width: 1rem;
    aspect-ratio: 1 / 1;
    border: none;
    background: #f2eada;
    border-radius: 50%;
    font-size: 0;
    cursor: pointer;
}

.sub #feature .slick-slider .slick-dots li.slick-active button {
    background: #3c1c00;
}

.sub #feature #img_slider {
    margin: 4rem auto;
    position: relative;
}

.sub #feature #img_slider .img {
    margin: 0 0.8rem;
    aspect-ratio: 9 / 8;
    border-radius: 1.5rem;
    overflow: hidden;
}

.sub #feature #img_slider .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub #feature #text_slider .text {
    margin: 0 0.8rem;
    text-align: center;
}

.sub #feature #text_slider .text .title {
    font-size: calc(2vw + 0.72rem);
    font-weight: bold;
}

.sub #feature #text_slider .text .desc {
    font-size: calc(1vw + 0.36rem);
}

.sub #feature #product {
    margin: 0 calc(50% - 50vw);
    padding: 0 18rem 18rem;
    width: 100vw;
}

.sub #feature #product h2 {
    height: 10rem;
    position: relative;
    font-weight: bold;
}

.sub #feature #product h2 .en {
    color: #e2cca2;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: calc(5vw + 2.8rem);
}

.sub #feature #product h2 .ja {
    color: #3c1c00;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: calc(2.02vw + 1.4rem);
}

.sub #feature #product .desc {
    margin: 2.9rem 0;
    max-width: 57.6rem;
    font-size: calc(1vw + 0.36rem);
}

.sub #feature #product .product_box_wrap {
    margin: 6.4rem auto 0;
    display: flex;
    gap: 8.6rem;
}

.sub #feature #product .product_box {
    flex: 1 0 25%;
    padding: calc(1.6vw + 0.8rem) 1.5rem;
    background: #ffffff;
    border-radius: 1rem;
    position: relative;
}

.sub #feature #product .product_box h3 {
    display: flex;
    align-items: center;
    position: absolute;
    top: -7%;
    right: 0;
    line-height: 1;
}

.sub #feature #product .product_box h3 .text {
    font-size: calc(1.6vw + 0.696rem);
}

.sub #feature #product .product_box h3 .number {
    font-size: calc(2.21vw + 1.817rem);
}

.sub #feature #product .product_box:nth-of-type(1) h3 .text {
    color: #27a7fb;
}

.sub #feature #product .product_box:nth-of-type(2) h3 .text {
    color: #fdb902;
}

.sub #feature #product .product_box:nth-of-type(3) h3 .text {
    color: #fb5c66;
}

.sub #feature #product .product_box .img {
    margin: 0 auto;
    width: 81.05%;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 0;
}

.sub #feature #product .product_box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub #feature #product .product_box .title {
    margin: -4rem auto 1.5rem;
    padding: 1.2rem 0;
    background: #f6f2ed;
    border-top: solid 1px #3c1c00;
    border-bottom: solid 1px #3c1c00;
    color: #3c1c00;
    position: relative;
    z-index: 1;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: calc(1vw + 0.36rem);
    font-weight: bold;
    text-align: center;
}

.sub #feature #product .product_box .desc {
    margin: 0 auto;
    font-size: calc(1vw + 0.36rem);
    line-height: 2;
}

.sub #feature #feature_nav {
    margin: 0 calc(50% - 50vw);
    padding: 7rem 16rem;
    width: 100vw;
    background: #e2cca2;
}

.sub #feature #feature_nav .feature_nav_list {
    display: flex;
    justify-content: center;
    gap: 6.7rem;
}

.sub #feature #feature_nav .feature_nav_list .feature_nav_item a {
    padding: 1rem 1.5rem;
    border: solid 1px #3c1c00;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: calc(1vw + 0.36rem);
}

.sub #feature #feature_nav .feature_nav_list .feature_nav_item a::after {
    content: "→";
}

.sub #feature #flow {
    margin: 0 calc(50% - 50vw);
    padding: 15rem 16rem;
    width: 100vw;
    background: #ffffff url("../img/common/bg_01_3.png") repeat;
    position: relative;
}

.sub #feature #flow::before {
    width: 100%;
    height: 2.104vw;
    background: url("../img/common/bg_line_03.png") center top round no-repeat;
    background-size: cover;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: calc(100% - 1.052vw);
    content: "";
}

.sub #feature #flow h2 {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.sub #feature #flow .desc {
    margin: 2rem 0 5rem auto;
    width: 40vw;
    display: flex;
    flex-flow: column wrap;
    align-items: flex-end;
    font-size: calc(1vw + 0.36rem);
    text-align: right;
}

.sub #feature #flow .desc span {
    display: inline-block;
}

.sub #feature #flow .flow_wrap {
    margin: 5rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.sub #feature #flow .flow_wrap .flow_box {
    position: relative;
}

.sub #feature #flow .flow_wrap .flow_box h3 {
    padding: 1rem 0;
    width: 22.3rem;
    background: #3c1c00;
    color: #ffffff;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    text-align: center;
}

.sub #feature #flow .flow_wrap .flow_box .number {
    color: #ffffff;
    position: absolute;
    top: 15%;
    left: -3%;
    font-size: 5.2rem;
    line-height: 1;
}

.sub #feature #flow .flow_wrap .flow_box .number svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.sub #feature #flow .flow_wrap .flow_box .number text {
    fill: #ffffff;
    stroke: #3c1c03;
    stroke-width: 3px;
    stroke-linejoin: miter;
}

.sub #feature #flow .arrow {
    width: 2rem;
    height: 2rem;
    background: url("../img/common/arrow.png") no-repeat;
    background-size: contain;
    display: inline-block;
}

.sub #feature #flow .flow_wrap .flow_box .img {
    width: 29.2rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.sub #feature #flow .flow_wrap .flow_box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub #feature #howto {
    margin: 0 calc(50% - 50vw);
    padding: 15rem 16rem;
    width: 100vw;
    background: #e2cca2;
    position: relative;
}

.sub #feature #howto::before {
    width: 100%;
    height: 2.104vw;
    background: url("../img/common/bg_line_03.png") center top round no-repeat;
    background-size: cover;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: calc(100% - 1.052vw);
    transform: scale(-1);
    content: "";
}

.sub #feature #howto .link_btn {
    margin: 1.5rem auto;
    width: 100%;
}

.sub #feature #howto .column_box {
    display: flex;
}

.sub #feature #howto .column_box .l_box,
.sub #feature #howto .column_box .r_box {
    flex: 1 0 50%;
}

.sub #feature #howto .column_box .desc {
    font-size: calc(1vw + 0.36rem);
}

.sub #feature #howto h3 span {
    display: block;
    text-align: center;
}

.sub #feature #howto .howto_wrap {
    margin: 7rem auto 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.8rem;
}

.sub #feature #howto .howto_wrap .howto_box {
    flex: 1 0 25%;
}

.sub #feature #howto .howto_wrap .howto_box .img {
    margin: 0 auto -2.4rem;
    max-width: 25rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}

.sub #feature #howto .howto_wrap .howto_box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub #feature #example {
    margin: 0 calc(50% - 50vw) -20rem;
    padding: 15rem 16rem;
    width: 100vw;
    background: #ffffff;
    position: relative;
}

.sub #feature #example::before {
    width: 100%;
    height: 2.104vw;
    background: url("../img/common/bg_line_03.png") center top round no-repeat;
    background-size: cover;
    display: inline-block;
    position: absolute;
    bottom: calc(100% - 1.052vw);
    left: 0;
    content: "";
}

.sub #feature #example h2 {
    font-size: calc(2vw + 0.72rem);
    text-align: center;
}

.sub #feature #example .desc {
    font-size: calc(1vw + 0.36rem);
    text-align: center;
}

.sub #news {
    padding: 0 13rem;
}

.sub #news h2 {
    text-align: center;
}

.sub .page_content:has(#article) {
    background: #f7f2ec url("../img/common/bg_01_2.png") repeat;
}

.sub #article article {
    display: flex;
    flex-direction: column;
}

.sub #article .article_header,
.sub #article .article_content,
.sub #article .article_footer {
    background: #e2cca2;
    position: relative;
}

.sub #article .article_header {
    margin: 0 0 1.6rem;
    padding: 6rem 0;
    text-align: center;
    font-size: calc(2.02vw + 1.4rem);
    font-weight: bold;
}

.sub #article .article_header::before {
    width: 100%;
    height: 2.104vw;
    background: url("../img/common/bg_line_02.png") center top repeat no-repeat;
    background-size: cover;
    display: inline-block;
    position: absolute;
    bottom: calc(100% - 1.052vw);
    left: 0;
    content: "";
}

.sub #article .article_header::after {
    width: 100%;
    height: 0.6rem;
    background: url("../img/common/bg_line_04.png") center top repeat-x;
    background-size: cover;
    display: inline-block;
    position: absolute;
    top: 100%;
    left: 0;
    content: "";
}

.sub #article .article_content {
    padding: 0 13rem;
}

.sub #article .article_content .article_thumbnail {
    margin: 7rem auto 5rem;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    border-radius: 1rem;
}

.sub #article .article_content .article_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub #article .article_content h1 {
    margin: 4rem auto;
    color: #3c1c00;
    font-size: calc(2.02vw + 1.4rem);
    font-weight: bold;
}

.sub #article .article_content h2 {
    margin: 4rem auto;
    color: #3c1c00;
    font-size: calc(1.45vw + 1.112rem);
    font-weight: bold;
}

.sub #article .article_content h3 {
    margin: 4rem auto;
    color: #3c1c00;
    font-size: calc(1vw + 1.104rem);
    font-weight: bold;
}

.sub #article .article_content h3::first-letter {
    font-size: 1.3em;
}

.sub #article .article_content h4 {
    margin: 4rem auto;
    color: #3c1c00;
    font-size: calc(1vw + 1.104rem);
    font-weight: bold;
}

.sub #article .article_content h5 {
    margin: 4rem auto;
    color: #3c1c00;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
    font-size: calc(0.9vw + 0.9rem);
    font-weight: bold;
}

.sub #article .article_content h5::before {
    width: 0.3rem;
    height: 1.5em;
    background: #3c1c00;
    display: inline-block;
    content: "";
}

.sub #article .article_content h6 {
    margin: 4rem auto;
    color: #3c1c00;
    font-size: calc(0.9vw + 0.9rem);
    font-weight: bold;
}

.sub #article .article_content p {
    margin: 4rem auto;
    color: #3c1c00;
}

.sub #article .article_content a {
    color: #fb5c66;
    text-decoration: underline;
}

.sub #article .article_content strong {
    font-weight: bold;
}

.sub #article .article_content em {
    font-style: italic;
}

.sub #article .article_content blockquote {
    margin: 4rem auto;
    padding: 2.4rem;
    border-radius: 0.5rem;
    background: #f6f2ed59;
}

.sub #article .article_content blockquote p {
    margin: 1.6rem auto;
    color: #3c1c00;
    font-style: italic;
}

.sub #article .article_content blockquote cite {
    color: #3c1c00;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.8rem;
}

.sub #article .article_content blockquote cite::before {
    width: 4rem;
    height: 0.1rem;
    background: #3c1c00;
    display: inline-block;
    content: "";
}

.sub #article .article_content pre {
    padding: 2.4rem;
    background: #333333;
    color: #dfdfdf;
}

.sub #article .article_content code {
    color: #dfdfdf;
    font-family: monospace;
}

.sub #article .article_content figure {
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
}

.sub #article .article_content figure blockquote {
    border-top: solid 4px #3c1c00;
    border-bottom: solid 4px #3c1c00;
}

.sub #article .article_content figure blockquote cite {
    justify-content: center;
}

.sub #article .article_content ul li {
    padding: 0.8rem;
    list-style: square inside;
}

.sub #article .article_content ul li ul li {
    list-style: circle inside;
}

.sub #article .article_content ul li ul li ul li {
    list-style: disc inside;
}

.sub #article .article_content ol {
    counter-reset: ol_first 0;
}

.sub #article .article_content ol li {
    padding: 0.8rem;
}

.sub #article .article_content ol li::before {
    margin-right: 0.8rem;
    counter-increment: ol_first 1;
    content: counter(ol_first) ".";
}

.sub #article .article_content ol li ol {
    counter-reset: ol_second 0;
}

.sub #article .article_content ol li ol li::before {
    margin-right: 0.8rem;
    counter-increment: ol_second 1;
    content: counter(ol_first) "-" counter(ol_second) ".";
}

.sub #article .article_content ol li ol li ol {
    counter-reset: ol_third 0;
}

.sub #article .article_content ol li ol li ol li::before {
    margin-right: 0.8rem;
    counter-increment: ol_third 1;
    content: counter(ol_first) "-" counter(ol_second) "-" counter(ol_third) ".";
}

.sub #article .article_footer {
    padding: 3rem 10rem 8rem;
}

.sub #article .article_footer::before {
    width: 100%;
    height: 2.104vw;
    background: url("../img/common/bg_line_02.png") center top repeat no-repeat;
    background-size: cover;
    display: inline-block;
    position: absolute;
    top: calc(100% - 1.052vw);
    left: 0;
    transform: scaleY(-1);
    content: "";
}

.sub #contact {
    padding: 0 13rem;
}

.sub #contact h2 {
    margin: 0 auto 5rem;
    text-align: center;
}

.sub #contact .contact_form label {
    display: flex;
    align-items: center;
    font-size: calc(1vw + 0.26rem);
    font-weight: bold;
}

.sub #contact .contact_form .required::before {
    color: #ff0000;
    content: "＊";
}

.sub #contact .contact_form input[type="text"],
.sub #contact .contact_form input[type="email"],
.sub #contact .contact_form input[type="tel"],
.sub #contact .contact_form input[type="password"],
.sub #contact .contact_form input[type="number"],
.sub #contact .contact_form input[type="search"] {
    padding: 1.6rem;
    width: 100%;
    background: #ffffff;
    border: none;
    border-radius: 0.1rem;
    font-size: calc(1vw + 0.26rem);
}

.sub #contact .contact_form .wpcf7-form-control-wrap {
    margin: 1rem auto 3rem;
    display: block;
}

.sub #contact .contact_form .wpcf7-not-valid-tip {
    margin: 1rem auto;
    display: block;
}

.sub #contact .contact_form .wpcf7-spinner {
    display: none;
}

.sub #contact .contact_form input[type="button"],
.sub #contact .contact_form input[type="submit"],
.sub #contact .contact_form button {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    display: block;
    color: #3c1c00;
}

.sub #contact .contact_form input[type="submit"] {
    z-index: 1;
    font-size: 1.7rem;
    font-weight: bold;
}

.sub #contact .contact_form textarea {
    margin: 1rem auto 3rem;
    padding: 1.6rem;
    width: 100%;
    min-height: 23.4rem;
    background: #ffffff;
    border: none;
    border-radius: 0.1rem;
    font-size: calc(1vw + 0.26rem);
    resize: none;
}

.sub #contact .contact_form .link_btn {
    margin: 3rem auto 0;
    width: 100%;
}

.sub #thank_you p {
    font-weight: bold;
}

.sub #privacy_policy {
    padding: 0 13rem;
    font-size: calc(0.402vw + 0.82rem);
    counter-reset: heading 0;
}

.sub #privacy_policy h2 {
    margin: 3.2rem auto 0;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: calc(0.402vw + 0.82rem);
    font-weight: bold;
}

.sub #privacy_policy h2::before {
    counter-increment: heading 1;
    content: counter(heading) ".";
}

.sub #privacy_policy ol {
    counter-reset: list 0;
}

.sub #privacy_policy ol li::before {
    counter-increment: list 1;
    content: "（" counter(list, zenkaku-number) "）";
}

.news_list {
    margin: 5.5rem auto 8.1rem;
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
}

.news_item {
    position: relative;
}

.news_item::before {
    width: 100%;
    height: 0.2rem;
    background: #000000;
    display: block;
    position: absolute;
    bottom: -1.1rem;
    left: 0;
    content: "";
}

.news_item a {
    color: #000000;
    font-size: calc(1vw + 0.26rem);
    font-weight: bold;
}

.news_item a article {
    display: flex;
}

.news_item a article time {
    width: 30%;
    text-align: center;
}

.news_item a article span {
    width: 70%;
}

.contact {
    padding: 10.6rem 0;
    background: url("../img/common/bg_02.png");
    position: relative;
}

.contact::before {
    width: 100%;
    height: 0.6rem;
    background: url("../img/common/bg_line_04.png") center top repeat no-repeat;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.contact h2 {
    height: 10rem;
    position: relative;
    font-weight: bold;
    text-align: center;
}

.contact h2 .en {
    width: 100%;
    color: #ffffff;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 0;
    font-size: calc(5vw + 2.8rem);
}

.contact h2 .ja {
    width: 100%;
    color: #3c1c00;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 1;
    font-size: calc(2.02vw + 1.4rem);
}

.contact .desc {
    margin: 2rem auto;
    font-size: calc(1vw + 0.26rem);
    font-weight: bold;
    text-align: center;
}

.contact_box_wrap {
    margin: 6.4rem auto;
    width: 70%;
    min-width: 108rem;
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
}

.contact_box {
    width: 100%;
    position: relative;
}

.contact_box .title {
    padding: 0.88rem 2.35rem;
    width: 90%;
    background: #f6f2ed;
    border-radius: 2.7rem;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 3.6rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.contact_box .img {
    width: 100%;
    overflow: hidden;
}

.contact_box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer.sp {
    display: none;
}

.f_wrap {
    padding: 2rem 8rem;
    display: flex;
    align-items: center;
}

.f_wrap .f_nav_list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.f_wrap.top {
    justify-content: space-between;
}

.f_wrap.top .f_nav_wrap {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.f_wrap.top .f_nav .f_nav_list .f_nav_item a {
    font-weight: bold;
    font-size: calc(1vw + 0.26rem);
}

.f_wrap.top .f_nav .f_nav_list .f_nav_item .icon {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.f_wrap.top .f_nav .f_nav_list .f_nav_item .icon.cart {
    background: url("../img/common/button.png") center center no-repeat;
    color: #ffffff;
}

.f_wrap.top .f_nav .f_nav_list .f_nav_item .icon.cart svg {
    width: 60%;
    height: 60%;
    display: block;
}

.f_wrap.top .f_nav .f_nav_list .f_nav_item .icon.mail {
    border: solid 3px currentColor;
    color: #000000;
}

.f_wrap.bottom {
    background: #f7f2ec;
    justify-content: flex-end;
}

.f_wrap.bottom .f_nav .f_nav_list .f_nav_item a {
    display: block;
    font-size: 1.5rem;
}

.f_wrap.bottom .f_nav .f_nav_list .f_nav_item .icon {
    width: 3rem;
    color: #3c1c00;
    display: block;
}

.f_wrap.bottom .f_nav .f_nav_list .f_nav_item .icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media screen and (max-width: 1279px) {
    a:hover {
        transform: translateY(0);
    }

    .cart_btn {
        display: none;
    }

    .slider_arrow {
        width: 4rem;
    }

    .slider_arrow.prev::before {
        transform: scaleX(-0.8);
    }

    .slider_arrow.next::before {
        transform: scaleX(0.8);
    }

    .slider_arrow::before {
        background: url("../img/common/arrow.png") 60% 50% no-repeat;
    }

    .pagination .pagination_list .pagination_item a:hover {
        background: none;
        color: #3c1c00;
    }

    .article_pagination .nav-links .arrow {
        width: 8rem;
    }

    header.pc {
        display: none;
    }

    header.sp {
        width: 100%;
        height: 7vh;
        background: #ffffff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        z-index: 100;
    }

    header.sp .g_nav {
        height: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
    }

    header.sp .g_nav .icon {
        width: 100%;
        height: 100%;
    }

    header.sp .g_nav .icon.menu {
        background: #3c1c00;
        display: block;
        position: relative;
    }

    header.sp .g_nav .icon.menu .bar {
        width: 50%;
        height: 0.2rem;
        background: #ffffff;
        display: block;
        position: absolute;
        left: 50%;
        transition: all 0.3s ease;
    }

    header.sp .g_nav .icon.menu .bar:nth-of-type(1) {
        top: 30%;
        transform: translate(-50%, -30%);
    }

    header.sp .g_nav .icon.menu .bar:nth-of-type(2) {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    header.sp .g_nav .icon.menu .bar:nth-of-type(3) {
        top: 70%;
        transform: translate(-50%, -70%);
    }

    header.sp .g_nav.open .icon.menu .bar:nth-of-type(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    header.sp .g_nav.open .icon.menu .bar:nth-of-type(2) {
        opacity: 0;
        top: 50%;
        left: 100%;
        transform: translate(-100%, -50%);
    }

    header.sp .g_nav.open .icon.menu .bar:nth-of-type(3) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    header.sp .g_nav .g_nav_list {
        width: 100%;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.3s ease;
    }

    header.sp .g_nav.open .g_nav_list {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

    header.sp .g_nav .g_nav_list .g_nav_item {
        height: 7vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header.sp .g_nav .g_nav_list .g_nav_item a {
        width: 100%;
        height: 100%;
        background: #3c1c00;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .h_logo a {
        padding: 0.8rem 0 0.8rem 0.8rem;
        width: 100%;
    }

    .top .kv {
        margin: 7vh 0;
        height: calc(100vw + 20dvh);
    }

    .top .kv::before {
        background-size: auto;
    }

    .top .kv_box {
        padding: 2.4rem 0 0;
        flex-direction: column;
        gap: 2.4rem;
    }

    .top .kv_box .copy {
        padding: 0 1.6rem;
        width: 100%;
    }

    .top .kv_box .kv_img {
        margin: 0 0 0 auto;
        width: 60%;
    }

    .top .main_copy {
        font-size: 4.2rem;
    }
    .top .copy {
        width: 70%;
    }

    .top .sub_copy {
        width: min(95%, 40rem);
        font-size: 2.2rem;
        color: #fff;
    }

    .top .about {
        padding: 16rem 1.6rem 8rem;
    }

    .top .about_box {
        padding: 0;
        width: 100%;
        flex-flow: column;
        gap: 2.4rem;
    }

    .top .about_box h2 .en {
        margin: 1rem auto 0.4rem;
        font-size: 4.8rem;
    }

    .top .about_box h3 {
        font-size: 3.2rem
    }

    .top .about_box p {
        margin: 1.6rem auto;
        font-size: 1.8rem;
    }

    .top .about_box .l_box {
        padding: 0;
        width: 100%;
    }

    .top .about_box .l_box .img {
        margin: 1.6rem auto 0;
    }

    .top .about_box .r_box {
        width: 100%;
    }

    .top .about_box .link_btn {
        margin: 4rem auto;
        width: 80%;
    }

    .top .feature {
        padding: 8rem 1.6rem;
    }

    .top .feature h2 .en {
        font-size: 6.4rem;
    }

    .top .feature h2 .ja {
        font-size: 3.2rem
    }

    .top .feature_box {
        margin: 4rem auto;
        gap: 4rem;
    }

    .top .feature_box .l_box,
    .top .feature_box .r_box {
        margin: 0 auto;
        width: 100%;
        flex: 1 0 45%;
    }

    .top .feature_box .img {
        width: 100%;
        min-width: auto;
    }

    .top .feature_box:nth-of-type(1) .img {
        filter: drop-shadow(-4vw 2.4vh #27a7fb);
        transform: translate(0, 0);
    }

    .top .feature_box:nth-of-type(2) .img {
        filter: drop-shadow(4vw 2.4vh #fdb902);
        transform: translate(0, 0);
    }

    .top .feature_box:nth-of-type(3) .img {
        filter: drop-shadow(-4vw 2.4vh #fb5c66);
        transform: translate(0, 0);
    }

    .top .feature_box .text {
        padding: 2.4rem 1.6rem;
        width: 100%;
        min-width: auto;
        transform: translate(0, 0);
    }

    .top .feature_box:nth-of-type(2) .text {
        transform: translate(0, 0);
    }

    .top .feature_box h3 {
        font-size: 2.4rem;
    }

    .top .feature_box .desc {
        font-size: 1.4rem;
    }

    .top .feature .link_btn {
        margin: 4rem auto;
        width: 80%;
    }

    .top .case::before {
        top: -0.5%;
    }

    .top .case h2 .en {
        font-size: 6.4rem;
    }

    .top .case h2 .ja {
        font-size: 3.2rem;
    }

    .top .case_box {
        grid-template-columns: 1fr;
    }

    .top .case_box .l_box .img {
        height: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }

    .top .case_box .l_box .img img {
        height: 100%;
        object-fit: cover;
    }

    .top .case_box .r_box {
        margin: 0 auto;
        padding: 4rem 1.6rem 8rem;
        gap: 2rem;
    }

    .top .case_box .r_box p {
        margin: 0 auto;
        width: 100%;
        font-size: 1.8rem;
    }

    .top .case_box .link_btn {
        margin: 4rem auto;
        width: 80%;
    }

    .top .news {
        padding: 16rem 1.6rem 8rem;
    }

    .top .news h2 .en {
        top: -8%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 6.4rem;
    }

    .top .news h2 .ja {
        font-size: 3.2rem;
    }

    .top .news_box {
        padding: 4rem 1.6rem;
    }

    .top .news .link_btn {
        margin: 4rem auto;
        width: 80%;
    }

    .sub .page_title {
        height: calc(50vw + 20dvh);
    }

    .sub .page_title.bg::before {
        height: 8vw;
    }

    .sub .page_title h1 {
        width: 100%;
        max-width: 100%;
        font-size: 6.4rem
    }

    .sub .page_title h1::before {
        top: calc(8% - 8vh);
        right: calc(70% - 5vw);
    }

    .sub .page_title h1 .ja {
        font-size: 3.2rem;
    }

    .sub .page_content {
        padding: 4rem 1.6rem;
    }

    .sub .page_content h2 {
        font-size: 3.2rem;
    }

    .sub .page_content:has(#use_case) {
        padding: 0;
    }

    .sub #our_story #about .about_box {
        flex-flow: column wrap;
    }

    .sub #our_story #about .about_box .l_box {
        transform: translate(0, -0) scale(1.8);
    }

    .sub #our_story #about .about_box .r_box {
        padding: 4rem 1.6rem;
    }

    .sub #our_story #about .about_box h2 {
        font-size: 3.2rem;
    }

    .sub #our_story #about .about_box .desc {
        margin: 3.2rem auto;
        font-size: 1.8rem;
    }

    .sub #our_story #about .about_box .link_btn {
        margin: 4rem auto;
        width: 80%;
    }

    .sub #our_story #story {
        padding: 8rem 1.6rem;
    }

    .sub #our_story #story .link_btn {
        margin: 4rem auto;
        width: 80%;
    }

    .sub #our_story #story .story_box {
        flex-flow: column wrap;
        gap: 3.2rem;
    }

    .sub #our_story #story .img {
        margin: 0 auto;
        width: 100%;
    }

    .sub #our_story #story h2::before {
        top: -100%;
    }

    .sub #our_story #story p {
        margin: 2.4rem auto;
        font-size: 1.8rem;
    }

    .sub #use_case #about .about_box {
        padding: 4rem 1.6rem;
        flex-flow: column wrap;
    }

    .sub #use_case #about .about_box h2 {
        font-size: 3.2rem;
    }

    .sub #use_case #about .about_box .desc {
        margin: 2.4rem auto;
        font-size: 1.8rem;
    }

    .sub #use_case #about .about_box .l_box,
    .sub #use_case #about .about_box .r_box {
        width: 90vw;
    }

    .sub #use_case #about .about_box .l_box::before {
        top: 0;
        left: 50%;
        transform: translate(-50%, -30%) scale(1.5);
    }

    .sub #use_case #about .about_box .l_box .box_wrap {
        padding: 0;
    }

    .sub #use_case #case {
        padding: 4rem 1.6rem;
    }

    .sub #use_case #case::before {
        background: url("../img/common/bg_line_02.png") left top repeat no-repeat;
        background-size: cover;
        transform: scaleY(-1);
    }

    .sub #use_case #case h2 .en {
        font-size: 6.4rem;
    }

    .sub #use_case #case h2 .ja {
        font-size: 3.2rem;
    }

    .sub #use_case #case .case_box_wrap {
        margin: 8rem auto;
        flex-flow: column wrap;
        gap: 2.4rem;
    }

    .sub #use_case #case .case_box_wrap:nth-of-type(2n) {
        flex-flow: column wrap;
    }

    .sub #use_case #case .case_box_wrap .case_number {
        font-size: 4rem;
    }

    .sub #use_case #case .case_box_wrap .t_box h3 {
        font-size: 2.4rem;
    }

    .sub #use_case #case .case_box_wrap .t_box p {
        font-size: 1.7rem;
    }

    .sub #use_case #case .case_box_wrap .b_box h4 {
        top: -15%;
        transform: translate(-50%, 15%);
    }

    .sub #use_case #case .case_box_wrap .b_box ul li {
        align-items: baseline;
        font-size: 1.4rem;
    }

    .sub #use_case #case .case_box_wrap .case_box {
        width: 100%;
    }

    .sub #use_case #case .case_box_wrap .img {
        margin: 0 auto;
        width: 100%;
    }

    .sub #feature {
        padding: 0;
    }

    .sub #feature .slider {
        padding: 0;
    }

    .sub #feature .slick-slider {
        padding: 0 4rem;
    }

    .sub #feature .slick-slider .slick-dots {
        margin: 2.4rem auto;
    }

    .sub #feature #product {
        margin: 0 auto;
        padding: 8rem 1.6rem;
        width: 100%;
    }

    .sub #feature #product h2 {
        height: auto;
    }

    .sub #feature #product h2 .en {
        font-size: 6.4rem;
    }

    .sub #feature #product h2 .ja {
        font-size: 3.2rem;
    }

    .sub #feature #product .desc {
        font-size: 1.8rem;
    }

    .sub #feature #product .product_box_wrap {
        flex-flow: column wrap;
    }

    .sub #feature #product .product_box h3 .text {
        font-size: 3rem;
    }

    .sub #feature #product .product_box h3 .number {
        font-size: 5rem;
    }

    .sub #feature #product .product_box .title {
        font-size: 1.8rem;
    }

    .sub #feature #product .product_box .desc {
        font-size: 1.8rem;
    }

    .sub #feature #feature_nav {
        padding: 7rem 1.6rem;
    }

    .sub #feature #feature_nav .feature_nav_list {
        margin: 0 auto;
        width: 75%;
        flex-flow: column wrap;
        gap: 4rem;
    }

    .sub #feature #feature_nav .feature_nav_list .feature_nav_item a {
        font-size: 1.8rem;
    }

    .sub #feature #flow {
        padding: 15rem 1.6rem;
    }

    .sub #feature #flow .desc {
        width: 100%;
        font-size: 1.8rem;
    }

    .sub #feature #flow .flow_wrap {
        flex-flow: column wrap;
    }

    .sub #feature #flow .arrow {
        width: 4rem;
        height: 4rem;
        transform: rotate(90deg);
    }

    .sub #feature #howto {
        padding: 8rem 1.6rem;
    }

    .sub #feature #howto .column_box {
        flex-flow: column wrap;
    }

    .sub #feature #howto .column_box .desc {
        font-size: 1.8rem;
    }

    .sub #feature #howto .howto_wrap {
        margin: 4rem auto;
        flex-flow: column wrap;
    }

    .sub #feature #example {
        margin: 0 calc(50% - 50vw) -4rem;
        padding: 8rem 1.6rem;
    }

    .sub #feature #example h2 {
        font-size: 3.2rem;
    }

    .sub #feature #example .desc {
        font-size: 1.8rem;
    }

    .sub #feature #img_slider {
        margin: 2.4rem auto;
    }

    .sub #feature #text_slider .text .title {
        font-size: 3.2rem;
    }

    .sub #feature #text_slider .text .desc {
        font-size: 1.8rem;
    }

    .sub #news {
        padding: 0 1.6rem;
    }

    .sub #article .article_header {
        padding: 4rem 1.6rem;
        font-size: 3.2rem;
    }

    .sub #article .article_content {
        padding: 4rem 1.6rem;
    }

    .sub #article .article_content .article_thumbnail {
        margin: 1.6rem auto;
    }

    .sub #article .article_content h1 {
        font-size: 3.2rem;
    }

    .sub #article .article_content h2 {
        font-size: 2.8rem;
    }

    .sub #article .article_content h3 {
        font-size: 2.4rem;
    }

    .sub #article .article_content h4 {
        font-size: 2.4rem;
    }

    .sub #article .article_content h5 {
        font-size: 2rem;
    }

    .sub #article .article_content h6 {
        font-size: 2rem;
    }

    .sub #article .article_content p {
        margin: 2.4rem auto;
    }

    .sub #article .article_content blockquote {
        margin: 2.4rem auto;
        padding: 1.6rem;
    }

    .sub #article .article_content pre {
        padding: 1.6rem;
    }

    .sub #article .article_footer {
        padding: 2rem 1.6rem 4rem;
    }

    .sub #contact {
        padding: 0 1.6rem;
    }

    .sub #contact .contact_form label {
        font-size: 1.6rem;
    }

    .sub #contact .contact_form input[type="text"],
    .sub #contact .contact_form input[type="email"],
    .sub #contact .contact_form input[type="tel"],
    .sub #contact .contact_form input[type="password"],
    .sub #contact .contact_form input[type="number"],
    .sub #contact .contact_form input[type="search"] {
        font-size: 1.6rem;
    }

    .sub #privacy_policy {
        padding: 0 1.6rem;
        font-size: 1.4rem;
    }

    .sub #privacy_policy h2 {
        font-size: 1.4rem;
    }

    .news_list {
        margin: 2.4rem auto 6.4rem;
        gap: 2.4rem;
    }

    .news_item a {
        font-size: 1.6rem;
    }

    .contact {
        padding: 8rem 1.6rem;
    }

    .contact h2 .en {
        font-size: 6.4rem;
        text-align: center;
    }

    .contact h2 .ja {
        font-size: 3.2rem;
        text-align: center;
    }

    .contact .desc {
        font-size: 1.6rem;
    }

    .contact_box_wrap {
        padding: 0;
        width: 100%;
        min-width: 0;
        flex-direction: column;
    }

    .contact_box .title {
        font-size: 2.8rem;
    }

    .contact .link_btn {
        margin: 4rem auto;
        width: 80%;
    }

    footer.sp {
        width: 100%;
        height: 7vh;
        display: flex;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100;
    }

    footer.sp .cart_btn,
    footer.sp .contact_btn {
        flex: 1 1 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    footer.sp .cart_btn {
        height: 100%;
        background: #fdb902;
        border-radius: 0;
        position: relative;
        bottom: 0;
        left: 0;
    }

    footer.sp .cart_btn a {
        width: 100%;
        height: 100%;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    footer.sp .contact_btn {
        background: #3c1c00;
    }

    footer.sp .contact_btn a {
        width: 100%;
        height: 100%;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .f_wrap.top {
        margin: 2rem auto;
        padding: 0 1.6rem;
        flex-direction: column;
        gap: 2rem;
    }

    .f_wrap.top .f_nav_wrap {
        flex-direction: column;
        gap: 0.8rem;
    }

    .f_wrap.top .f_nav_wrap .f_nav_list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .f_wrap.top .f_nav_wrap .f_nav_list .f_nav_item {
        flex: 1 0 40%;
    }

    .f_wrap.top .f_nav .f_nav_list .f_nav_item a {
        font-size: 1.7rem;
    }

    .f_wrap.top .f_nav_wrap .icons .f_nav_list {
        flex-direction: row;
    }

    .f_wrap.bottom {
        padding: 0 0 7vh;
        justify-content: center;
    }

    .f_wrap.bottom .f_nav_list {
        padding: 0.8rem 0;
    }
}
