@charset "UTF-8";
body {
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: #000;
}


ol,
ul {
    list-style: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}

input {
  border-radius: 0;
  -webkit-appearance: none; /* Webkitブラウザ（iOS Safari, Chrome）用 */
  appearance: none; /* 標準的なappearanceリセット */
}

input::placeholder {
    font-family: libre-caslon-display,  yu-gothic-pr6n, sans-serif;
}



.pc {
    display: block;
}

.sp {
    display: none;
}


/*Header*/

header {
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: nowrap;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 2;
    position: fixed;
    align-content: space-around;
    transition: all 0.1s;
}

.menu-btn {
    position: absolute;
    top: 24px;
    right: 26px;
    display: block;
    height: 24px;
    width: 24px;
    z-index: 90;
    background: transparent url(../img/search_icn.png) center center no-repeat;
    background-size: contain;
    cursor: pointer;
}

#menu-btn-check {
    display: none;
}

.menu-content {
    pointer-events: none;
    padding-top: 30vh;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: transparent;
    transition: all 0.5s;
    opacity: 1;
    pointer-events: none;
}

.menu-content h2 {
    opacity: 0;
}

.search_area {
    opacity: 0;
}

p.logo {
    display: flex;
    width: max-content;
    height: 70px;
    position: absolute;
    top: 0px;
    left: 30px;
    align-items: center;
}

p.logo a {
    color: #000;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

header.white {
    background-color: transparent;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
}

.white p.logo a {
    color: #fff;
}

.white .menu-btn {
    background: transparent url(../img/search_icn_w.png) center center no-repeat;
    background-size: contain;
    cursor: pointer;
}

#single .white .menu-btn {
    background: transparent url(../img/search_icn.png) center center no-repeat;
    background-size: contain;
    cursor: pointer;
}

.menu-content ul {
    padding: 0;
    margin: 0;
    position: absolute;
    display: flex;
    top: 0;
    width: calc(100% - 60px);
    justify-content: flex-end;
    right: 70px;
    height: 70px;
    align-items: center;
    pointer-events: auto;
}

.menu-content ul.sp {
    display: none;
}

header li {
    list-style: none;
    margin-left: 2em;
    text-align: right;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: clamp(12px, 1.5vw, 17px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

header li a {
    text-decoration: none;
    color: #000;
    letter-spacing: .14em;
}

header li a:hover {
    color: #000;
}

header.white li a {
    text-decoration: none;
    color: #fff;
    letter-spacing: .14em;
}

header.white li a:hover {
    color: #fff;
}



#archive header.white li a {
    color: #fff;
}

#archive header.white li a:hover {
    color: #fff;
}




#single header.white li a {
    color: #000;
}

#single header.white li a:hover {
    color: #000;
}

header h2 {
    opacity: 1;
    color: #FFF;
    text-align: center;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: 50px;
}

div.search_form {
    padding: 0;
    width: 100%;
    height: 50px;
    max-width: 650px;
    background-color: transparent;
    margin: 10px auto 10px auto;
    display: flex;
}

div.search_icn {
    text-align: center;
    width: 56px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

div.search_icn img {
    height: 18px;
    width: auto;
}

div.search_form input:focus,
div.search_form input:invalid {
    outline: none;
    box-shadow: none;
    /* ブラウザが適用する影を消す */
    border: none;
    /* 必要に応じて枠線を完全に消す */
}

input:focus,
input:invalid {
    outline: none;
    /* デフォルトのフォーカススタイルを消す */
    box-shadow: none;
    /* デフォルトの影を消す */
}

input:invalid::-webkit-input-placeholder {
    color: inherit;
    /* プレースホルダーの色を継承 */
}

input:invalid {
    border: none;
    /* 枠線を完全に消す */
}

div.search_form input[type="text"] {
    width: calc(100% - 205px);
    height: 48px;
    border: none;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    margin-right: 30px;
}

div.search_form input#searchsubmit {
    background-size: contain;
    width: 120px;
    height: 48px;
    border: none;
    display: block;
    padding: 18px 11px;
    color: #000;
    text-align: center;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    /* 100% */
    background: #E8EAE6;
}

#menu-btn-check:checked~.menu-btn {
    background: transparent url(../img/close_icn.png) center center no-repeat;
    background-size: contain;
    top: 23px;
    right: 27px;
}

#menu-btn-check:checked~.menu-content {
    left: 0;
    opacity: 1;
    pointer-events: auto;
    background-color: #1C2B02;
}

#menu-btn-check:checked~.menu-content * {
    opacity: 1;
}

#menu-btn-check:checked~p.logo a {
    color: #fff;
}

#menu-btn-check:checked~.menu-content li a {
    color: #fff;
}

#menu-btn-check:checked~.menu-content li a:hover {
    color: #fff;
}


/*Main*/

#top main {
    display: block;
    padding-top: 70px;
    height: calc(100vh - 130px);
}

#top main div.main_img::after {
    content: "";
    display: block;
    background-color: rgba(28, 43, 2, 0.60);
    width: 100%;
    height: calc(100vh - 200px);
    position: absolute;
    z-index: 0;
}

#top main h1 {
    color: #FFF;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(8vw, 8.6vw, 110px);
    line-height: 1;
    position: absolute;
    width: 100%;
    text-align: center;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
}

#top main div.main_img {
    width: 100%;
    display: flex;
    height: calc(100vh - 200px);
}

#top main div.main_img div.img {
    width: calc(100% / 3);
    height: calc(100vh - 200px);
}

#top main div.main_img div.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#archive main {
    display: block;
    padding-top: 0;
    height: 410px;
    border-bottom: 10px solid #1C2B02;
}

#archive main.tag {
    height: 80px;
}

#archive main div.main_img {
    width: 100%;
    display: block;
    height: 400px;
     overflow: hidden;
    position: relative;
}

#archive main div.main_img::after {
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, 0.20);
    width: 100%;
    height: 400px;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
}

#archive main div.main_img div.img {
    width: 100%;
    display: block;
    height: 400px;
}

#archive main div.main_img div.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#single main {
    position: relative;
    display: flex;
    padding-top: 0;
    height: 100vh;
    border-bottom: 10px solid #1C2B02;
    overflow: hidden;
}

#single main div.main_img {
    position: relative;
    width: 50%;
    display: block;
    height: 100vh;
}

#single main div.main_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

#single main div.main_img::after {
    content: "";
    display: block;
    background-color: rgba(28, 43, 2, 0.60);
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
}

#single main div.main_text {
    position: relative;
    width: 50%;
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	overflow-y: auto;
    padding: 20px 0;
}

#single main div.main_text h1,
#single main div.main_text p,
#single main div.main_text ul,
#single main div.main_text time {
    width: 82%;
    max-width: 460px;
    text-align: center;
}

#single main div.main_text h1 {
    text-align: center;
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: clamp(12px, 2.35vw, 30px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.6;
    padding-bottom: 20px;
}

#single main div.main_text p {
    text-align: center;
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.67;
    padding-bottom: 40px;
}

#single main div.main_text ul {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

#single main div.main_text ul li {
    width: max-content;
    margin: 0 5px 10px 5px;
}

#single main div.main_text ul li a {
    color: #fff;
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375;
    /* 137.5% */
    padding: 7px 16px;
    background-color: #1C2B02;
    text-decoration: none;
}

#single main div.main_text time {
    padding-top: 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.375;
}

#single main div.main_img .ctgry {
    color: #FFF;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(4vw, 6vw, 80px);
    line-height: 1;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -1.5vw;/*-4vw;*/
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
	display: none;
}


/*Lead*/

.title-container {
    position: relative;
    width: auto;
    height: auto;
    overflow: hidden;
    margin-bottom: 10px;
}

.rotated-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
    font-size: 85px;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-weight: 400;
    font-style: normal;
    color: #1C2B02;
}

.section_e .rotated-title {
    top: 47%;
}

section.lead {
    width: 86%;
    max-width: 812px;
    padding-bottom: 20px;
    margin: 0 auto;
    display: block;
    text-align: center;
    color: #000;
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.67;
}

section.lead h2 {
    color: #1C2B02;
    text-align: center;
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 37px;/*38px;*/
    font-style: normal;
    font-weight: 600;
    line-height: 1.29;
    padding-top: 33px;
    padding-bottom: 40px;
}

section.lead h1 {
    text-align: center;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    color: #1C2B02;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.05;
    padding-top: 36px;
    padding-bottom: 20px;
}

section.lead h1.jp {
    padding-top: 50px;
    font-size: 65px;
}


/*section.section_a*/

section.section_a {
    position: relative;
    padding-top: 0;
    padding-bottom: 128px;
    width: 92%;
    max-width: 812px;
    margin: 0 auto;
    display: block;
}

section.section_a div.bnr {
    padding-top: 50px;
}


/*section.section_b*/

section.section_b {
    position: relative;
    padding-top: 0;
    padding-bottom: 50px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

#single section.section_b {
    padding-top: 50px;
}

section.section_b h2 {
    color: #1C2B02;
    text-align: center;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75;
    padding-bottom: 50px;
}

section.section_b .category ul {
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}

.section_b .category ul li {
    width: 300px;
    margin-right: 40px;
    /* 右側の間隔 */
    padding-bottom: 50px;
}

.section_b .category ul li:first-child {
    margin-left: clamp(8%, calc(50vw - 590px), 50%);
}

.section_b .category ul li div.img {
    width: 300px;
}

.section_b .category ul li:last-child {
    margin-right: clamp(8%, calc(50vw - 600px + 40px), 50%);
}

.category ul li a {
    text-decoration: none;
    /* リンクの下線を削除 */
    color: inherit;
    /* テキスト色を継承 */
    display: block;
    /* 要素全体をクリック可能に */
}

.category ul li h3 {
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.22;
    text-transform: uppercase;
    padding-top: 20px;
    padding-bottom: 4px;
}

.category ul li p {
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 17px;/* 18px;*/
    font-style: normal;
    font-weight: 600;
    line-height: 1.67;
}

.category ul li span {
    padding-top: 16px;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    text-decoration: underline;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.57;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
}

.section_b .category ul li span {
    display: none;
}


/*section.new_article*/

section.new_article {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: clamp(8%, calc(50% - 590px), 50%);
    padding-right: clamp(8%, calc(50% - 550px), 50%);
    display: flex;
    justify-content: space-between;
}


/*body#archive section.new_article*/

body#archive section.new_article {
    position: relative;
    padding: 0;
    padding-top: 75px;
    padding-bottom: 170px;
    width: 88%;
    max-width: 1120px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

body#archive section.new_article div.view_more {
    width: max-content;
    margin: 0 auto;
}

body#archive section.new_article div.view_more a {
    color: #000;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.22;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    padding: 19px 75px;
    border: 1px solid #000;
    background-color: #fff;
}

section.new_article .title-container {
    position: relative;
    width: 90px;
    margin-right: 20px;
}

section.new_article .category {
    width: calc(100% - 110px);
}


/*body#archive section.new_article*/

body#archive section.new_article .category {
    width: 100%;
}

section.new_article .category ul {
position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

section.new_article .category ul li {
    width: calc((100% - 50px) / 2);
    margin-right: 50px;
    padding-bottom: 80px;
}


/*body#archive section.new_article*/

body#archive section.new_article .category ul li {
    width: calc((100% - 100px) / 3);
    margin-right: 50px;
    padding-bottom: 80px;
    position: relative;
}

section.new_article .category ul li.pickup::before {
    content: "PICKUP";
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.06;
    color: #fff;
    width: max-content;
    background-color: #1C2B02;
    position: absolute;
    top: 0;
    padding: 9px 10px;
}

section.new_article .category ul li.new::before {
    content: "NEW";
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.06;
    color: #fff;
    width: max-content;
    background-color: #1C2B02;
    position: absolute;
    top: 0;
    padding: 9px 22px;
}

section.new_article .category ul li p {
    display: block;
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 23px;/* 24px;*/
    font-style: normal;
    font-weight: 600;
    line-height: 1.58;
}

#archive section.new_article .category ul li p {
    font-size: 21px;/* 23px;*/
}


section.new_article .category ul li:nth-child(even) {
    margin-right: 0;
}

body#archive section.new_article .category ul li:nth-child(even) {
    margin-right: 50px;
}

body#archive section.new_article .category ul li:nth-child(3n) {
    margin-right: 0;
}

section.new_article .category ul li span {
    display: block;
}


/* section.section_c*/

section.section_c {
    position: relative;
    padding-top: 100px;
    padding-bottom: 20px;
    padding-left: clamp(8%, calc(50% - 590px), 50%);
    padding-right: clamp(8%, calc(50% - 550px), 50%);
    display: flex;
    background: #E8EAE6;
    justify-content: space-between;
}

section.section_c .title-container {
    position: relative;
    width: 90px;
}

section.section_c .category {
    width: calc(100% - 110px);
}

section.section_c .category ul {
    position: relative;
    display: block;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

section.section_c .category ul li {
    padding-bottom: 80px;
	display: flex;
    width: 100%;
    align-content: center;
    align-items: center;
}

section.section_c .category ul li a {
    position: relative;
    display: block;
    width: 100%;
}

section.section_c .category ul li div.img {
    width: 360px;
    margin-right: 50px;
}

section.section_c .category ul li div.text_area {
    width: calc(100% - 410px);
    display: flex;
    align-content: center;
    align-items: center;
}

section.section_c .category ul li div.no {
    width: 100px;
    text-align: center;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

section.section_c .category ul li p {
    font-size: 23px;/*24px;*/
    font-style: normal;
    font-weight: 600;
    line-height: 1.58;
}

section.section_c .category ul li div.text {
    width: calc(100% - 100px);
}


/*section.section_d*/

section.section_d {
    position: relative;
    padding-top: 100px;
    padding-bottom: 120px;
    width: 90%;
    max-width: 1160px;
    margin: 0 auto;
    display: block;
}

section.section_d h2 {
    color: #1C2B02;
    text-align: center;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75;
    padding-bottom: 50px;
}

section.section_d .category ul {
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    margin: 0 auto;
}

.section_d .category ul li {
    width: 300px;
    max-width: calc((100% - 120px) / 4);
    margin-right: 40px;
    /* 右側の間隔 */
    padding-bottom: 50px;
}

.section_d .category ul li:last-child {
    margin-right: 0;
}

.section_d .category ul li div.img {
    width: 100%;
}

.section_d .category ul li a {
    text-decoration: none;
    /* リンクの下線を削除 */
    color: inherit;
    /* テキスト色を継承 */
    display: block;
    /* 要素全体をクリック可能に */
}

.section_d .category ul li h3 {
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    padding-top: 10px;
    padding-bottom: 0;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.38;
    text-transform: uppercase;
}

.section_d .category ul li span {
    display: none;
}


/*section.section_e*/

section.section_e {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: clamp(8%, calc(50% - 590px), 50%);
    padding-right: clamp(8%, calc(50% - 550px), 50%);
    background: #E8EAE6;
    display: block;
}

section.section_e div.section_e {
    display: flex;
    justify-content: space-between;
}

section.section_e .title-container {
    position: relative;
    width: 90px;
}

section.section_e.list {
    background: #fff;
}

.halls {
    position: relative;
    display: flex;
    width: calc(100% - 110px);
    justify-content: space-between;
}

.halls h3 {
    color: #000;
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.64;
    padding: 20px 0;
}

.halls p {
    display: block;
    color: #000;
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.67;
    padding: 0;
}

.halls div.img {
    width: calc(50% - 25px);
    max-width: 490px;
}

.halls div.txt {
    padding-top: 60px;
    width: calc(50% - 25px);
}

.halls dl {
    display: flex;
    padding: 0;
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.29;
}

.halls dt {
    width: 17%;
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 2.25;
}

.halls dd {
    width: 80%;
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.25;
}

.halls dd a {
    color: #000;
    text-decoration: underline;
}


/* div.sns*/

div.sns {
    width: 100%;
    display: block;
    flex: none;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #000;
}

div.sns h3 {
    color: #000;
    text-align: center;
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 2.11;
}

div.sns nav .list_sns {
    padding-top: 25px;
    display: flex;
    width: 117px;
    justify-content: space-between;
    padding-bottom: 10px;
    margin: 0 auto;
}

div.sns nav .list_sns img {
    width: auto;
    height: 29px;
}


/*section.article*/

section.article {
    position: relative;
    padding-top: 70px;
    padding-bottom: 0;
    padding-left: clamp(8%, calc(50% - 590px), 50%);
    padding-right: clamp(8%, calc(50% - 550px), 50%);
    display: flex;
    justify-content: space-between;
}

section.article div.article {
    width: calc(100% - 350px);
    max-width: 800px;
}

section.article div.article div.index {
    width: 100%;
    padding: 50px 50px 70px 50px;
    background-color: #f5f5f5;
}

section.article div.article 
{
    color: #1C2B02;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    /* 100% */
    text-transform: uppercase;
    padding-bottom: 10px;
    text-align: center;
}

section.article div.article div.index b.h2 {
	display: block;
    color: #1C2B02;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    /* 100% */
    text-transform: uppercase;
    padding-bottom: 10px;
    text-align: center;
}


section.article div.article div.index ul {
    width: max-content;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

section.article div.article div.index ul li a {
    font-family:  yu-gothic-pr6n, sans-serif;
    font-size: clamp(12px, 1.4vw, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.67;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    color: #000;
    padding-top: 20px;
    display: block;
    width: max-content;
    max-width: 600px;
}

section.article div.article .normal {
    margin-top: 100px;
    margin-bottom: 90px;
    text-align: center;
    scroll-margin-top: 70px;
}

section.article div.article .normal div.img {
    margin-bottom: 60px;
}

section.article div.article .normal h3 {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: clamp(12px, 2.35vw, 30px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    color: #1C2B02;
}

section.article div.article .normal p {
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.67;
    max-width: 84%;
}

section.article div.article .repeat {
    margin-top: 90px;
    margin-bottom: 50px;
    scroll-margin-top: 70px;
    text-align: center;
}

section.article div.article .repeat h3 {
    margin-top: 60px;
    padding-bottom: 20px;
    margin-bottom: 37px;
    font-size: clamp(12px, 2.35vw, 30px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.6;
    color: #1C2B02;
    border-bottom: 5px solid #1C2B02;
	text-align: left;
}

section.article div.article . repeat div.img {
    margin-bottom: 50px;
}

section.article div.article .repeat h4 {
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 25px;
    font-size: clamp(12px, 1.95vw, 25px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.67;
text-align: left;
}

section.article div.article .repeat p {
    margin: 0;
    margin-top: 20px;
    margin-bottom: 100px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.67;
    max-width: 100%;
	text-align: left;
}

section.article div.recommend {
    width: 270px;
    padding: 50px 30px 8px 30px;
    background-color: #E8EAE6;
    height: max-content;
  position: sticky; /* 固定 */
  top: 70px; /* ヘッダーの高さを考慮 */
  align-self: start;
  margin-bottom: 50px;
}

section.article div.recommend h2 {
    color: #1C2B02;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    padding-bottom: 30px;
    text-align: center;
}


section.article div.recommend b.h2 {
    color: #1C2B02;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    padding-bottom: 30px;
    text-align: center;
}


section.article div.recommend span {
    display: none;
}

section.article div.recommend li {
    padding-bottom: 42px;
}


/*section. article*/

footer {
    color: #fff;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    padding-top: 60px;
    padding-bottom: 20px;
    background-color: #1C2B02;
}

.foote_link_area {
    padding-left: clamp(8%, calc(50% - 590px), 50%);
    display: flex;
    padding-bottom: 115px;
}

.foote_sns {
    padding-right: 190px;
}

.foote_link {
    padding-top: 5px;
    display: flex;
}

.foote_link ul {
    display: block;
    width: 200px;
}

.foote_link ul li {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.125;
    text-transform: uppercase;
    padding-bottom: 26px;
}

.foote_sns p.logo {
    display: block;
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    color: #fff;
    width: max-content;
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    align-items: center;
    padding-bottom: 40px;
}

.foote_sns .list_sns {
    display: flex;
    width: 80px;
    justify-content: space-between;
}

.foote_sns .list_sns img {
    width: auto;
}

footer .footer_ {
    display: flex;
    padding-right: clamp(8%, calc(50% - 590px), 50%);
    justify-content: flex-end;
    align-content: center;
    align-items: baseline;
}

footer .footer_ * {
    width: max-content;
}

footer .footer_ div {
    padding-left: 2vw;
}

footer .footer_ div a {
    text-align: right;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.385;
}

footer small {
    padding-left: 2vw;
    display: block;
    font-size: 13px;
}

footer a {
    color: #fff;
    font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    text-decoration: none;
}

#pickup,
#new,
#ranking,
#wedding {
    scroll-margin-top: 70px;
}


/*=============================SP=============================*/

@media screen and (max-width: 767px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    /*Header*/
    header {
        height: 50px;
        z-index: 2;
    }
    .menu-btn {
        background: transparent url(../img/handbugger.png) center center no-repeat;
        background-size: contain;
        top: 12px;
        right: 20px;
    }
    .white .menu-btn {
        background: transparent url(../img/handbugger_w.png) center center no-repeat;
        background-size: contain;
        cursor: pointer;
    }
    #single .white .menu-btn {
        background: transparent url(../img/handbugger_w.png) center center no-repeat;
        background-size: contain;
        cursor: pointer;
    }
    #menu-btn-check:checked~.menu-btn {
        background: transparent url(../img/close_icn.png) center center no-repeat;
        background-size: contain;
        top: 12px;
        right: 12px;
    }
    .menu-content {
        pointer-events: none;
        padding: 0 6%;
        padding-top: 72px;
    }
    p.logo {
        height: 50px;
        position: absolute;
        top: 0px;
        left: 20px;
    }
    p.logo a {
        color: #000;
        font-size: 20px;
    }
    .menu-content ul {
        width: 100%;
        position: relative;
        display: none;
        padding: 0;
        margin: 0;
        padding-top: 30px;
        border-bottom: 1px solid #fff;
    }
    .menu-content ul.sp {
        border-bottom: none;
    }
    .menu-content ul li {
        padding: 0;
        margin: 0;
        padding-bottom: 25px;
        text-align: left;
        font-size: 19px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        text-transform: uppercase;
    }
    .menu-content ul li a {
        color: #fff;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
    }
    .menu-content ul.sp li {
        border-bottom: none;
        font-size: 18px;
        padding-bottom: 20px;
    }
    #menu-btn-check:checked~.menu-content ul {
        display: block;
        top: auto;
        right: auto;
        height: auto;
        align-items: center;
        pointer-events: auto;
    }
    div.search_icn {
        text-align: center;
        width: 44px;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
    }
    div.search_form input[type="text"] {
        width: calc(100% - 80px);
        height: 48px;
        border: none;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
        margin-right: 0;
    }
    div.search_form input#searchsubmit {
        background-size: contain;
        width: 80px;
        height: 48px;
        border: none;
        display: block;
        padding: 18px 11px;
        color: #000;
        text-align: center;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        background: #E8EAE6;
    }


    /*Main*/
    #top main {
        display: block;
        padding-top: 50px;
        height: calc(100vh - 130px);
    }
    .rotated-title {
        top: 50%;
        left: 40%;
        font-size: 60px;
    }


.section_e .rotated-title {
    top: 50%;
}


    #top main h1 {
        font-size: 60px;
    }
    #top main div.main_img {
        width: 100%;
        display: flex;
        height: calc(100vh - 180px);
    }
    #top main div.main_img::after {
        height: calc(100vh - 180px);
    }
    #top main div.main_img div.img {
        width: calc(100% / 1);
        height: calc(100vh - 180px);
    }
    #archive main {
        display: block;
        padding-top: 0;
        height: 400px;
        border-bottom: 10px solid #1C2B02;
    }

#archive main.tag {
        height: 60px;
}


    #archive main div.main_img {
        width: 100%;
        display: block;
        height: 390px;
    }
    #archive main div.main_img::after {
        content: "";
        display: block;
        background-color: rgba(0, 0, 0, 0.20);
        width: 100%;
        height: 390px;
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
    }
    #archive main div.main_img div.img {
        width: 100%;
        display: block;
        height: 390px;
    }
    #archive main div.main_img div.img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #single main {
        position: relative;
        display: block;
        padding-top: 0;
        max-height: auto;
        height: auto;
        border-bottom: none;
        overflow: hidden;
    }
    #single main div.main_img {
        position: relative;
        width: 100%;
        display: block;
        height: calc(100vh - 160px);
        max-height: 80vh;
        border-bottom: 10px solid #1C2B02;
        overflow: hidden;
    }
    #single main div.main_img::after {
        content: "";
        display: block;
        background-color: rgba(28, 43, 2, 0.60);
        width: 100%;
        height: calc(100vh - 160px);
        max-height: 80vh;
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
    }
    #single main div.main_img div.img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #single main div.main_img .ctgry {
        width: 100%;
        height: 100%;
        top: 14vw;
        bottom: auto;
        left: auto;
        right: 1vw;
        transform: none;
    }
    #single main div.main_img .ctgry p {
        color: #FFF;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
        font-size: 80px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        position: absolute;
        width: max-content;
        text-align: center;
        top: 0;
        right: 0;
        z-index: 1;
        transform: rotate(-90deg);
		display: none;
    }
    #single main div.main_text {
        position: relative;
        width: 100%;
        display: flex;
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #single main div.main_text h1 {
        text-align: center;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: clamp(20px, 7.7vw, 23px);
        font-style: normal;
        font-weight: 600;
        line-height: 1.54;
        padding-top: 27px;
        padding-bottom: 20px;
    }
    #single main div.main_text p {
        text-align: left;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875;
        padding-bottom: 40px;
    }
    /*Lead*/
    section.lead {
        padding-bottom: 30px;
        color: #000;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: 16px;
        text-align: justify;
    }
    section.lead h2 {
        color: #1C2B02;
        text-align: center;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.54;
        padding-top: 17px;
        padding-bottom: 33px;
    }
    section.lead h1 {
        text-align: center;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
        color: #1C2B02;
        font-size: 35px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.03;
        padding-top: 23px;
        padding-bottom: 14px;
    }

section.lead h1.jp {
    padding-top: 33px;
    font-size: 35px;
}


    section.lead p br {
        display: none;
    }
    /*section.section_a*/
    section.section_a {
        position: relative;
        padding-top: 0;
        padding-bottom: 90px;
    }
    section.section_a div.bnr {
        padding-top: 22px;
    }
    /*section.section_b*/
    section.section_b {
        position: relative;
        padding-top: 10px;
        padding-bottom: 50px;
    }
    body#single section.section_b {
        position: relative;
        padding-top: 60px;
        padding-bottom: 50px;
    }
    section.section_b h2 {
        font-size: 35px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        padding-bottom: 50px;
    }
    .section_b .category ul li {
        margin-right: 30px;
    }
    .section_b .category ul li:first-child {
        margin-left: 8vw;
    }
    .category ul li span {
        padding-top: 10px;
    }
    /* section.new_article*/
    section.new_article {
        position: relative;
        padding-top: 45px;
        padding-bottom: 35px;
        padding-left: clamp(8%, calc(50% - 590px), 50%);
        padding-right: clamp(8%, calc(50% - 550px), 50%);
        display: block;
        justify-content: space-between;
    }
    /*body#archive section.new_article*/
    body#archive section.new_article {
        width: 100%;
        position: relative;
        padding-top: 45px;
        padding-bottom: 35px;
        padding-left: clamp(8%, calc(50% - 590px), 50%);
        padding-right: clamp(8%, calc(50% - 550px), 50%);
        display: block;
        justify-content: space-between;
    }
    body#archive section.new_article div.view_more {
        width: max-content;
        margin: 0 auto;
        padding-bottom: 65px;
    }
    section.new_article .category {
        width: 100%;
    }
    /*body#archive section.new_article*/
    body#archive section.new_article .category {
        width: 100%;
    }
    section.new_article .category ul li {
        width: 100%;
        margin-right: 0;
        padding-bottom: 60px;
    }
    /*body#archive section.new_article*/
    body#archive section.new_article .category ul li {
        width: 100%;
        margin-right: 0;
        padding-bottom: 60px;
    }
    section.new_article .category ul li p {
        display: block;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.64;
    }
    body#archive section.new_article .category ul li:nth-child(even) {
        margin-right: 0;
    }
    body#archive section.new_article .category ul li:nth-child(3n) {
        margin-right: 0;
    }
    section.new_article .title-container {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    /* section.section_c*/
    section.section_c {
        position: relative;
        padding-top: 70px;
        padding-bottom: 10px;
        padding-left: clamp(8%, calc(50% - 590px), 50%);
        padding-right: clamp(8%, calc(50% - 550px), 50%);
        display: flex;
        background: #E8EAE6;
        justify-content: space-between;
    }
    section.section_c .category {
        width: 100%;
    }
    section.section_c .title-container {
        position: absolute;
        top: 15px;
        left: 0;
        z-index: 1;
    }
    section.section_c .category ul li {
        padding-bottom: 60px;
		position: relative;
        display: flex;
        width: 100%;
        align-content: center;
        align-items: center;
        flex-direction: column;
    }

    section.section_c .category ul li div.img {
        width: 100%;
        margin-right: 0;
    }
    section.section_c .category ul li div.text_area {
        width: 100%;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: space-between;
    }
    section.section_c .category ul li div.no {
        width: 70px;
        font-size: 50px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.2;
        /* 120% */
        text-transform: uppercase;
    }
    section.section_c .category ul li div.text {
        width: calc(100% - 80px);
    }
    section.section_c .category ul li p {
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.65;
    }
    section.section_c .category ul li p br {
        display: none;
    }
    /*section.section_d*/
    section.section_d {
        position: relative;
        padding-top: 60px;
        padding-bottom: 80px;
        width: 80%;
        margin: 0 auto;
        display: block;
    }
    section.section_d h2 {
        text-align: center;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
        font-size: 35px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        text-transform: uppercase;
    }
    section.section_d .category ul {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding: 0;
        margin: 0;
        list-style: none;
        margin: 0 auto;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .section_d .category ul li {
        width: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
        margin-right: 20px;
        padding-bottom: 30px;
    }
    .section_d .category ul li:nth-child(even) {
        margin-right: 0;
    }
    .section_d .category ul li h3 {
        padding-top: 15px;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        text-transform: uppercase;
    }
    /*section.section_e*/
    section.section_e {
        padding-top: 70px;
        padding-bottom: 70px;
        display: block;
    }
    section.section_e div.section_e {
        display: block;
    }
    section.section_e .title-container {
        position: absolute;
        top: 20px;
        left: 0;
        z-index: 1;
    }
    .halls {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .halls h3 {
        color: #000;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.64;
        padding: 20px;
    }
    .halls p {
        display: block;
        color: #000;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.67;
        padding: 0 20px;
    }
    .halls div.img {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
    }
    .halls div.txt {
        padding-top: 10px;
        width: 100%;
    }
    .halls dl {
        display: block;
        padding: 30px 20px 0;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.29;
    }
    .halls dt {
        display: block;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 2;
    }
    .halls dd {
        display: block;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 2;
    }
    .halls dd a {
        color: #000;
        text-decoration: underline;
    }
    /* div.sns*/
    div.sns {
        width: 100%;
        display: block;
        flex: none;
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid #000;
    }
    div.sns h3 {
        color: #000;
        text-align: center;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 2.11;
    }
    div.sns nav .list_sns {
        padding-top: 25px;
        display: flex;
        width: 117px;
        justify-content: space-between;
        padding-bottom: 10px;
        margin: 0 auto;
    }
    div.sns nav .list_sns img {
        width: auto;
        height: 29px;
    }
    /*section.article*/
    section.article {
        position: relative;
        padding-top: 57px;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        justify-content: space-between;
    }
    section.article div.article {
        width: 100%;
        max-width: 100%;
    }
    section.article div.article div.index {
        width: 100%;
        padding: 40px 10% 70px 10%;
        background-color: #E8EAE6;
    }
    section.article div.article div.index h2 {
        color: #1C2B02;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.2;
        text-transform: uppercase;
        padding-bottom: 0;
        text-align: left;
    }
	    section.article div.article div.index b.h2 {
			display: block;
        color: #1C2B02;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.2;
        text-transform: uppercase;
        padding-bottom: 0;
        text-align: left;
    }
	
	
    section.article div.article div.index ul {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: left;
    }
    section.article div.article div.index ul li a {
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: clamp(14px, 4.1vw, 16px);
        font-style: normal;
        font-weight: 600;
        line-height: 2;
        color: #000;
        padding-top: 20px;
        display: block;
        width: 100%;
        max-width: 100%;
    }
    section.article div.article .normal div.img {
        margin-bottom: 40px;
    }
    section.article div.article .normal {
        margin-top: 60px;
        margin-bottom: 32px;
        text-align: center;
        scroll-margin-top: 50px;
    }
    section.article div.article .repeat {
        margin: 0 auto;
        margin-top: 70px;
        scroll-margin-top: 50px;
        text-align: center;
        width: 82%;
    }
    section.article div.article .normal h3 {
        margin: 0 auto;
        margin-top: 40px;
        margin-bottom: 20px;
        font-size: clamp(20px, 6.6vw, 26px);
        font-style: normal;
        font-weight: 600;
        line-height: 1.6;
        width: 82%;
        text-align: left;
    }
    section.article div.article .repeat h3 {
        padding-bottom: 20px;
        margin-top: 0;
        margin-bottom: 38px;
        font-size: clamp(18px, 6.15vw, 24px);
        font-style: normal;
        font-weight: 600;
        line-height: 1.6;
        border-bottom: 5px solid #000;
        width: 100%;
        text-align: left;
    }
    section.article div.article .repeat h4 {
        margin-top: 50px;
        margin-bottom: 10px;
        font-size: 25px;
        font-size: clamp(16px, 5.4vw, 21px);
        font-style: normal;
        font-weight: 600;
        line-height: 1.68;
        text-align: left;
    }
    section.article div.article .repeat h4 br,
    section.article div.article .repeat h3 br,
    section.article div.article .normal h3 br {
        display: none;
    }
    section.article div.article .normal p {
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 32px;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875;
        max-width: 82%;
        text-align: left;
    }
    section.article div.article .repeat p {
        margin: 0 auto;
        margin-top: 15px;
        margin-bottom: 68px;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875;
        max-width: 100%;
        text-align: left;
    }
    div.recommend {
        margin: 0 auto;
        padding-top: 30px;
        padding-bottom: 34px;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875;
        max-width: 82%;
    }
    div.recommend h2 {
        color: #1C2B02;
        text-align: center;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
        font-size: 35px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        /* 100% */
        text-transform: uppercase;
        padding-bottom: 40px;
    }
	
    div.recommend b.h2 {
        color: #1C2B02;
        text-align: center;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
        font-size: 35px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        /* 100% */
        text-transform: uppercase;
        padding-bottom: 40px;
    }
	
	
    div.recommend .category ul li h3 {
        margin-left: auto;
        margin-right: auto;
        width: 88%;
    }
    div.recommend .category ul li p {
        margin-left: auto;
        margin-right: auto;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.64;
        padding-bottom: 10px;
        width: 88%;
    }
    div.recommend .category ul li {
        padding-bottom: 60px;
    }
    div.recommend .category ul li span {
        margin-left: auto;
        margin-right: auto;
        display: block;
        padding-top: 10px;
        width: 88%;
    }
    footer {
        color: #fff;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
        padding-top: 40px;
        padding-bottom: 20px;
        background-color: #1C2B02;
        padding-left: 10%;
        padding-right: 10%;
    }
    .foote_sns p.logo {
        display: block;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
        padding-bottom: 35px;
    }
    .foote_link_area {
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    .foote_sns {
        padding-right: 0;
    }
    .foote_link {
        padding-top: 5px;
        display: flex;
        flex-direction: column;
    }
    nav.sp .list_sns {
        padding-top: 25px;
        display: flex;
        width: 80px;
        justify-content: space-between;
        padding-bottom: 75px;
    }
    .list_sns img {
        width: auto;
    }
    footer .footer_ {
        display: flex;
        padding-right: 0;
        align-content: flex-end;
        align-items: flex-end;
        flex-direction: column;
    }
    footer .footer_ div {
        padding-left: 0;
        padding-bottom: 14px;
    }
    footer .footer_ div a {
        text-align: right;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.29;
    }
    footer small {
        padding-top: 14px;
        display: block;
        font-size: 14px;
    }
    #pickup,
    #new,
    #ranking,
    #wedding {
        scroll-margin-top: 50px;
    }
}


/*=============================Tablet=============================*/

@media screen and (min-width:768px) and (max-width:1024px) {
    #single .white .menu-btn {
        background: transparent url(../img/search_icn_w.png) center center no-repeat;
        background-size: contain;
        cursor: pointer;
    }
    #single header.white li a {
        color: #fff;
    }
    #single header.white li a:hover {
        color: #fff;
    }
    #single main {
        position: relative;
        display: block;
        padding-top: 0;
        max-height: auto;
        height: auto;
        border-bottom: none;
        overflow: hidden;
    }
    #single main div.main_img {
        position: relative;
        width: 100%;
        display: block;
        height: calc(100vh - 160px);
        max-height: 600px;
        border-bottom: 10px solid #1C2B02;
    }
    #single main div.main_img::after {
        content: "";
        display: block;
        background-color: rgba(28, 43, 2, 0.60);
        width: 100%;
        height: calc(100vh - 160px);
        max-height: 600px;
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
    }
    section.article {
        padding-left: 4%;
        padding-right: 4%;
    }
    section.article div.article {
        width: calc(100% - 300px);
        max-width: 800px;
    }
    #single main div.main_img div.img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #single main div.main_img .ctgry {
        width: 100%;
        height: 100%;
        top: 0;
        bottom: auto;
        left: auto;
        right: 0;
        transform: none;
    }
    #single main div.main_img .ctgry p {
        color: #FFF;
        font-family: libre-caslon-display, yu-gothic-pr6n, sans-serif;;
        font-size: 80px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        position: absolute;
        width: max-content;
        text-align: center;
        bottom: -10px;
        right: 0;
        z-index: 1;
        transform: rotate(-90deg);
        width: 100%;
    }
    #single main div.main_text {
        position: relative;
        width: 100%;
        display: flex;
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #single main div.main_text h1 {
        text-align: center;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: clamp(20px, 7.7vw, 26px);
        font-style: normal;
        font-weight: 600;
        line-height: 1.54;
        padding-top: 27px;
        padding-bottom: 20px;
    }
    #single main div.main_text p {
        text-align: left;
        font-family:  yu-gothic-pr6n, sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875;
        padding-bottom: 40px;
    }
    /*section.section_c*/
    section.section_c .category ul li a {
        position: relative;
        display: flex;
        width: 90%;
        align-content: center;
        align-items: center;
        flex-direction: column;
    }
    section.section_c .category ul li div.img {
        width: 100%;
        margin-right: 0;
    }
    section.section_c .category ul li div.text_area {
        width: 100%;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: space-between;
    }
    /*section.section_e*/
    .halls {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        padding-left: 50px;
    }
    .halls div.img {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
    }
    /*section.section_e*/
    .foote_sns {
        padding-right: 90px;
    }
}


/*==================================ANIME======================================*/

section:not(.lead) {
    opacity: 1;
}

.fade_on {
    animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) .5 forwards;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}