@charset "UTF-8";
/* CSS Document */
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 480px) {}
@media screen and (max-width: 350px) {}
/*共通*/
html {
    font-size: 62.5%; /* 16pxに62.5%を掛けると10pxになるよ！ */
}
body {
    min-height: 100%;
    font-size: 1.6em; /* 通常サイズは10pxの1.6倍で16pxだよ！ここだけfont-size em！ */
    font-family: 'Noto Sans JP', sans-serif;
    color: #717171;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.backphoto {
    background-size: cover;
    background-position: center center;
    width: 100%;
}
a {
    text-decoration: none;
    color: currentColor;
    transition: 0.3s;
}
a:hover {
    opacity: 0.7;
}
.backphoto a {
    width: 100%;
    height: 100%;
    display: block;
}
img {
    width: 100%;
}
.hidden {
    display: none;
}
.rhide {
    display: none;
}
.en {
    font-family: 'Cormorant Garamond', serif;
}
/*言語切替*/
.lang-switch {
    font-size: 1.2rem;
    margin: 16px 0 0 0;
    position: relative;
    cursor: pointer;
}
.lang-switch a {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: 0.5s;
}
.lang-switch a.active {
    left: 100%;
    opacity: 1;
    width: 100%;
}
.lang-switch .lang_icon {
    width: 18px;
    margin: 0 4px 0 0px;
    vertical-align: middle;
    opacity: 0.7;
}
.lang-switch p {
    display: inline;
}
@media screen and (max-width: 1024px) {
    .lang-switch {
        width: 6.5%;
        margin: auto;
    }
    .lang-switch .lang_icon {
        width: 15px;
        opacity: 0.7;
    }
  .lang-switch p {
       display: none;
    }
}
@media screen and (max-width: 768px) {
    .lang-switch {
        width: fit-content;
        margin: 16px auto 0;
    }
    .lang-switch p {
       display: inline;
    }
}
/*viewmoreの↗*/
a.viewmore {
    position: relative;
    font-size: 1.3rem;
    line-height: 1.5;
}
.viewmore::after {
    font-family: "Material Symbols Outlined";
    content: '\e0b2';
    margin: 0 0 0 3px;
    vertical-align: middle;
    opacity: 0.9;
    font-size: 110%;
}
.back::after {
    font-family: "Material Symbols Outlined";
    content: '\e166';
    margin: 0 0 0 3px;
    vertical-align: middle;
    opacity: 0.9;
    font-size: 110%;
}
#wrapper {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.maxwidth {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}
.maxwidth1000 {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}
#left_fl {
    width: 12.7%;
    background: #fff;
    position: fixed;
    height: 100%;
    transition: 0.5s;
}
#right_fl {
    width: 87.3%;
    /*display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;*/
    /*-ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;*/
    background: #fffdf6;
    position: relative;
    right: 0;
    /* height: auto; */
    margin: 0 0 0 12.7%;
    transition: 0.5s;
    min-height: calc(100vh - 190px);
}
/*個別ヘッダー設定*/
.fl_head.backphoto {
    aspect-ratio: 2/1;
    margin: 0 0 60px 0;
}
/*共通の文字設定*/
#right_fl h2 {
    letter-spacing: 0.1em;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
}
/*共通の文字設定*/
#right_fl p {
    font-size: 1.3rem;
    line-height: 2;
}
#right_fl h2.midashi_en {
    width: 100%;
    margin: 60px auto 30px;
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    text-align: center;
}
#right_fl h2.midashi_en.t_left {
    width: 100%;
    margin: 30px auto 12px;
    text-align: left;
}
/*共通のセグメント写真設定*/
section.segment {
    aspect-ratio: 3/1;
    margin: 60px 0;
}
/*ふわっと表示CSS*/
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}
.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}
/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
/**/
/*ロゴ部分*/
h1 {
    font-size: 1.2rem;
    transform: rotate(90deg);
    font-family: 'Cormorant Garamond', serif;
    width: 100vh;
    position: absolute;
    display: block;
    transform-origin: left bottom;
    transition: 0.5s;
    margin: 0 0px 0px 7px;
}
h1 br {
    display: none;
}
h1 span {
    margin: 0 0px 0 13px;
}
h1 span a {
    transition: 0.5s;
}
h1 span a:hover {
    opacity: 0.5;
}
h1 span a img {
    display: inline-block;
    height: 16px;
    width: auto;
}
/*メニュー部分*/
ul#menulink {
    position: absolute;
    bottom: 2%;
    left: 12px;
    transition: 0.5s;
    font-size: 1.6rem;
}
#menulink li {
    margin: 0 0 3px 0;
}
#menulink li a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
#menulink li a:hover {
    color: #790808;
}
li#sns {
    display: flex;
    height: 18px;
    margin: 18px 0 0 0;
}
#sns a {
    display: inline-block;
}
#sns img {
    height: 100%;
    margin: 0 5px 0 0px;
    width: 18px;
}
#sns a {
    transition: 0.3s;
}
#sns a:hover {
    opacity: 0.6;
}
/*□□□□□□□□□□□□□□□□*/
/*▽▽▽▽ハンバーガー▽▽▽▽*/
.menuWrapper {
    position: relative;
    z-index: 101;
    width: 28px;
    height: 28px;
}
#menuButton {
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 0;
    width: 28px;
    height: 28px;
    cursor: pointer;
}
#menuButton span, #menuButton::before, #menuButton::after {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 28px;
    height: 2px;
    margin: auto;
    background: #000;
}
#menuButton span {
    overflow: hidden;
    z-index: 1;
    color: #000;
}
#menuButton::before {
    z-index: 2;
    transform: translate(0, -10px);
    content: "";
}
#menuButton::after {
    z-index: 2;
    transform: translate(0, 10px);
    content: "";
}
#menuButton span {
    opacity: 1;
    transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
    transition: transform 200ms;
}
#menuButton.active span {
    opacity: 0;
    transition: opacity 150ms;
}
#menuButton.active::before {
    transform: rotate(45deg);
}
#menuButton.active::after {
    transform: rotate(-45deg);
}
#menu_icon {
    display: none;
}
/*△△△△ハンバーガー終わり△△△△*/
/*トップヘッダースライド写真*/
div#head_photo {
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
/*■■■■■■■■■■■■■■■■■■■■■■
トップ
■■■■■■■■■■■■■■■■■■■■■■*/
/*■■トップページスライドショー■■*/
.topslide {
    width: 100%;
}
.swiper-wrapper {
    width: 100%;
}
.head_photo {
    height: 100vh !important;
    width: 100%;
}
.head_photo .backphoto {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.swiper-pagination-bullet {
    background: #fff;
}
.swiper-pagination-bullet-active {
    background: #fff !important;
}
/*■1024px以下■*/
@media screen and (max-width: 1024px) {
    .head_photo {
        height: calc(100vh - 105px) !important;
    }
}
/*■810px以下■*/
@media screen and (max-width: 810px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .head_photo {
        height: calc(100vh - 75px) !important;
    }
}
/*newsブロック*/
.newsblock {
    margin: 160px auto;
}
.aboutblock, .recommendblock, .magazineblock, .galleryblock {
    margin: 0 auto 160px;
}
.top_midashi {
    justify-content: space-between;
}
.top_midashi h2 {
    font-size: 1.6rem;
}
ul.borderbox {
    border-top: solid 1px #A5A5A5;
    border-bottom: solid 1px #A5A5A5;
    padding: 12px;
}
ul#topnews li {
    margin: 4px;
}
#topnews p span {
    margin: 0 1em 0 0;
    display: inline-block;
    width: 160px;
}
/*■581px以下■*/
@media screen and (max-width: 581px) {
    .aboutblock, .recommendblock, .magazineblock, .galleryblock {
        margin: 0 auto 100px;
    }
    .newsblock {
        margin: 100px auto;
    }
    #topnews p {
        line-height: 1.5;
    }
    #topnews p span {
        margin: 0;
        display: block;
    }
    ul#topnews li {
        margin: 16px 4px;
    }
}
/*アバウト写真*/
.aboutblock a {
    width: 100%;
    /* aspect-ratio: 1.8/1; */
    /* background: #ececec; */
    text-align: center;
    height: 100%;
}
/* ラッパー（外側の要素） */
.video-wrapper {
    aspect-ratio: 16 / 9; /* 縦横比（アスペクト比） */
    overflow: hidden;
    position: relative; /* 絶対配置するコンテンツや疑似要素の基準とする */
    width: 100%;
    max-width: auto;
}
/* 疑似要素でオーバーレイを表示 */
.video-wrapper::before {
    content: "";
    position: absolute; /* 絶対配置 */
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(9, 2, 108, 0.15);
}
/* video 要素 */
.video-wrapper video {
    width: 100%; /* 明示的に幅を設定（必須） */
    height: 100%; /* 明示的に高さを設定（必須） */
    object-fit: cover; /* コンテンツボックスに収まるように拡大縮小 */
}
.video-content {
    margin: 0;
    position: absolute; /* 絶対配置 */
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background: none;
}
.video-content p {
    max-width: 600px;
    padding: 0 2rem;
}
@media screen and (max-width: 480px) {
    .video-wrapper {
        aspect-ratio: 1.6 / 1;
        width: 100%;
    }
    .video-content {
        top: 50%;
        margin-top: 0;
    }
}
#right_fl .aboutblock p.copy {
    font-size: 2.0rem;
    line-height: 1.5;
}
h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
}
#right_fl .aboutblock p.aboutlink {
    font-size: 1.6rem;
    margin: 8px 0 0 0;
    border-bottom: solid 1px currentcolor;
    display: inline-block;
    line-height: 1.3;
}
/*レコメンド的なブロック*/
.recommendblock {
    width: 100%;
    position: relative;
}
.reco_wrap {
    position: relative;
    height: 600px !important;
    width: 100%;
    background: #fffdf6;
}
.reco_wrap .reco_photo1 a, .reco_wrap .reco_photo2 a {
    width: 100%;
    height: 100%;
    display: block;
}
.reco_wrap .reco_photo1 {
    width: 50%;
    aspect-ratio: 1/0.6;
}
h2.reco_title {
    border-bottom: solid 1px #A5A5A5;
    margin: 0 0 12px 0;
}
.reco_textbox {
    position: absolute;
    right: 0;
    width: 46%;
    /*border-bottom: solid 1px #A5A5A5;*/
    top: 55px;
}
.reco_textbox h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
}
.reco_textbox h4 span {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    margin: 0 0 0 1em;
}
p.reco_count {
    position: absolute;
    bottom: -26px;
    left: 0;
}
.reco_textbox a.viewmore {
    position: absolute;
    bottom: -50px;
    left: 0;
}
.reco_photo2 {
    height: 375px;
    position: absolute;
    width: 41%;
    left: 54%;
    bottom: 0;
}
/*■■768px以下■■*/
@media screen and (max-width: 768px) {
    .reco_wrap {
        position: relative;
        height: auto;
    }
    .reco_wrap .reco_photo1 {
        width: 80%;
        aspect-ratio: 1/0.5;
    }
    .reco_textbox {
        position: relative;
        right: 0;
        width: 80%;
        top: 0;
        margin: 20px 0 auto auto;
    }
    .reco_photo2 {
        height: 300px;
        position: relative;
        width: 60%;
        left: auto;
        bottom: auto;
        margin: 3.5em 0 0 auto;
    }
}
/*マガジン的なブロック*/
#topmagazine li {
    width: 31.3333%;
    box-sizing: border-box;
    margin: 1%;
    position: relative;
}
#topmagazine li .backphoto {
    height: 200px;
}
#topmagazine li p {
    line-height: 1.3;
    margin: 8px 8px 8px 2px;
}
li p.contents_name {
    font-weight: 600;
}
#topmagazine a.instaicon {
    width: 25px;
    display: block;
    position: absolute;
    bottom: 2.7em;
    right: 0;
}
/*■■768px以下■■*/
@media screen and (max-width: 768px) {
    #topmagazine li .backphoto {
        height: 150px;
    }
    #topmagazine a.instaicon {
        width: 25px;
        display: block;
        position: absolute;
        bottom: auto;
        right: 5px;
        top: 5px;
    }
}
/*■■581px以下■■*/
@media screen and (max-width: 581px) {
    #topmagazine li:first-child {
        width: 98%;
        box-sizing: border-box;
        margin: 2% 1%;
    }
    #topmagazine li:first-child .backphoto {
        height: 200px;
    }
    #topmagazine li {
        width: 48%;
        box-sizing: border-box;
        margin: 2% 1%;
    }
    #topmagazine li p {
        line-height: 1.3;
        margin: 6px 0 6px 0;
    }
}
/*■■480px以下■■*/
@media screen and (max-width: 480px) {
    #topmagazine li {
        width: 98%;
        box-sizing: border-box;
        margin: 2% 1% 10% !important;
    }
    #topmagazine li .backphoto {
        height: 200px;
    }
}
/*ギャラリー的なブロック*/
.galleryblock {
    width: 100%;
    position: relative;
}
.gallerybox {
    aspect-ratio: 2.5/1;
    width: 80%;
    margin: 0 0 0 auto !important;
}
.gallery_photo a {
    display: block;
    width: 100%;
    height: 100%;
}
.galle_titlebox {
    width: 20%;
    position: relative;
}
.galle_text_wrap {
    margin: auto 0;
    width: 70%;
    text-align: right;
}
.galleryblock h2 {
    border-bottom: solid 1px #A5A5A5;
    width: 100%;
    text-align: right;
}
.button-prev::before {
    font-family: "Material Symbols Outlined";
    content: '\e408';
    font-size: 2.6rem;
}
.button-next::before {
    font-family: "Material Symbols Outlined";
    content: '\e409';
    font-size: 2.6rem;
}
.galle_arrow a {
    color: #9c9c9c;
    height: 30px;
    width: 30px;
}
.galle_arrow {
    position: absolute;
    bottom: 0;
    right: 30%;
}
.galle_arrow.nonpc {
    position: absolute;
    display: none;
}
/*■■768px以下■■*/
@media screen and (max-width: 768px) {
    .gallerybox {
        width: 90%;
        margin: auto !important;
        aspect-ratio: 1.7/1;
    }
    .galle_titlebox {
        width: 90%;
        position: relative;
        margin: auto;
    }
    .galle_text_wrap {
        margin: auto auto 20px;
        width: 100%;
        text-align: left;
    }
    .galleryblock h2 {
        border-bottom: solid 1px #A5A5A5;
        width: 100%;
        text-align: left;
    }
    .galle_text_wrap a.viewmore {
        position: absolute;
        top: 0;
        right: 0;
    }
    .galle_text_wrap .galle_arrow {
        display: none;
    }
    .galle_arrow.nonpc {
        position: absolute;
        bottom: -40px;
        right: calc(50% - 30px);
        display: block;
    }
}
/*■■■■■■■■■■■■■■■■■■■■■■
アバウトページ
■■■■■■■■■■■■■■■■■■■■■■*/
.about_text {
    margin: auto;
}
.a_left, .a_right {
    width: 50%;
}
#right_fl .about_text h2 {
    text-align: center;
    width: 100%;
    margin: 0 0 40px 0;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
}
#right_fl .a_left h3 {
    font-size: 2.0rem;
    letter-spacing: 0.1em;
}
#right_fl .a_right p {
    font-size: 1.5rem;
    margin: 0 0 25px 0;
    line-height: 2.3;
}
.a_photoblock {
    position: relative;
    width: 100%;
}
.a_photoblock:after {
    content: '';
    float: none;
    clear: both;
    display: block;
}
.ap1 {
    width: 47%;
    aspect-ratio: 0.8/1;
    float: left;
}
.ap2 {
    width: 30%;
    aspect-ratio: 0.8/1;
    float: right;
    margin: 38% 16% 0 0px;
}
.ap3 {
    width: 66.6%;
    aspect-ratio: 2.3/1;
    float: left;
    margin: 7% 0 0 0;
}
.ap4 {
    width: 26%;
    aspect-ratio: 0.75/1;
    float: right;
    margin: 23% 0 0 0;
}
.ap5 {
    width: 58.3%;
    aspect-ratio: 1.6/1;
    float: left;
    margin: 0 0 0 0;
}
.ap6 {
    width: 39.5%;
    aspect-ratio: 1/1;
    float: right;
    margin: 18% 0 0 0;
}
.a_slide {
    width: 100%;
    height: 100%;
}
.about_story h4 {
    font-size: 1.5rem;
}
ul.kpmenu {
    width: 100%;
    margin: 32px 0 32px 0;
}
ul.kpmenu li {
    margin: 0 16px 16px 0;
    font-size: 1.4rem;
    width: calc((100% / 12) - 16px);
}
ul.kpmenu li a {
    /*border-bottom: currentcolor 1px solid;*/
    position: relative;
}
ul.kpmenu li a::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: currentcolor;
    transform: scale(1, 1);
    transform-origin: left top;
    transition: transform .3s;
}
ul.kpmenu li a:hover::after {
    transform-origin: right top;
    transform: scale(0, 1);
}
/*記事のとこ*/
.articleblock {
    position: relative;
    margin: 30px auto 30px;
}
.a_1 .backphoto {
    width: 50%;
    aspect-ratio: 1.4/1;
}
.a_1 .article_text_box {
    width: 46%;
    margin: 0 0 0 4%;
}
.article:nth-child(2) {
    float: right;
    width: 55%;
    margin: 7% 0 0 0;
}
.article:nth-child(2) .backphoto {
    width: 100%;
    aspect-ratio: 1.7/1;
}
.article:nth-child(2) .article_text_box {
    width: 80%;
    margin: 16px 0 0 0;
}
.article:nth-child(3) {
    float: left;
    width: 38%;
    margin: 25% 0 0 0;
}
.article:nth-child(3) .backphoto {
    width: 100%;
    aspect-ratio: 0.8/1;
}
.article:nth-child(3) .article_text_box {
    width: 100%;
    margin: 16px auto;
}
.article_text_box h5 {
    margin: 0 0 8px 0;
}
.article_text_box h5 span {
    font-size: 1.3rem;
    margin: 0 0 0 1em;
}
@media screen and (max-width: 1024px) {
    .a_left, .a_right {
        width: 100%;
    }
    #right_fl .a_left h3 {
        font-size: 2.0rem;
        letter-spacing: 0.1em;
        margin: 0 0 12px 0;
    }
    #right_fl .a_left h3 br {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .ap1 {
        width: 56%;
        aspect-ratio: 0.8/1;
        float: left;
    }
    .ap2 {
        width: 40%;
        aspect-ratio: 0.8/1;
        float: right;
        margin: 27% 0 0 0px;
    }
    .ap3 {
        width: 66%;
        aspect-ratio: 2.3/1;
        float: left;
        margin: 4% 0 0 0;
    }
    .ap4 {
        width: 30%;
        aspect-ratio: 0.75/1;
        float: right;
        margin: 12% 0 0 0;
    }
    ul.kpmenu li {
        margin: 0 16px 16px 0;
        font-size: 1.4rem;
        width: calc((100% / 6) - 16px);
    }
}
@media screen and (max-width: 581px) {
    #right_fl .a_right p {
        text-align: justify;
    }
    #right_fl .a_right p br {
        display: none;
    }
    ul.kpmenu li {
        margin: 0 16px 16px 0;
        font-size: 1.4rem;
        width: calc((100% / 4) - 16px);
    }
    .a_1 .backphoto {
        width: 100% !important;
        aspect-ratio: 1.8/1 !important;
    }
    .a_1 .article_text_box {
        width: 97% !important;
        margin: 12px auto !important;
    }
    .article:nth-child(2), .article:nth-child(3) {
        float: none;
        width: 100%;
        margin: 7% 0 0 0;
    }
}
/*■■■■■■■■■■■■■■■■■■■■■■
アイテムラインナップ_プロダクト
■■■■■■■■■■■■■■■■■■■■■■*/
ul.ancarlink {
    justify-content: center;
    padding: 20px 0 20px 0;
    margin: 0 auto 60px;
    background: #fffdf6;
    position: sticky;
    top: 0;
    z-index: 100;
}
ul.ancarlink li {
    width: 7.69%;
    min-width: 45px;
    border-right: 1px solid currentColor;
    box-sizing: border-box;
    margin: 0 0 0.5em 0;
}
ul.ancarlink li:first-child {
    border-left: 1px solid currentColor;
}
ul.ancarlink li:nth-child(14) {
    border-left: 1px solid currentColor;
}
ul.ancarlink li a {
    font-size: 1.5rem;
    text-align: center;
    display: block;
    width: 100%;
    line-height: 1.2;
}
a.viewmore.webbtn {
    margin: auto;
    display: inline-block;
    font-size: 1.4rem;
}
.list {
    padding: 0 0 64px 0;
}
h3.item_midashi {
    font-size: 1.5rem;
    width: 5em;
    text-align: center;
    border-left: solid 1px currentColor;
    border-right: solid 1px currentColor;
    line-height: 1.2;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 96px 0 16px 0.5%;
}
.seri_list li {
    box-sizing: border-box;
    width: 24.6%;
    margin: 0.2% 0.2%;
    position: relative;
}
.seri_list li a {
    position: relative;
    display: block;
}
.seri_list li .backphoto {
    aspect-ratio: 1.7/1;
}
.seri_list a p {
    color: #FFF;
    text-shadow: 0px 0 4px #000000;
    line-height: 1.3 !important;
    font-size: 1.2rem !important;
    opacity: 0.9;
    position: absolute;
    top: 50% !important;
    left: 5%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}
.seri_list a p span {
    font-size: 1.7rem;
}
#right_fl .detail_item h2.midashi_en {
    text-align: left;
    margin: 0;
}
.detail_item h3 {
    font-size: 1.5rem !important;
}
ul.itemlist {
    margin: 32px 0;
}
ul.itemlist li {
    width: 19%;
    margin: 0 0.5% 3%;
}
ul.itemlist li p {
    line-height: 1.3 !important;
    margin: 4px 0 0px 0;
}
ul.itemlist li p span {
    display: block;
    border-top: solid 1px currentColor;
    line-height: 1.1;
    padding: 4px 0 0 0.2em;
    margin: 4px 0 0px 0;
}
a.btn.back {
    float: right;
    font-size: 1.4rem;
    /* border-bottom: solid 1px currentColor; */
    line-height: 1.2;
    margin: 15px 0;
}
/*▽▽▽▽プロダクト1024px以下▽▽▽▽*/
@media screen and (max-width: 1024px) {
    ul.itemlist li {
        width: 24%;
    }
    ul.ancarlink li {
        width: 10%;
        margin: 0 0 0.5em 0;
    }
    ul.ancarlink li:nth-child(14) {
        border-left: none;
    }
    ul.ancarlink li:nth-child(11), ul.ancarlink li:nth-child(21) {
        border-left: 1px solid currentColor;
    }
}
/*▽▽▽▽プロダクト768px以下▽▽▽▽*/
@media screen and (max-width: 768px) {
    .seri_list li {
        box-sizing: border-box;
        width: 32.73333%;
    }
    ul.itemlist li {
        width: 30.3333%;
        margin: 3% 1.5%;
    }
}
/*■581px以下■*/
@media screen and (max-width: 581px) {
    ul.ancarlink {
        width: calc(100% - 35px);
        padding: 20px 35px 20px 0px;
    }
    ul.itemlist li {
        width: 47%;
        margin: 3% 1.5%;
    }
    .seri_list li {
        box-sizing: border-box;
        width: 49.4%;
    }
    ul.ancarlink li {
        width: 20%;
        min-width: 45px;
        border-right: 1px solid currentColor;
        box-sizing: border-box;
        margin: 0 0 0.5em 0;
    }
    ul.ancarlink li:nth-child(11), ul.ancarlink li:nth-child(21) {
        border-left: none;
    }
    ul.ancarlink li:nth-child(1), ul.ancarlink li:nth-child(6), ul.ancarlink li:nth-child(11), ul.ancarlink li:nth-child(16), ul.ancarlink li:nth-child(21) {
        border-left: 1px solid currentColor;
    }
}
/*■■■■■■■■■■■■■■■■■■■■■■
ニュースページ
■■■■■■■■■■■■■■■■■■■■■■*/
ul.newslist {
    margin: 40px 0;
}
.news_detail h3 {
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}
p.news_data {
    text-align: center;
}
.news_head {
    margin: 40px 0;
    aspect-ratio: 1.8/1;
}
.news_head2 {
    margin: 40px 0;
    aspect-ratio: 4/1;
}
.news_detail {
    margin: 40px auto;
}
.news_detail img {
    width: 100%;
    height: auto;
    display: block;
    margin: 24px auto;
    max-width: 800px;
}
.news_content table {
    font-size: 1.3rem !important;
    width: 80% !important;
}
.news_content table td {
    border-bottom: dotted 1px #b5b5b5;
    padding: 0.5em;
}
/*■■■■■■■■■■■■■■■■■■■■■■
ギャラリーページ
■■■■■■■■■■■■■■■■■■■■■■*/
.gallery .gallery_list li {
    width: 25%;
    box-sizing: border-box;
    float: left; /*border: solid 2px #fffdf6;*/
}
.gallery .gallery_list li .backphoto {
    aspect-ratio: 1/1.2;
}
.gallery .gallery_list li:nth-of-type(18n-11) {
    width: 50%;
    float: right;
}
.gallery .gallery_list li:nth-of-type(18n-4) {
    width: 50%;
}
.gallery .gallery_list li:nth-of-type(18n-4) .backphoto {
    aspect-ratio: 1/1.1999;
}
.yajirusi {
    box-sizing: border-box;
    float: left;
    height: 10px;
}
.gallery_article {
    max-width: 1000px;
    margin: auto;
    display: block;
}
@media screen and (max-width: 768px) {
    .gallery .gallery_list li {
        width: 33.3333%;
        box-sizing: border-box;
        float: left;
    }
    .gallery .gallery_list li:nth-of-type(18n-11) {
        width: 33.3333%;
        box-sizing: border-box;
        float: left;
    }
    .gallery .gallery_list li:nth-of-type(18n-4) {
        width: 33.3333%;
        box-sizing: border-box;
        float: left;
    }
    .gallery .gallery_list li:nth-of-type(18n-4) .backphoto {
        aspect-ratio: 1/1.2;
    }
    .gallery .gallery_list li:nth-of-type(11n-1) {
        width: 50%;
        box-sizing: border-box;
        float: left;
    }
    .gallery .gallery_list li:nth-of-type(11n-0) {
        width: 50%;
        box-sizing: border-box;
        float: left;
    }
}
@media screen and (max-width: 581px) {
    .gallery .gallery_list li {
        width: 50%;
        box-sizing: border-box;
        float: left;
    }
    .gallery .gallery_list li:nth-of-type(18n-11) {
        width: 50%;
        box-sizing: border-box;
        float: left;
    }
    .gallery .gallery_list li:nth-of-type(18n-4) {
        width: 50%;
        box-sizing: border-box;
        float: left;
    }
    .gallery .gallery_list li:nth-of-type(11n-1) {
        width: 50%;
        box-sizing: border-box;
        float: left;
    }
    .gallery .gallery_list li:nth-of-type(11n-0) {
        width: 50%;
        box-sizing: border-box;
        float: left;
    }
}
/*■■■■■■■■■■■■■■■■■■■■■■
フォービジネス
■■■■■■■■■■■■■■■■■■■■■■*/
ul.formlist {
    background: rgba(204, 204, 204, 0.2);
    padding: 24px 24px;
}
ul.formlist li {
    width: 19.3%;
    text-align: center;
    border: solid 1px #d6d6d6;
    box-sizing: border-box;
    margin: 0.3%;
    padding: 0.4em;
    background: #FFF;
}
/*展示会のとこ*/
ul.exhibition_list h5 {
    font-size: 1.5rem;
}
ul.exhibition_list h6 {
    font-size: 1.4rem;
}
ul.exhibition_list li {
    margin: 0 0 24px;
    border-bottom: dotted #d6d6d6 1px;
    padding: 0 0 16px 0;
}
#right_fl .a_right .exhibition_list h6 {
    font-size: 1.3rem;
    margin: 0 0 8px 0;
}
#right_fl .a_right .exhibition_list p {
    font-size: 1.3rem;
    margin: 0;
    line-height: 2;
}
.popup {
    border-left: 1px solid #ccc;
    padding: 0 0 0 1em;
    margin: 0 0 0 1em;
}
.popup_detail p {
    line-height: 1.4 !important;
}
.popup_detail {
    margin: 0 0 10px 0px;
}
.popup_detail:last-child {
    margin: 0 0 0 0px;
}
p.popuptitle {
    font-weight: 600;
}
/*コンシェルジュのとこ*/
.ap5 .concierge {
    width: 80%;
    margin: auto;
}
.ap5 .concierge .backphoto {
    aspect-ratio: 1/0.5;
}
.concierge_wrap .ap6 {
    width: 40.5%;
    margin: 11% 0 70px 0;
}
.ap6 .concierge {
    width: 100%;
    margin: auto;
}
.ap6 .concierge .backphoto {
    aspect-ratio: 1/1;
}
.concierge_text {
    margin: 15px 0 0 0;
}
.ap6 .concierge .concierge_text {
    width: 80%;
    margin: 15px 20% 0 0;
}
.concierge_text h3 {
    font-size: 2.2rem;
    font-family: 'Cormorant Garamond', serif;
}
.concierge_text h3 span {
    font-size: 1.3rem;
    font-family: 'Noto Serif JP', serif;
    margin: 0 0 0 4px;
}
p.c_mida {
    font-weight: 600;
    font-size: 1.4rem !important;
}
.concierge_text li {
    margin: 10px 0 10px 0;
}
.concierge_text li p {
    line-height: 1.5;
}
/*■■768px以下■■*/
@media screen and (max-width: 768px) {
    ul.formlist li {
        width: 24.3%;
    }
    .concierge_wrap .ap6, .concierge_wrap .ap5 {
        width: 90%;
        margin: auto;
        float: none;
        clear: both;
    }
    .concierge_wrap .ap6 {
        margin: 30px auto 30px;
    }
    .ap5 .concierge {
        width: 100%;
        margin: auto;
    }
    .ap6 .concierge .backphoto {
        aspect-ratio: 1/0.5;
    }
    .ap6 .concierge .concierge_text {
        width: 100%;
        margin: 15px auto 0;
    }
}
@media screen and (max-width: 581px) {
    ul.formlist li {
        width: 32.733333%;
    }
}
@media screen and (max-width: 480px) {
    ul.formlist li {
        width: 49.3%;
    }
}
/*■■■■■■■■■■■■■■■■■■■■■■
アクセス
■■■■■■■■■■■■■■■■■■■■■■*/
div#map {
    width: 100%;
    height: 500px;
}
.mapspace {
    width: 100%;
    overflow: hidden;
}
.mapspace iframe {
    width: 100%;
    aspect-ratio: 7 / 3;
    display: block;
    height: auto;
    filter: brightness(90%) contrast(125%) grayscale(80%) sepia(7%);
}
ifreme div.review-box {
    display: none !important;
}
div.map_s {
    width: 100%;
    height: 400px;
}
.access h3 {
    text-align: center;
    font-size: 1.7rem;
    margin: 0 0 16px;
}
.access .backphoto {
    aspect-ratio: 1/0.5;
}
.headoffice {
    border-bottom: solid 1px #cdcdcd;
    padding: 0 0 80px;
    text-align: center;
}
.headoffice h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
}
section.shopsection {
    margin: 120px auto 0;
}
.shopwrap {
    /* background: #fff; */
    box-sizing: border-box;
    /* padding: 3%; */
    margin: 0 0 120px 0;
}
ul.shoplist.tri li {
    width: calc(33.33333% - (4% / 3));
    box-sizing: border-box;
    margin: 0 0 2% 2%;
}
ul.shoplist.tri li:first-child {
    margin-left: 0%;
}
ul.shoplist.tri li.double {
    width: calc((33.33333% - (4% / 3))*2 + 2%);
    box-sizing: border-box;
    margin: 0 0 2% 2%;
}
.shopwrap_text {
    text-align: center;
    margin: 0 0 3% 0;
}
.shopwrap_text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    line-height: 1;
}
.shopwrap_text h6 {
    font-size: 1.4rem;
    line-height: 1.5;
}
.shoplist p {
    line-height: 1.3 !important;
}
.shoplist p.shop_cata {
    border: solid 1px #e9e9e9;
    padding: 0.3em 0.7em;
    display: inline-block;
    line-height: 1 !important;
    margin: 0 0 8px 0;
}
.shoplist h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
}
.shoplist h5 span {
    font-size: 1.4rem;
    font-family: 'Noto Serif JP', serif;
}
.shop_footer.flex {
    justify-content: space-between;
    margin: 4px 0;
}
.shop_footer p {
    line-height: 1.5 !important;
}
.access .shoplist li .backphoto {
    aspect-ratio: 1/0.6;
    margin: 8px 0 0 0;
}
/*map*/
.gm-style-mtc button {
    font-size: 11px !important;
    padding: 5px !important;
    line-height: 1.5 !important;
    height: 25px !important;
}
@media screen and (max-width: 768px) {
    ul.shoplist.tri li {
        width: calc(50% - (2% / 2));
        box-sizing: border-box;
        margin: 0 0 2% 2%;
    }
    ul.shoplist.tri li:first-child {
        margin-left: 0%;
    }
    ul.shoplist.tri li.double {
        width: calc((50% - (2% / 2)));
        box-sizing: border-box;
        margin: 0 0 2% 2%;
    }
    .mapspace iframe {
        aspect-ratio: 5 / 3;
    }
}
/*■581px以下■*/
@media screen and (max-width: 581px) {
    ul.shoplist.tri li {
        width: 100%;
        box-sizing: border-box;
        margin: 0 0 2% 0;
    }
    ul.shoplist.tri li:first-child {
        margin-left: 0%;
    }
    ul.shoplist.tri li.double {
        width: 100%;
        box-sizing: border-box;
        margin: 0 0 2% 0;
    }
    .mapspace iframe {
        aspect-ratio: 4 / 3;
    }
}
/*■■■■■■■■■■■■■■■■■■■■■■
コンタクト
■■■■■■■■■■■■■■■■■■■■■■*/
.contact {
    text-align: center;
}
ul.btn_con {
    margin: 16px 0;
}
ul.btn_con li a {
    font-size: 1.4rem;
    border: solid 1px #cdcdcd;
    display: block;
    line-height: 1.6;
    padding: 30px 0;
}
ul.btn_con li {
    width: 18%;
    box-sizing: border-box;
    margin: 1%;
    /* padding: 0; */
}
@media screen and (max-width: 1024px) {
    ul.btn_con li {
        width: 23%;
        box-sizing: border-box;
        margin: 1%;
        /* padding: 0; */
    }
    ul.btn_con li:last-child {
        width: 100%;
    }
}
@media screen and (max-width: 581px) {
    ul.btn_con li {
        width: 31.3333%;
        box-sizing: border-box;
        margin: 1%;
        /* padding: 0; */
    }
    ul.btn_con li:last-child {
        width: 48%;
    }
    ul.btn_con li:nth-last-child(2) {
        width: 48%;
    }
}
@media screen and (max-width: 480px) {
    ul.btn_con li {
        width: 48%;
        box-sizing: border-box;
        margin: 1%;
        /* padding: 0; */
    }
    ul.btn_con li:last-child {
        width: 100%;
    }
    ul.btn_con li:nth-last-child(2) {
        width: 48%;
    }
}
/*▽▽▽▽フッター▽▽▽▽*/
div#footer {
    width: 100%;
    background: rgb(232, 232, 232);
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0 8px;
}
.foot_left {
    width: 70%;
    margin: 0 0 0 15%;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.f_midashi {
    text-align: right;
    width: 15%;
    margin: 7px 0 0 0;
}
.f_link {
    width: 80%;
    margin: 7px 0 0 6px;
    border-left: solid 1px rgb(144, 144, 144);
    padding: 0 0 0 0px;
}
.f_link a {
    display: inline-block;
    margin: 0 7px;
    color: inherit;
    transition: 0.3s;
}
.f_link a:hover {
    color: #790808;
}
.foot_right {
    width: 15%;
}
.foot_right a {
    display: inline-block;
    width: 20px;
    margin: 7px 1% 0;
    transition: 0.3s;
}
.foot_right a:hover {
    opacity: 0.7;
}
p#copyright {
    text-align: center;
    width: 100%;
    font-size: 1.2rem;
    margin: 25px 0 0;
    color: #999;
}
/*△△△△フッター終わり△△△△*/
/*■■■■■■■■■■■■■■■■■■
    1024px以下
■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 1024px) {
    #left_fl {
        width: 100%;
        background: #fff;
        position: relative;
        height: 105px;
    }
    h1 {
        font-size: 1.5rem;
        transform: rotate(00deg);
        width: auto;
        position: relative;
        /* top: 148px; */
        /* left: -122px; */
        display: block;
        transform-origin: left bottom;
        margin: 24px auto 12px;
        text-align: center;
    }
    h1 span {
        font-size: 28px;
        margin: 0 0px 0 13px;
        color: #543015;
    }
    #right_fl {
        width: 100%;
        transition: 0.5s;
        margin: 0%;
        height: 100%;
    }
    div#head_photo {
        width: 100%;
        height: calc(100vh - 105px);
        /*background-image: url(/studiom/image/ver3/DSC_0344.jpg);*/
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #464646;
        position: relative;
        overflow: hidden;
    }
    ul#menulink {
        position: relative;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 90%;
        text-align: center;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #menulink li {
        width: 12.5%;
        margin: auto;
    }
    li#sns {
        display: none;
    }
}
/*■■■■■■■■■■■■■■■■■■
    768px以下
■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.3rem;
        transform: rotate(00deg);
        width: auto;
        position: relative;
        /* top: 148px; */
        /* left: -122px; */
        display: block;
        transform-origin: left bottom;
        margin: 12px auto 10px;
        text-align: center;
        line-height: 140%;
    }
    h1 span {}
    h1 span a img {
        display: inline-block;
        height: 20px;
        margin: 3px 0 0 0;
    }
    h1 br {
        display: inline;
    }
    #left_fl {
        width: 100%;
        background: #fff;
        position: relative;
        height: 75px;
    }
    #right_fl {
        width: 100%;
        transition: 0.5s;
        margin: 0%;
        height: 100%;
    }
    div#head_photo {
        height: calc(80vh - 75px);
    }
    ul#menulink {
        position: fixed;
        top: -200%;
        width: 100%;
        display: block;
        background: rgba(255, 255, 255, 0.9);
        height: 100%;
        z-index: 290;
    }
    ul#menulink.active2 {
        position: fixed;
        top: 0%;
    }
    #menulink li {
        width: 90%;
        margin: auto;
        padding: 1vh 0;
    }
    #menulink li:first-child {
        padding: 10vh 0 1vh;
    }
    #menu_icon {
        display: block;
        position: fixed;
        top: 20px;
        right: 14px;
        z-index: 9999;
    }
    div#late {
        width: 50%;
        padding: 25px;
    }
    li#sns {
        justify-content: center;
    }
    /*▽▽▽▽フッター768▽▽▽▽*/
    .foot_left {
        margin: 0 0 0 10%;
    }
    .f_midashi {
        width: 20%;
    }
    .f_link {
        width: 70%;
    }
}
/*■■■■■■■■■■■■■■■■■■
    581px以下
■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 581px) {
    div#footer {
        width: 100%;
        display: block;
    }
    .foot_left {
        margin: auto;
        display: block;
        width: 90%;
    }
    .f_midashi {
        width: 100%;
        text-align: left;
        border-bottom: solid 1px rgb(144, 144, 144);
        display: inline;
        padding: 0 0 2px 0;
    }
    .f_link {
        width: 100%;
        border: none;
        padding: 0;
        margin: 7px 0 8px 0;
    }
    .foot_right {
        width: 90%;
        margin: auto;
    }
    .foot_right a {
        display: inline-block;
        width: 17px;
        margin: 7px 4px 0;
    }
    /*プロダクト*/
    li.probox_k {
        width: 49.6%;
        margin: 0.2%;
    }
    li.probox_k a {
        width: 100%;
        height: 100px;
    }
}
/*■■■■■■■■■■■■■■■■■■
    480px以下
■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 480px) {
    div#late {
        width: calc(100% - 40px);
        padding: 20px;
    }
}