@charset "UTF-8";

/*==================================
共通部分
==================================*/

html {
  font-size: 62.5%;
}

:where(*, *:before, *:after) {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #fff;
  /*font-family: toppan-bunkyu-mincho-pr6n, serif;*/
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1rem;
}

/*__ フォント _______________________*/

.font-ja-01--n {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.font-ja-01--sb {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.font-ja-02--n {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}

.font-en-01--n {
  /*font-family: ltc-pabst-oldstyle, serif;*/
  font-family: "IM Fell DW Pica", serif;
  font-weight: 400;
  font-style: normal;
}

/*.font-en-02--n {
  font-family: "Kotta One", serif;
  font-weight: 400;
  font-style: normal;
}*/

.text-align-c {
  text-align: center !important;
}

.text-align-l {
  text-align: left !important;
}

.font-bold {
  font-weight: bold;
}

.current {
  color: #aaa;
}

@media (min-width: 1024px) {
  .for_sp {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .for_pc {
    display: none !important;
  }
}

/*__ 構造 _______________________*/

.wrapper {
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  #main {
    padding-top: 88px;
    margin-bottom: 200px;
  }

  .container {
    width: 80%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0;
  }
}

@media (max-width: 1023px) {
}

/*__ 見出し _______________________*/

@media (min-width: 1024px) {
  .title_h1 {
    font-size: 4rem;
    letter-spacing: 1rem;
    line-height: 1.5;
    text-align: center;
  }

  .title_h2 {
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: 1rem;
    text-align: center;
    margin-bottom: 40px;
  }

  .title_h3 {
    font-size: 2.6rem;
    line-height: 1.25;
    letter-spacing: 0.2rem;
    text-align: left;
    margin-bottom: 2rem;
  }
}

@media (max-width: 1023px) {
  .title_h1 {
    font-size: 3rem;
    letter-spacing: 1rem;
    line-height: 1.5;
    text-align: center;
  }

  .title_h2 {
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: 1rem;
    margin-bottom: 40px;
    text-align: center;
  }

  .title_h3 {
    font-size: 2.6rem;
    line-height: 1.25;
    letter-spacing: 0.2rem;
    text-align: left;
    margin-bottom: 2rem;
  }
}

/*__ リスト _______________________*/

li {
  list-style: none;
}

@media (min-width: 1024px) {
  .annotation-list {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    text-align: left;
    position: relative;
  }

  .annotation-list-item {
    margin-left: 2rem;
    margin-bottom: 5px;
  }

  .annotation-list-item::before {
    content: "※";
    position: absolute;
    left: 0;
  }
}

@media (max-width: 1023px) {
  .annotation-list {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    text-align: left;
    position: relative;
  }

  .annotation-list-item {
    margin-left: 2rem;
    margin-bottom: 8px;
  }

  .annotation-list-item::before {
    content: "※";
    position: absolute;
    left: 0;
  }
}

/*==================================
header
==================================*/

/*__ ロゴ _______________________*/

@media (min-width: 1024px) {
  .header-logo {
    position: fixed;
    top: 25px;
    left: 30px;
    width: 68px;
    height: 32px;
    z-index: 1001;
  }
}

@media (max-width: 1023px) {
  .header-logo {
    position: fixed;
    top: 26px;
    left: 20px;
    width: 34px;
    height: 16px;
    z-index: 1001;
  }
}

/*__ ハンバーガーメニュー _______________________*/

@media (min-width: 1024px) {
  .button-open {
    position: fixed;
    top: 0;
    right: 20px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    background: none;
    z-index: 1000;
  }

  .button-open span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 20px;
    height: 2px;
    background-color: #111;
  }

  .button-open span:nth-of-type(1) {
    top: 32px;
    width: 50%;
  }

  .button-open span:nth-of-type(2) {
    top: 46px;
    width: 30%;
  }

  .button-open.active span:nth-of-type(1) {
    top: 34px;
    left: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
  }

  .button-open.active span:nth-of-type(2) {
    top: 46px;
    left: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
  }

  .global-nav {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
  }

  .global-nav.panelactive {
    opacity: 1;
    z-index: 999;
  }

  .global-nav.panelactive .global-nav__inner {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .global-nav__list {
    display: none;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .global-nav.panelactive .global-nav__list {
    display: block;
  }

  .global-nav.panelactive .global-nav__item {
    text-align: center;
    font-size: 2.5rem;
    line-height: 3;
    letter-spacing: 0.5rem;
  }
}

@media (max-width: 1023px) {
  .button-open {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: none;
    z-index: 1000;
  }

  .button-open span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #111;
  }

  .button-open span:nth-of-type(1) {
    top: 20px;
    width: 50%;
  }

  .button-open span:nth-of-type(2) {
    top: 30px;
    width: 30%;
  }

  .button-open.active span:nth-of-type(1) {
    top: 20px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
  }

  .button-open.active span:nth-of-type(2) {
    top: 32px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
  }

  .global-nav {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
  }

  .global-nav.panelactive {
    opacity: 1;
    z-index: 999;
  }

  .global-nav.panelactive .global-nav__inner {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .global-nav__list {
    display: none;
    position: absolute;
    z-index: 999;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .global-nav.panelactive .global-nav__list {
    display: block;
  }

  .global-nav.panelactive .global-nav__item {
    text-align: center;
    font-size: 2.5rem;
    line-height: 3;
    letter-spacing: 0.5rem;
  }
}

/*==================================
TOP
==================================*/

@media (min-width: 1024px) {
  #main:has(#home) {
    padding: 0;
    margin: 0 auto 200px;
  }

  .container:has(#archive_blog),
  .container:has(#single_blog),
  .container:has(#taxonomy_blog_tag) {
    max-width: 1030px;
  }

  .flex-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  #first-view {
    position: relative;
    height: 100vh;
  }

  #first-view #slider {
    position: absolute;
    width: 70%;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: 1;
  }

  #first-view h1 {
    position: absolute;
    bottom: 16vh;
    left: 12vw;
    z-index: 3;
    font-size: 5vw;
    line-height: 2;
    letter-spacing: 3rem;
    text-shadow: 0px 0px 20px #ffffff;
  }
}

@media (max-width: 1023px) {
  #main {
    padding-top: 72px;
    margin-bottom: 200px;
  }

  #main:has(#home) {
    padding-top: 0;
    margin-bottom: 80px;
  }

  .container {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .flex-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  #first-view {
    position: relative;
    width: 100%;
    height: 100vh;
  }

  #first-view #slider {
    width: 100%;
    height: 100vh;
    z-index: 1;
  }

  #first-view h1 {
    position: absolute;
    bottom: 25vh;
    left: 12vw;
    z-index: 3;
    font-size: 12vw;
    line-height: 2;
    letter-spacing: 1.5rem;
    color: #ffffff;
    text-shadow: 0px 3px 20px #000000;
  }
}

/*__ top-about _______________________*/

@media (min-width: 1024px) {
  .home-title-02 {
    font-size: 4rem;
    letter-spacing: 1rem;
    text-align: center;
  }

  #home-about {
    /*width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);*/
    background-image: url("../img/index/about_bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-attachment: fixed;
    margin: 0 calc(50% - 50vw);
    padding: 80px 0;
  }

  .home-about__container {
    width: 80%;
    max-width: 1260px;
    padding: 80px 100px;
    margin: 0 auto;
    background-color: #fff;
  }

  .home-about__title {
    text-align: left;
  }

  .home-about__group {
    margin-top: 80px;
    margin-bottom: 0;
  }

  .home-title_h2 {
    text-align: left;
  }

  .home-about__left {
    display: block;
    width: 30%;
    height: auto;
  }

  .home-about__right {
    display: block;
    width: 65%;
    height: auto;
  }

  .profile-image {
    width: 100%;
    height: auto;
  }

  .profile-name {
    font-size: 5rem;
    line-height: 1;
    letter-spacing: 0.3rem;
  }

  .profile-name-en {
    font-size: 2rem;
    letter-spacing: 0.5rem;
  }

  .profile-text {
    font-size: 1.6rem;
    line-height: 2.5;
    letter-spacing: 0.2rem;
    margin-top: 50px;
  }

  .profile-strength {
    font-size: 2rem;
    margin-top: 60px;
  }

  .profile-strength_title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .profile-strength_text {
    font-size: 1.6rem;
    line-height: 3rem;
    margin-bottom: 0;
  }
}

@media (max-width: 1023px) {
  .home-title-02 {
    font-size: 3rem;
    letter-spacing: 1rem;
    text-align: center;
  }

  #home-about {
    background-image: url("../img/index/about_bg_sp.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-attachment: fixed;
    margin: 0 calc(50% - 50vw);
    padding: 48px calc(50vw - 50%);
  }

  .home-about__container {
    width: 98%;
    padding: 64px 30px;
    margin: 0 auto;
    background-color: #fff;
  }

  .home-about__group {
    display: block;
    margin-top: 64px;
    margin-bottom: 0;
  }

  .home-about__title {
    text-align: center;
  }

  .home-about__left {
    display: block;
    height: auto;
    text-align: center;
  }

  .home-about__right {
    display: block;
    height: auto;
  }

  .profile-image {
    width: 70%;
    max-width: 250px;
    height: auto;
  }

  .profile-name {
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: 0.5rem;
    text-align: center;
    margin-top: 32px;
  }

  .profile-name-en {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    text-align: center;
  }

  .profile-text {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin-top: 32px;
  }

  .profile-strength {
    font-size: 2rem;
    margin-top: 40px;
  }

  .profile-strength_title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .profile-strength_text {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin-bottom: 0;
  }
}

/*__ top-news _______________________*/

@media (min-width: 1024px) {
  #home #news_container {
    padding: 160px 0 0;
    /*width: 70%;
    min-width: 700px;*/
    margin: 0 auto;
  }

  .news_list {
    margin-top: 80px;
    border-top: 1px solid #e4e4e7;
  }

  .news_list .news_topic {
    border-bottom: 1px solid #e4e4e7;
    /*display: flex;*/
    padding: 20px;
  }

  .news_list .news_topic_link {
    display: flex;
    width: 100%;
    align-items: center;
  }

  .news-date {
    width: 25%;
    color: #71717b;
    letter-spacing: 0.5rem;
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 0;
  }

  .news-title {
    width: 75%;
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
  }

  .news_all {
    text-align: left;
    margin-bottom: 0;
  }

  .link_arrow_text {
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.1rem;
  }

  .link_arrow_text a {
    margin-left: 2rem;
  }

  .link_arrow_text a::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid #9f9fa9;
    border-right: 1px solid #9f9fa9;
    transform: rotate(45deg);
    transition: all 0.3s;
  }

  .link_arrow_text a:hover::before {
    left: 5px;
  }
}

@media (max-width: 1023px) {
  #home #news_container {
    padding: 80px 0 0;
  }

  .news_list {
    margin: 48px auto 0;
    border-top: 1px solid #e4e4e7;
  }

  .news_list .news_topic {
    border-bottom: 1px solid #e4e4e7;
    padding: 12px 0 16px;
  }

  .news-date {
    letter-spacing: 0.5rem;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #71717b;
    margin-bottom: 4px;
    margin: 0;
  }

  .news-title {
    margin-left: 0;
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
  }

  .link_arrow_text {
    position: relative;
    margin: 24px auto 0;
    display: inline-block;
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: 0.1rem;
  }

  .link_arrow_text a {
    margin-left: 1.5rem;
  }

  .link_arrow_text a::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid #9f9fa9;
    border-right: 1px solid #9f9fa9;
    transform: rotate(45deg);
    transition: all 0.3s;
  }

  .link_arrow_text a:active::before {
    left: 5px;
  }
}

/*__ top-gallery _______________________*/

@media (min-width: 1024px) {
  #home #gallery_container {
    padding: 160px 0 0;
  }

  #home #gallery_container .flex-container {
    margin-top: 120px;
    flex-wrap: wrap;
  }

  #home .gallery_box {
    position: relative;
    overflow: hidden;
    width: 48%;
    height: 70vh;
  }

  #home .gallery_box:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  #home .gallery_box#gallery_oil:after {
    background: url("../img/index/oilpaintings.webp");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
  }

  #home .gallery_box#gallery_illust:after {
    background: url("../img/index/illustrations.webp");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
  }

  #home .gallery_box:hover:after {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  #home .gallery_box_inner {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0px 2px 14px rgba(0, 0, 0, 0.3);
    z-index: 10;
  }

  #home p.gallery_title {
    font-size: 3vw;
    letter-spacing: 1rem;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
  }

  #home-gallery .btn_line {
    display: block;
    padding: 5px 18px 18px 18px;
    text-align: center;
    font-size: 3rem;
    letter-spacing: 1rem;
    color: #fff;
    width: 80%;
    margin: 0 auto;
    border: 2px solid #fff;
  }

  #home-gallery .btn_line:hover {
    background: rgba(255, 255, 255, 0.4);
    mix-blend-mode: screen;
    border: 2px solid #fff;
    text-shadow: none;
  }

  #home-gallery .btn_line:hover::after {
    border-color: #fff;
  }
}

@media (max-width: 1023px) {
  #home #gallery_container {
    padding: 80px 0 0;
  }

  #home #gallery_container .flex-container {
    display: block;
    margin-top: 64px;
  }

  #home .gallery_box {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 45vh;
    min-height: 300px;
  }

  #home .gallery_box:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  #home .gallery_box#gallery_oil {
    /*margin: 0 calc(50% - 50vw);*/
    box-sizing: content-box;
    margin: 0 5vw;
  }

  #home .gallery_box#gallery_illust {
    box-sizing: content-box;
    margin: 40px -5vw 0;
  }

  #home .gallery_box#gallery_oil:after {
    background: url("../img/index/oilpaintings.webp");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
  }

  #home .gallery_box#gallery_illust:after {
    background: url("../img/index/illustrations.webp");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
  }

  #home .gallery_box:hover:after {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  #home .gallery_box_inner {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0px 2px 14px rgba(0, 0, 0, 0.3);
    z-index: 10;
  }

  #home #gallery_oil .gallery_box_inner {
    left: 46%;
  }

  #home #gallery_illust .gallery_box_inner {
    left: 57.1%;
  }

  #home p.gallery_title {
    font-size: 8vw;
    letter-spacing: 0.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
  }

  #home-gallery .btn_line {
    display: block;
    padding: 7px 10px 10px 10px;
    text-align: center;
    font-size: 5vw;
    letter-spacing: 1rem;
    color: #fff;
    width: 70%;
    margin: 0 auto;
    border: 2px solid #fff;
  }

  #home-gallery .btn_line:hover {
    background: rgba(255, 255, 255, 0.4);
    mix-blend-mode: screen;
    border: 2px solid #fff;
    text-shadow: none;
  }

  #home-gallery .btn_line:hover::after {
    border-color: #fff;
  }
}

/*__ top-works _______________________*/

@media (min-width: 1024px) {
  #home-works {
    margin: 160px 0 0;
  }

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

  .worksblog_box:before {
    content: "";
    display: block;
    padding-top: 386px;
  }

  .worksblog_title {
    position: absolute;
    width: 45%;
    height: 356px;
    box-sizing: border-box;
    background-color: #fff;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    z-index: 3;
    display: table;
  }

  #works .worksblog_title {
    top: 0;
    left: 0;
  }

  #blog .worksblog_title {
    top: 0;
    right: 0;
  }

  .worksblog_title_inner {
    display: table-cell;
    vertical-align: middle;
  }

  .worksblog_title h2 {
    font-size: 2vw;
    line-height: 2;
    letter-spacing: 1.5rem;
    margin-bottom: 30px;
  }

  .worksblog_bg {
    position: absolute;
    top: 30px;
    z-index: 1;
  }

  .worksblog_bg img {
    width: 100%;
    height: 356px;
    object-fit: cover;
  }

  #works .worksblog_bg {
    right: 0;
  }

  #blog .worksblog_bg {
    left: 0;
  }

  .btn_fill {
    display: inline-block;
    text-align: center;
    font-size: 1.5vw;
    letter-spacing: 1rem;
    color: #fff;
    border: 1px solid #111;
    background-color: #111;
    width: 60%;
    padding: 10px 20px 20px 20px;
    box-sizing: border-box;
    position: relative;
    transition: ease 0.2s;
  }

  .btn_line {
    display: inline-block;
    text-align: center;
    font-size: 1.5vw;
    letter-spacing: 1rem;
    color: #111;
    border: 1px solid #111;
    background: none;
    width: 60%;
    padding: 10px 20px 20px 20px;
    box-sizing: border-box;
    position: relative;
    transition: ease 0.2s;
  }

  .btn_fill:hover {
    color: #111;
    background: none;
  }

  .btn_arrow::after {
    content: "";
    position: absolute;
    top: 45%;
    right: 20px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: all 0.3s;
  }

  .btn_arrow:hover::after {
    right: 12px;
    border-color: #111;
  }

  .btn_blank::after {
    content: "";
    position: absolute;
    top: 37%;
    right: 20px;
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14px 14px"><path fill="%23ffffff" d="M12.62,9a.27.27,0,0,0-.27.27v3.75a.39.39,0,0,1-.39.39H.94a.38.38,0,0,1-.39-.39V2a.39.39,0,0,1,.39-.39H4.69A.27.27,0,0,0,5,1.38a.28.28,0,0,0-.27-.28H.94A.94.94,0,0,0,0,2v11A.94.94,0,0,0,.94,14H12a.94.94,0,0,0,.94-.94V9.31A.28.28,0,0,0,12.62,9Z"/><path fill="%23ffffff" d="M13.73.28h0A1,1,0,0,0,13.06,0H7.55a.27.27,0,0,0-.27.28.27.27,0,0,0,.27.27h5.51L3.28,10.33a.27.27,0,0,0,0,.39.24.24,0,0,0,.19.08.27.27,0,0,0,.2-.08L13.45,1v5.5a.28.28,0,0,0,.55,0V.94A.92.92,0,0,0,13.73.28Z"/></svg>');
    transition: all 0.3s;
  }

  .btn_blank:hover::after {
    right: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14px 14px"><path fill="%23111111" d="M12.62,9a.27.27,0,0,0-.27.27v3.75a.39.39,0,0,1-.39.39H.94a.38.38,0,0,1-.39-.39V2a.39.39,0,0,1,.39-.39H4.69A.27.27,0,0,0,5,1.38a.28.28,0,0,0-.27-.28H.94A.94.94,0,0,0,0,2v11A.94.94,0,0,0,.94,14H12a.94.94,0,0,0,.94-.94V9.31A.28.28,0,0,0,12.62,9Z"/><path fill="%23111111" d="M13.73.28h0A1,1,0,0,0,13.06,0H7.55a.27.27,0,0,0-.27.28.27.27,0,0,0,.27.27h5.51L3.28,10.33a.27.27,0,0,0,0,.39.24.24,0,0,0,.19.08.27.27,0,0,0,.2-.08L13.45,1v5.5a.28.28,0,0,0,.55,0V.94A.92.92,0,0,0,13.73.28Z"/></svg>');
  }

  .worksblog_box + .worksblog_box {
    margin-top: 160px;
  }
}

@media (max-width: 1023px) {
  #home-works {
    margin-top: 80px;
  }

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

  .worksblog_title {
    text-align: center;
    z-index: 3;
    display: block;
  }

  #works .worksblog_title {
    top: 0;
    left: 0;
  }

  #blog .worksblog_title {
    top: 0;
    right: 0;
  }

  .worksblog_title_inner {
    display: block;
  }

  .worksblog_title h2 {
    font-size: 7vw;
    line-height: 1.8;
    letter-spacing: 1rem;
    margin: 10px auto 8px;
  }

  .worksblog_bg img {
    width: 100%;
    height: auto;
  }

  .btn_fill {
    display: inline-block;
    text-align: center;
    font-size: 5vw;
    letter-spacing: 1rem;
    color: #fff;
    border: 1px solid #111;
    background-color: #111;
    width: 70%;
    padding: 7px 12px 12px 12px;
    box-sizing: border-box;
    position: relative;
    transition: ease 0.2s;
  }

  .btn_line {
    display: inline-block;
    text-align: center;
    font-size: 5vw;
    letter-spacing: 1rem;
    color: #111;
    border: 1px solid #111;
    background: none;
    width: 70%;
    padding: 7px 12px 12px 12px;
    box-sizing: border-box;
    position: relative;
    transition: ease 0.2s;
  }

  .btn_fill:active {
    color: #111;
    background: none;
  }

  .btn_arrow::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 20px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: all 0.3s;
  }

  .btn_arrow:active::after {
    right: 12px;
    color: #fff;
    border-color: #111;
  }

  .btn_blank::after {
    content: "";
    position: absolute;
    top: 37%;
    right: 20px;
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14px 14px"><path fill="%23ffffff" d="M12.62,9a.27.27,0,0,0-.27.27v3.75a.39.39,0,0,1-.39.39H.94a.38.38,0,0,1-.39-.39V2a.39.39,0,0,1,.39-.39H4.69A.27.27,0,0,0,5,1.38a.28.28,0,0,0-.27-.28H.94A.94.94,0,0,0,0,2v11A.94.94,0,0,0,.94,14H12a.94.94,0,0,0,.94-.94V9.31A.28.28,0,0,0,12.62,9Z"/><path fill="%23ffffff" d="M13.73.28h0A1,1,0,0,0,13.06,0H7.55a.27.27,0,0,0-.27.28.27.27,0,0,0,.27.27h5.51L3.28,10.33a.27.27,0,0,0,0,.39.24.24,0,0,0,.19.08.27.27,0,0,0,.2-.08L13.45,1v5.5a.28.28,0,0,0,.55,0V.94A.92.92,0,0,0,13.73.28Z"/></svg>');
    transition: all 0.3s;
  }

  .btn_blank:active::after {
    right: 12px;
    color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14px 14px"><path fill="%23111111" d="M12.62,9a.27.27,0,0,0-.27.27v3.75a.39.39,0,0,1-.39.39H.94a.38.38,0,0,1-.39-.39V2a.39.39,0,0,1,.39-.39H4.69A.27.27,0,0,0,5,1.38a.28.28,0,0,0-.27-.28H.94A.94.94,0,0,0,0,2v11A.94.94,0,0,0,.94,14H12a.94.94,0,0,0,.94-.94V9.31A.28.28,0,0,0,12.62,9Z"/><path fill="%23111111" d="M13.73.28h0A1,1,0,0,0,13.06,0H7.55a.27.27,0,0,0-.27.28.27.27,0,0,0,.27.27h5.51L3.28,10.33a.27.27,0,0,0,0,.39.24.24,0,0,0,.19.08.27.27,0,0,0,.2-.08L13.45,1v5.5a.28.28,0,0,0,.55,0V.94A.92.92,0,0,0,13.73.28Z"/></svg>');
  }

  .worksblog_box + .worksblog_box {
    margin-top: 100px;
  }
}

/*__ top-contact _______________________*/

@media (min-width: 1024px) {
  .home-contact__container {
    padding: 160px 0 0;
    margin: 0 auto;
    width: 70%;
  }

  .contact-description {
    margin: 64px auto 40px;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.1rem;
    text-align: center;
  }

  .contact-notice {
    margin-bottom: 40px;
  }

  .wpcf7-form .cf7__item {
    margin-bottom: 16px;
  }

  .wpcf7-form .contact__label {
    font-size: 2.2rem;
    letter-spacing: 0.4rem;
    text-align: left;
    margin-bottom: 8px;
  }

  .wpcf7-form input,
  .wpcf7-form textarea {
    font-weight: 400;
    font-style: normal;
  }

  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"] {
    width: 100%;
    height: 5rem;
    margin-bottom: 0;
  }

  .wpcf7-form textarea {
    width: 100%;
    height: 30rem;
  }

  .wpcf7-not-valid-tip {
    font-size: 1.2rem!important;
    letter-spacing: 0.1rem;
    text-align: left;
    line-height: 2;
  }

  .wpcf7-form-control {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    text-align: left;
    line-height: 1.5;
  }

  .wpcf7-form .cf7__button {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
  }

  .wpcf7-form input[type="submit"] {
    width: 50%;
    line-height: 1.6;
    display: inline-block;
    text-align: center;
    font-size: 1.5vw;
    letter-spacing: 1rem;
    color: #fff;
    padding: 10px 20px 15px;
    box-sizing: border-box;
    position: relative;
    transition: ease 0.2s;
    margin-bottom: 0;
  }

  .wpcf7-form input[type="submit"]:hover {
    background-color: #fff;
    color: #111;
    border: 1px solid #111;
  }

  .wpcf7-form input[type="reset"] {
    width: 50%;
    background-color: #fff;
    color: #111;
    border: 1px solid #111;
    line-height: 1.6;
    display: inline-block;
    text-align: center;
    font-size: 1.5vw;
    letter-spacing: 1rem;
    color: #111;
    padding: 10px 20px 15px;
    box-sizing: border-box;
    position: relative;
    transition: ease 0.2s;
    margin-bottom: 0;
  }

  .wpcf7-form input[type="reset"]:hover {
    background-color: #111;
    color: #fff;
    border: 1px solid #111;
  }

  span.wpcf7-spinner {
    display: none;
  }

  .cf7-form-wrap .wpcf7 form .wpcf7-response-output {
    margin: 2em 0 0;
    padding: 1rem;
    background-color: #fafafa;
    border: 1px solid #b9b2b1;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    line-height: 1.6;
    text-align: center;
  }

  .cf7-form-wrap .wpcf7 form.invalid .wpcf7-response-output,
  .cf7-form-wrap .wpcf7 form.unaccepted .wpcf7-response-output,
  .cf7-form-wrap .wpcf7 form.payment-required .wpcf7-response-output {
    background-color: #fafafa;
    border: 1px solid #b9b2b1;
  }

  .cf7-form-wrap .wpcf7 form.sent .wpcf7-response-output {
    border: 1px solid #b9b2b1;
  }

  input:-webkit-autofill {
    box-shadow: 0 0 0 1000px #fafafa inset;
  }

  .wpcf7-turnstile {
    text-align: center;
  }
}

@media (max-width: 1023px) {
  .home-contact__container {
    padding: 80px 0 0;
  }

  .contact-description {
    margin: 40px auto 24px;
    font-size: 1.3rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    text-align: center;
  }

  .contact-notice {
    margin: 0 auto 24px;
  }

  .cf7-form-wrap {
    width: 100%;
    margin: 0 auto;
  }

  .cf7-form__group {
    margin-top: 8px;
  }

  .cf7__item {
    margin-bottom: 16px;
  }

  .cf7__item:last-child {
    margin-bottom: 0;
  }

  .wpcf7-form .contact__label {
    font-size: 1.8rem;
    letter-spacing: 0.4rem;
    text-align: left;
    margin-bottom: 8px;
  }

  .wpcf7-form input,
  .wpcf7-form textarea {
    font-weight: 400;
    font-style: normal;
  }

  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"] {
    width: 100%;
    height: 5rem;
    margin-bottom: 0;
  }

  .wpcf7-form textarea {
    width: 100%;
    height: 30rem;
  }

  .wpcf7-not-valid-tip {
    font-size: 1.2rem!important;
    letter-spacing: 0.1rem;
    text-align: left;
    line-height: 2;
  }

  .wpcf7-form-control {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .cf7__button {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .wpcf7-form input[type="submit"] {
    width: 50%;
    line-height: 1.6;
    display: inline-block;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    color: #fff;
    padding: 7px 0 10px;
    box-sizing: border-box;
    position: relative;
    transition: none;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0;
    outline: none;
  }

  .wpcf7-form input[type="submit"]:active {
    background-color: #fff;
    color: #111;
    border: 1px solid #111;
  }

  .wpcf7-form input[type="reset"] {
    width: 50%;
    background-color: #fff;
    border: 1px solid #111;
    line-height: 1.6;
    display: inline-block;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    color: #111;
    padding: 7px 0 10px;
    box-sizing: border-box;
    position: relative;
    transition: none;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0;
  }

  .wpcf7-form input[type="reset"]:active {
    background-color: #111;
    color: #fff;
    border: 1px solid #111;
  }

  span.wpcf7-spinner {
    display: none;
  }

  .cf7-form-wrap .wpcf7 form .wpcf7-response-output {
    margin: 2em 0 0;
    padding: 1rem;
    background-color: #fafafa;
    border: 1px solid #b9b2b1;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    line-height: 1.4;
    text-align: center;
  }

  .cf7-form-wrap .wpcf7 form.invalid .wpcf7-response-output,
  .cf7-form-wrap .wpcf7 form.unaccepted .wpcf7-response-output,
  .cf7-form-wrap .wpcf7 form.payment-required .wpcf7-response-output {
    background-color: #fafafa;
    border: 1px solid #b9b2b1;
  }

  .cf7-form-wrap .wpcf7 form.sent .wpcf7-response-output {
    border: 1px solid #b9b2b1;
  }

  input:-webkit-autofill {
    box-shadow: 0 0 0 1000px #fafafa inset;
  }

  .wpcf7-turnstile {
    text-align: center;
  }
}

/*==================================
footer
==================================*/

@media (min-width: 1024px) {
  #footer {
    /*width: 100vw;
    left: 50%;
    transform: translateX(-50%);*/
    position: relative;
    color: #fff;
    background-image: url(../img/common/footer_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-attachment: fixed;
    margin: 0 calc(50% - 50vw);
    padding: 104px 0 20px;
  }

  .footer__container {
    width: 80%;
    max-width: 1260px;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .footer__inner {
    margin-bottom: 80px;
  }

  .footer__title {
    width: 60%;
  }

  .footer__title p {
    font-size: 7rem;
    letter-spacing: 2rem;
  }

  .footer-nav {
    width: 20%;
    border-left: solid 1px #fff;
    padding: 0 30px;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0.2rem;
  }

  .footer-nav__list {
    margin-bottom: 0;
  }

  .footer-nav__item {
    margin-bottom: 40px;
  }

  .footer-nav__item:last-child {
    margin-bottom: 0;
  }

  .footer-nav__item.footer_ul_parent {
    margin-bottom: 30px;
  }

  .footer-nav__item a {
    color: #fff;
  }

  .footer-nav__list ul {
    font-size: 60%;
    margin-bottom: 40px;
  }

  .footer-nav__list ul li {
    margin-bottom: 20px;
  }

  .footer-nav__item ul li {
    margin-top: 20px;
  }

  .footer-other {
    width: 20%;
    border-left: solid 1px #fff;
    padding: 0 30px;
  }

  .footer-sns {
    justify-content: flex-start;
  }

  .footer-sns svg {
    margin-right: 30px;
  }

  p.footer-prohibitions {
    font-size: 1rem;
    line-height: 2.1;
    letter-spacing: 0.2rem;
  }

  .footer-copyright {
    font-size: 1rem;
    letter-spacing: 0.3rem;
    text-align: center;
  }

  #footer-button-top {
    position: absolute;
    bottom: 50px;
    right: 60px;
  }

  .button-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
  }

  .button-top::after {
    content: "";
    width: 14px;
    height: 14px;
    margin-top: 7px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
  }

  .button-top:hover {
    background: rgba(255, 255, 255, 0.4);
  }
}

@media (max-width: 1023px) {
  #footer {
    position: relative;
    color: #fff;
    background-image: url(../img/common/footer_bg_sp.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-attachment: fixed;
    margin: 0 calc(50% - 50vw);
    padding: 52px calc(50vw - 50%) 20px;
  }

  .footer__container {
    width: 90%;
    margin: 0 auto;
  }

  .footer__inner {
    display: block;
    margin-bottom: 32px;
  }

  .footer__title p {
    font-size: 8vw;
    letter-spacing: 1.5rem;
    margin-bottom: 52px;
  }

  .footer-nav {
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0.2rem;
  }

  .footer__container .footer-nav.flex-container {
    display: flex;
  }

  .footer__container .footer-nav.flex-container .footer-nav__list {
    width: 48%;
  }

  .footer-nav ul {
    margin-bottom: 0;
  }

  .footer-nav ul li {
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: 0.3rem;
  }

  .footer-nav ul li:last-child {
    margin-bottom: 0;
  }

  .footer-nav ul li.footer_ul_parent {
    margin-bottom: 30px;
  }

  .footer-nav ul li a {
    color: #fff;
  }

  .footer-nav ul ul li {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }

  .footer-nav ul ul li {
    margin-bottom: 20px;
  }

  .footer-nav ul li ul li {
    margin-top: 20px;
  }

  .footer-other {
    width: 48%;
    margin-bottom: 56px;
  }

  .footer-sns {
    justify-content: flex-start;
  }

  .footer-sns svg {
    margin-right: 30px;
  }

  p.footer-prohibitions {
    font-size: 1.2rem;
    line-height: 2.1;
    letter-spacing: 0.2rem;
  }

  .footer-copyright {
    font-size: 1rem;
    letter-spacing: 0.2rem;
    text-align: center;
  }

  #footer-button-top {
    position: absolute;
    bottom: 60px;
    right: 4.5vw;
  }

  .button-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
  }

  .button-top::after {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 5px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
  }

  .button-top:active {
    background: rgba(255, 255, 255, 0.4);
  }
}

a.jlink {
  color: #fff;
}

/*==================================
下層 gallery
==================================*/

.gallery .gallery_box img {
  transition: filter 0.15s ease;
  filter: brightness(1);
}

.gallery .gallery_box img:hover {
  filter: opacity(0.9) brightness(1.1);
}

@media (min-width: 1024px) {
  .gallery .title_h2 {
    font-size: 2.2rem;
  }

  .gallery .gallery_box {
    margin-bottom: 40px;
  }

  .gallery .gallery_box img {
    height: 110px;
    margin-right: 7px;
    margin-bottom: 4px;
  }
}

@media (max-width: 1023px) {
  .gallery .title_h2 {
    font-size: 2.2rem;
  }

  .gallery .gallery_box {
    margin-bottom: 30px;
  }

  .gallery .gallery_box img {
    height: 90px;
    width: auto;
    margin-right: 6px;
    margin-bottom: 4px;
  }
}

/*==================================
下層 works
==================================*/

/*__ works-works _______________________*/

@media (min-width: 1024px) {
  #page_works .works_flex {
    width: 100%;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  #page_works div.inner {
    margin-top: 100px;
  }

  #page_works .works_flex img {
    width: 100%;
    height: auto;
    object-fit: scale-down;
  }

  #page_works .works_flex span {
    letter-spacing: 0.5rem;
    line-height: 2;
  }

  #page_works div.works_box {
    width: 33.3%;
    margin-bottom: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 1023px) {
  #page_works .works_flex {
    width: 100%;
    flex-wrap: wrap;
  }

  #page_works div.inner {
    margin-top: 64px;
  }

  #page_works div.works_box {
    margin: 0 auto 32px;
  }

  #page_works .works_flex img {
    width: 100%;
    height: auto;
    object-fit: scale-down;
  }

  #page_works .works_flex span {
    letter-spacing: 0.5rem;
    line-height: 2;
  }
}

/*__ works-exhibitions _______________________*/

@media (min-width: 1024px) {
  .exhibitions_container .works_flex {
    width: 100%;
  }

  .exhibitions_container div.inner {
    margin-top: 100px;
  }

  .exhibitions_container div.inner h3 {
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: 1rem;
    margin-bottom: 40px;
  }

  .exhibitions_container img {
    max-width: 100%;
    height: auto;
  }

  .exhibitions_container div#dm p,
  .commentary {
    font-size: 1.6rem;
    line-height: 2.5;
    letter-spacing: 0.2rem;
    margin-top: 30px;
    text-align: center;
  }

  .exhibitions_container div#dm p.dm_message {
    margin-top: 50px;
  }

  .exhibitions_container div#dm img {
    text-align: center;
  }

  .exhibitions_container div#scene {
    margin-top: 100px;
    text-align: center;
  }

  .exhibitions_container div#scene img,
  .exhibitions_container div#scene video {
    margin-bottom: 20px;
  }

  .exhibitions_container div#scene video {
    width: 100%;
    max-width: 1200px;
    height: auto;
  }

  .exhibitions_container div#scene div.icon_box {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }

  .exhibitions_container div#scene div.icon_box.w900 {
    max-width: 900px;
  }

  .exhibitions_container div#scene div.icon_box p.baloon {
    margin-bottom: 0;
    position: absolute;
    bottom: 20px;
    right: 28px;
    width: 30px;
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.9));
  }

  .exhibitions_container div#scene div.icon_box p.baloon + p.baloon {
    right: 84px;
  }

  .modaal-content-container {
    padding: 30px 50px;
  }

  .commentary p {
    text-align: left;
  }

  .exhibitions_container #place {
    padding: 50px 0;
    margin-top: 100px;
    border: 1px solid #e4e4e7;
    text-align: center;
  }

  .exhibitions_container #place h3 {
    margin-top: 0;
  }

  .place__title {
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: 0.2rem;
  }

  .place__text {
    font-size: 1.6rem;
    line-height: 2.5;
    letter-spacing: 0.2rem;
    margin-bottom: 0;
  }

  .exhibitions_container .blog {
    margin-top: 50px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.5;
    letter-spacing: 0.2rem;
  }
}

@media (max-width: 1023px) {
  .exhibitions_container div.inner {
    margin-top: 0;
  }

  .exhibitions_container div.inner h3 {
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: 1rem;
    margin-bottom: 40px;
  }

  .exhibitions_container p {
    text-align: center;
  }

  .exhibitions_container img {
    max-width: 100%;
    height: auto;
  }

  .exhibitions_container div#dm div.dm_message,
  .exhibitions_container div.commentary p {
    font-size: 1.4rem;
    line-height: 2.5;
    letter-spacing: 0.1rem;
    margin-top: 32px;
  }

  .exhibitions_container div#dm div.dm_message div.dm_message_block {
    margin-bottom: 2.5rem;
  }

  .exhibitions_container div#dm div.dm_message div.dm_message_block p {
    margin-bottom: 1.5rem;
  }

  .exhibitions_container div#scene {
    margin-top: 50px;
    text-align: center;
  }

  .exhibitions_container div#scene img {
    margin-bottom: 0.5rem;
  }

  .exhibitions_container div#scene div.icon_box {
    position: relative;
  }

  .exhibitions_container div#scene div.icon_box p.baloon {
    margin-bottom: 0;
    position: absolute;
    bottom: 10px;
    right: 14px;
    width: 20px;
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.9));
  }

  .exhibitions_container div#scene div.icon_box p.baloon + p.baloon {
    right: 48px;
  }

  .modaal-content-container {
    padding: 30px;
  }

  .exhibitions_container div.commentary h3 {
    text-align: center;
  }

  .exhibitions_container div.commentary p {
    text-align: left;
  }

  .exhibitions_container #scene video {
    width: 100%;
    height: auto;
  }

  .exhibitions_container #place {
    padding: 30px;
    margin-top: 50px;
    border: 1px solid #e4e4e7;
  }

  .place__title {
    font-size: 2.2rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
  }

  .place__text {
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 2.5;
    letter-spacing: 0.1rem;
  }

  .exhibitions_container .blog {
    margin-top: 24px;
    text-align: center;
    font-size: 1.4rem;
    line-height: 2.5;
    letter-spacing: 0.1rem;
  }
}

/*==================================
下層 news
==================================*/

@media (min-width: 1024px) {
  .news_container .news_list {
    margin-bottom: 24px;
  }

  .pagination_01 .nav-links {
    display: flex;
    justify-content: center;
  }

  .pagination_01 .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 40px;
    height: 40px;
    margin: 0 4px;
  }

  .pagination_01 .page-numbers.current {
    color: #111;
    background-color: #f4f4f5;
  }

  .pagination_01 .page-numbers.next,
  .pagination_01 .page-numbers.prev {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
  }

  .news_container .news_title {
    text-align: left;
    font-size: 2.4rem;
    line-height: 2;
    letter-spacing: 0.2rem;
    margin-bottom: 48px;
  }

  .news_container .news_date,
  .blog_wrapper .blog_date,
  .blog_wrapper .blog_catalog_date {
    letter-spacing: 0.5rem;
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #71717b;
  }

  .news_container .news_category a,
  .blog_wrapper .blog_tag a {
    background-color: #f4f4f5;
    font-size: 1.2rem;
    padding: 4px;
  }

  #taxonomy_blog_tag .post-tax {
    margin-bottom: 40px;
  }

  #taxonomy_blog_tag .post-tax li {
    text-align: center;
  }

  #taxonomy_blog_tag .post-tax a {
    display: block;
    pointer-events: none;
  }
}

@media (max-width: 1023px) {
  .news_container .news_list {
    margin-bottom: 24px;
  }

  .pagination_01 .nav-links {
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
  }

  .pagination_01 .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 40px;
    height: 40px;
    margin: 0 4px;
  }

  .pagination_01 .page-numbers.current {
    color: #111;
    background-color: #f4f4f5;
  }

  .pagination_01 .page-numbers.next,
  .pagination_01 .page-numbers.prev {
    font-family: toppan-bunkyu-mincho-pr6n, serif;
  }

  .news_container .news_title {
    text-align: left;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.2rem;
    margin-bottom: 40px;
    font-weight: bold;
  }

  .news_container .news_date,
  .blog_wrapper .blog_date,
  .blog_wrapper .blog_catalog_date {
    letter-spacing: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #71717b;
  }

  .news_container .news_category a,
  .blog_wrapper .blog_tag a {
    background-color: #f4f4f5;
    font-size: 1.2rem;
    padding: 4px;
  }

  #single_news .news_text p {
    font-size: 1.4rem;
  }

  #taxonomy_blog_tag .post-tax {
    margin-bottom: 40px;
  }

  #taxonomy_blog_tag .post-tax li {
    text-align: center;
  }

  #taxonomy_blog_tag .post-tax a {
    display: block;
    pointer-events: none;
  }
}

/*==================================
下層 blog
==================================*/

@media (min-width: 1024px) {
  .blog_wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
  }

  .blog_wrapper > section {
    flex-grow: 1;
  }

  .blog .title_h1 {
    margin-bottom: 80px;
  }

  .blog.container {
    max-width: 1024px;
  }

  .side {
    width: 240px;
  }

  .side section {
    margin-bottom: 40px;
  }

  .side .side_h2 {
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 1rem;
    margin-bottom: 16px;
  }

  .side .blog_side_lists {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
  }

  .side .blog_side_lists li {
    margin-bottom: 8px;
  }

  #single_blog .blog_title {
    text-align: left;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.2rem;
    margin-bottom: 24px;
  }

  .blog_main {
    max-width: 720px;
  }

  .blog_article {
    margin-bottom: 40px;
  }

  .blog_featured_image img {
    max-width: 100%;
    height: auto;
  }

  .blog_main_text p {
    font-size: 1.6rem;
    line-height: 2.2;
  }

  .blog-article__bottom {
    margin-bottom: 0;
  }

  .single-link__text {
    margin-bottom: 0;
  }

  .single-link__text a::before {
    top: 20%;
  }

  .sns__container {
    margin-bottom: 40px;
  }

  .sns__list {
    display: flex;
    gap: 32px;
    justify-content: center;
  }

  .sns-list__item {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
  }

  .sns-link__img {
    position: absolute;
  }

  .sns-link__img--hover {
    opacity: 0;
  }

  /*.sns-list__item.sns-twitter {
    background: url("../img/common/sns-twitter--hover.png") no-repeat;
    background-size: contain;
  }

  .sns-list__item.sns-facebook {
    background: url("../img/common/sns-facebook--hover.png") no-repeat;
    background-size: contain;
  }

  .sns-list__item.sns-line {
    background: url("../img/common/sns-line--hover.png") no-repeat;
    background-size: contain;
  }*/

  .pagination_pn {
    display: flex;
    justify-content: space-between;
    position: relative;
    letter-spacing: 1rem;
    padding: 16px 0;
    border-top: 1px solid #f4f4f5;
    border-bottom: 1px solid #f4f4f5;
    margin-bottom: 24px;
  }

  .pagination_pn a:last-child {
    margin-right: 1.6rem;
  }

  .pagination_pn a:last-child::before {
    content: "";
    position: absolute;
    top: 45%;
    right: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid #9f9fa9;
    border-right: 1px solid #9f9fa9;
    transform: rotate(45deg);
    transition: all 0.3s;
  }

  .pagination_pn a:last-child:hover::before {
    right: -5px;
  }

  .pagination_pn a:first-child {
    margin-left: 1.6rem;
  }

  .pagination_pn a:first-child::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid #9f9fa9;
    border-right: 1px solid #9f9fa9;
    transform: rotate(223deg);
    transition: all 0.3s;
  }

  .pagination_pn a:first-child:hover::before {
    left: -5px;
  }

  #single_blog .blogtoplink {
    text-align: center;
  }

  #single_blog .blogtoplink p {
    font-size: 1.4rem;
    letter-spacing: 1rem;
  }

  .blog_catalog_lists {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .blog_catalog_list {
    width: 47%;
  }

  .blog_catalog_image {
    margin-bottom: 5px;
  }

  .blog_catalog_image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .blog_wrapper .blog_catalog_date {
    margin-bottom: 8px;
  }
}

@media (max-width: 1023px) {
  .side section {
    margin-bottom: 24px;
  }

  .side section:last-child {
    margin-bottom: 0;
  }

  .side .side_h2 {
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 1rem;
    margin-bottom: 16px;
  }

  .blog_side_lists {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .blog_side_lists ul {
    margin-bottom: 0;
  }

  .blog_side_lists li {
    margin-bottom: 0;
  }

  .blog_side_lists li a {
    background-color: rgb(239, 239, 239);
    font-size: 1.2rem;
    padding: 4px;
  }

  h2.for_sp:has(+ .blog_wrapper) {
    padding-top: 64px;
  }

  .blog_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 200px;
  }

  .blog_wrapper > section {
    flex-grow: 1;
  }

  .blog_wrapper .blog_main {
    order: 2;
  }

  .blog_wrapper .side {
    order: -1;
    margin-bottom: 40px;
    width: 100%;
  }

  #single_blog.blog_wrapper {
    margin-top: 64px;
  }

  #single_blog.blog_wrapper .side {
    order: 5;
    margin-top: 40px;
  }

  .blog_wrapper .blog_title {
    text-align: left;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.2rem;
  }

  .blog_main {
    width: 100%;
  }

  .blog_article {
    margin-bottom: 40px;
  }

  .blog_featured_image img {
    max-width: 100%;
    height: auto;
  }

  .blog_main_text p {
    font-size: 1.4rem;
    font-family: "a-otf-ryumin-pr6n", serif;
    line-height: 2;
  }

  .blog-article__bottom {
    margin-bottom: 0;
  }

  .single-link__text {
    margin-top: 0;
  }
    .sns__container {
    margin-bottom: 40px;
  }

  .sns__list {
    display: flex;
    gap: 32px;
    justify-content: center;
  }

  .sns-list__item {
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: relative;
  }

  .sns-link__img {
    position: absolute;
    width: 100%;
    height: auto;
  }

  .sns-link__img--hover {
    opacity: 0;
  }

  .pagination_pn {
    display: flex;
    justify-content: space-between;
    position: relative;
    letter-spacing: 1rem;
    padding: 16px 0;
    border-top: 1px solid #f4f4f5;
    border-bottom: 1px solid #f4f4f5;
    margin-bottom: 24px;
  }

  .pagination_pn a:last-child {
    margin-right: 1.6rem;
  }

  .pagination_pn a:last-child::before {
    content: "";
    position: absolute;
    top: 45%;
    right: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid #e4e4e7;
    border-right: 1px solid #e4e4e7;
    transform: rotate(45deg);
    transition: all 0.3s;
  }

  .pagination_pn a:last-child:hover::before {
    right: -5px;
  }

  .pagination_pn a:first-child {
    margin-left: 1.6rem;
  }

  .pagination_pn a:first-child::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid #e4e4e7;
    border-right: 1px solid #e4e4e7;
    transform: rotate(223deg);
    transition: all 0.3s;
  }

  .pagination_pn a:first-child:hover::before {
    left: -5px;
  }

  #single_blog .blogtoplink {
    text-align: center;
  }

  #single_blog .blogtoplink p {
    font-size: 1.4rem;
    letter-spacing: 1rem;
  }

  .blog_catalog_lists {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .blog_catalog_list {
    width: 47%;
  }

  .blog_catalog_image {
    margin-bottom: 5px;
  }

  .blog_catalog_image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .blog_wrapper .blog_catalog_date {
    margin-bottom: 8px;
  }

  .blog_wrapper .blog_catalog_title {
    font-size: 1.3rem;
  }
}

/*==================================
404
==================================*/
.page404_container {
  text-align: center;
}

.page404_container .page404_description {
  margin-bottom: 100px;
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.2rem;
}

.page404_container .btn_fill {
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 100px;
}

/*==================================
js関連
==================================*/
/*__ js-lazyestload _______________________*/

img {
  transition: filter 0.3s;
}

img.lazyestload {
  transition: filter 0.3s;
  /*width: 100%;*/
  filter: blur(8px);
}

/*__ js-ローディング画面 _______________________*/

#splash {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  color: #111;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash_logo svg {
  width: 1000px;
}

#mask path {
  fill-opacity: 0;
  transition: fill-opacity 0.5s;
  fill: none;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#mask.done path {
  fill: #111;
  fill-opacity: 1;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.splashbg {
  display: none;
}

body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleY(0);
  background-color: #fff;
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }

  50% {
    transform-origin: top;
    transform: scaleY(1);
  }

  50.001% {
    transform-origin: bottom;
  }

  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

#container {
  opacity: 0;
}

body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*__ js-ナビの背景ぼかし _______________________*/
.mainblur {
  filter: blur(8px);
}

/*__ top-fadeInTrigger _______________________*/

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*__ js-slideIn _______________________*/

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

/*__ js-モーダル _______________________*/

.hide-area {
  display: none;
}

.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*__ js-アコーディオン _______________________*/

@media (max-width: 1023px) {
  .ac-ttl {
    position: relative;
    padding: 8px;
    background-color: #f4f4f5;
    cursor: pointer;
    margin-bottom: 0;
  }

  .ac-ttl p {
    margin-bottom: 0;
    font-size: 1.2rem;
    text-align: center;
  }

  .ac-content + .ac-ttl {
    margin-top: 25px;
  }
  .ac-content {
    display: none;
    padding: 16px;
    border: 1px solid #f4f4f5;
    border-top: none;
  }

  .ac-ttl::before,
  .ac-ttl::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4%;
    width: 12px;
    height: 1px;
    margin: auto;
    background-color: #000;
  }

  .ac-ttl::after {
    transform: rotate(90deg);
    transition: 0.3s;
  }

  .ac-ttl.is-active::after {
    transform: rotate(180deg);
  }
}

/* ↑↑↑↑↑↑↑↑アコーディオンここまで ↑↑↑↑↑↑↑↑ */

/*==================================
ブロックスタイル
==================================*/

div[class*="is-style-box-gray"] {
  background: #f4f4f5;
  padding: 1em;
}

hr[class*="is-style-separator-gray"] {
  border-top: 1px solid #e4e4e7;
}

.screen-reader-text {
  display: none;
}
