@charset "utf-8";
/* CSS Document */

/* ===============================
	header
 =============================== */
#header {
  background: var(--C-white);
  border-image-source: linear-gradient(var(--C-white), var(--C-white));
  border-image-slice: 0 fill;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  margin: auto;
  transition: 1s;
  z-index: 9999;
}
#header::after {
  content: '';
  background: var(--C-white);
  border-image-source: linear-gradient(var(--C-white), var(--C-white));
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw 0 100vw;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  max-width: 1608px;
  padding-left: 24px;
  padding-right: 70px;
}
.header_logo {
  width: clamp(140px,200 / 1340 * 100vw,200px);
  height: 52px;
  margin-top: 14px;
  margin-right: 20px;
}
.header_logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/header_logo.png);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  transition: .6s;
}
/* header-nav */
.header-nav {
  margin-left: auto;
}
.header-nav .nav_toggle {
  display: none;
}
#header .header-nav .nav_toggle span {
  background: var(--C-txt-main);
}
.header-nav .nav_menu {
  display: flex;
  justify-content: flex-end;
  gap: 0 clamp(10px, 40 / 1400 * 100vw, 40px);
}
.header-nav .nav_list {
  display: flex;
  align-items: center;
  position: relative;
}
.header-nav .nav_list::after {
  content: '';
  width: 100%;
  height: 4px;
  background: var(--C-accent-green);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  transition: .6s;
}
.header-nav .nav_list:hover::after {
  opacity: 1;
}
.header-nav .nav_list > a,
.header-nav .nav_list > p {
  font-family: "Cormorant", serif;
  font-size: clamp(14px, 16 / 1300 * 100vw, 16px);
  font-weight: 500;
  letter-spacing: 0.172em;
  white-space: nowrap;
  padding: 26px 0;
  transition: .6s;
}
.header-nav .nav_list:first-child > a {
  font-weight: 400;
}
.header-nav .nav_list:hover > a,
.header-nav .nav_list:hover > p {
  opacity: .6;
}
.header-nav .nav_list > p {
  position: relative;
  cursor: pointer;
  padding-right: clamp(18px, 32 / 1400* 100vw, 32px);
}
.header-nav .nav_list > p::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Crect width='24' height='24' transform='translate(1379 365)' stroke-width='1'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(389 -1379) rotate(90)' clip-path='url(%23a)'%3E%3Cpath fill='rgb(112,112,112,1)' d='M.965,7.5h0L0,6.555,6.68,0l6.679,6.555-.964.946L6.68,1.894.966,7.5Z' transform='translate(1395 370.641) rotate(90)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: .6s;
}
@media screen and (min-width: 1160px) {
  .active.menu_open .header-nav .nav_list.click > p::after {
    transform: scaleY(-1);
  }
}
/* /header-nav */
/* mega_menu */
.mega_menu {
  border-image-source: linear-gradient(var(--C-white), var(--C-white));
  border-image-slice: 0 fill;
  border-image-outset: 80px 100vw 0 100vw;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-100vh);
  opacity: 0;
  padding-top: 56px;
  padding-bottom: 69px;
  z-index: -1;
}
.mega_menu {
  transition: opacity 1s ease, transform 1.2s ease;
}
.menu_open .nav_list.click .mega_menu {
  transform: translateY(0);
  opacity: 1;
  z-index: -1;
}
.menu_closing .mega_menu {
  transform: translateY(-100vh);
  opacity: 0;
}
.header_mega_inner {
  display: flex;
  justify-content: center;
  max-width: calc(1608px + (38px * 2));
  padding: 0 38px;
}
.mega_menu .title-02 {
  font-size: 18px;
  margin-bottom: 32px;
}
.mega_menu .title-02 span {
  font-size: 32px;
  margin-bottom: 12px;
}
.mega_menu .title-02 a {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-right: 30px;
  transition: .3s;
}
.mega_menu .title-02 a:hover {
  padding-right: 35px;
}
.mega_menu .title-02 a::after {
  content: '';
  background-image: url(../img/common/icon_mega_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.mega_menu ul {
  display: flex;
  gap: 16px;
}
.mega_menu .category_01 {
  max-width: 1280px;
}
.mega_menu .category_01 ul {
  flex-wrap: wrap;
}
.mega_menu .category_01 li {
  width: calc((100% - (16px * 2)) / 3);
}
.mega_menu li a {
  display: block;
}
.mega_menu .mega_menu_img {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.mega_menu .mega_menu_img::before {
  content: '';
  background: var(--C-black);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: +1;
  opacity: .2;
  transition: .6s;
}
.mega_menu li:hover .mega_menu_img::before {
  opacity: .6;
}
.mega_menu .mega_menu_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}
.mega_menu li:hover .mega_menu_img img {
  transform: scale(1.1);
}
.mega_menu li p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  margin-top: 12px;
  padding-right: 30px;
  transition: .3s;
}
.mega_menu li:hover p {
  padding-right: 35px;
}
.mega_menu li p::after {
  content: '';
  background-image: url(../img/common/icon_mega_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
/* /mega_menu */
.header_bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: var(--C-black);
  transform: translateY(-100vh);
  opacity: 0;
  z-index: -2;
  transition: .8s;
  animation: header_bg_anime_back 1s;
}
@keyframes header_bg_anime_back {
  0% {
    transform: translateY(0);
    opacity: .6;
  }
  70% {
    transform: translateY(0);
    opacity: 0;
  }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}
#header.menu_open .header_bg {
  transform: translateY(0);
  animation-name: header_bg_anime;
  animation-duration: .6s;
  opacity: .6;
}
@keyframes header_bg_anime {
  0% {
    display: none;
    opacity: 0;
  }
  30% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: .6;
  }
}
/* active */
#header.active {
  background: transparent;
  border-image-source: none;
}
#header.active .header_logo a {
  background-image: url(../img/common/header_logo_white.png);
}
#header.active .header-nav .nav_toggle span {
  background: var(--C-white);
}
#header.active.nav-open .header-nav .nav_toggle span {
  background: var(--C-txt-main);
}
@media screen and (min-width: 1160px) {
  /* active */
  #header.active .header-nav .nav_list > a,
  #header.active .header-nav .nav_list > p {
    color: var(--C-white);
  }
  #header.active .header-nav .nav_list > p::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Crect width='24' height='24' transform='translate(1379 365)' stroke-width='1'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(389 -1379) rotate(90)' clip-path='url(%23a)'%3E%3Cpath fill='rgb(225,225,225,1)' d='M.965,7.5h0L0,6.555,6.68,0l6.679,6.555-.964.946L6.68,1.894.966,7.5Z' transform='translate(1395 370.641) rotate(90)'/%3E%3C/g%3E%3C/svg%3E");
  }
  #header.active .header_logo a {
    background-image: url(../img/common/header_logo_white.png);
  }
  #header.menu_open .header_logo a {
    background-image: url(../img/common/header_logo.png);
  }
  #header.active .header-nav .nav_list > a,
  #header.active .header-nav .nav_list > p {
    color: var(--C-white);
  }
  #header.active .header-nav .nav_list > p::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Crect width='24' height='24' transform='translate(1379 365)' stroke-width='1'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(389 -1379) rotate(90)' clip-path='url(%23a)'%3E%3Cpath fill='rgb(255,255,255,1)' d='M.965,7.5h0L0,6.555,6.68,0l6.679,6.555-.964.946L6.68,1.894.966,7.5Z' transform='translate(1395 370.641) rotate(90)'/%3E%3C/g%3E%3C/svg%3E");
  }
  #header.menu_open .header-nav .nav_list > a,
  #header.menu_open .header-nav .nav_list > p {
    color: var(--C-txt-main);
  }
  #header.menu_open .header-nav .nav_list > p::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Crect width='24' height='24' transform='translate(1379 365)' stroke-width='1'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(389 -1379) rotate(90)' clip-path='url(%23a)'%3E%3Cpath fill='rgb(112,112,112,1)' d='M.965,7.5h0L0,6.555,6.68,0l6.679,6.555-.964.946L6.68,1.894.966,7.5Z' transform='translate(1395 370.641) rotate(90)'/%3E%3C/g%3E%3C/svg%3E");
  }
}
@media screen and (min-width: 1608px) {
  .header_logo {
    position: absolute;
    top: 0;
    left: 24px;
  }
}
@media screen and (max-width: 1400px) {
  .header_inner {
    padding-left: 1.71428571428571%;
    padding-right: 1.71428571428571%;
  }
  .header-nav .nav_list > p {
    padding-right: 18px;
  }
  .header-nav .nav_list > p::after {
    width: 18px;
    height: 18px;
    background-size: contain;
  }
}
@media screen and (max-width: 1200px) {
  .header-nav .nav_menu {
    gap: 0 1%;
  }
}
@media screen and (max-width: 1160px) {
  #header {
    width: 100%;
    left: auto;
    right: auto;
    height: 60px;
    display: inline-flex;
    align-items: center;
    transition: .6s;
  }
  .header_inner {
    padding: 0;
    margin-left: 0;
  }
  .header_logo {
    width: 37.33333333333333vw;
    height: 36px;
    margin-top: auto;
    margin-left: 19px;
    margin-right: auto;
  }
  .header-nav {
    margin-left: auto;
  }
  .header-nav .nav_toggle {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
  }
  .header-nav .nav_toggle span {
    background: var(--C-black);
    width: calc(100% / 3);
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: .5s;
  }
  .header-nav .nav_toggle span:first-child {
    top: 38.33333333333333%;
  }
  .header-nav .nav_toggle span:nth-child(2) {
    top: 50%;
    bottom: 50%;
  }
  .header-nav .nav_toggle span:last-child {
    bottom: 38.33333333333333%;
  }
  .header-nav .nav_menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    background: var(--C-white);
    padding-top: 68px;
    padding-bottom: 80px;
    z-index: -1;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: .5s;
  }
  .header-nav .nav_list {
    display: block;
    margin: 0 20px;
    border-bottom: var(--C-line-gray) 1px solid;
  }
  .header-nav .nav_list::after {
    content: none;
  }
  .header-nav .nav_list > a,
  .header-nav .nav_list > p {
    width: 100%;
    padding: 16px 0;
    display: block;
  }
  .header-nav .nav_list > p::after {
    background-image: url(../img/common/icon_plus.svg);
    width: 14px;
    height: 14px;
  }
  .header-nav .nav_list.click > p::after {
    background-image: url(../img/common/icon_minus.svg);
    transform: rotate(360deg);
  }
  .header_bg {
    transform: translateY(0);
    visibility: hidden;
  }
  /* mega_menu */
  .mega_menu {
    border-image-outset: 0;
    position: absolute;
    height: 0;
    top: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 16px;
    transform: none;
    opacity: unset;
    display: none;
  }
  .header_mega_inner {
    display: block;
  }
  .mega_menu .title-02 {
    display: none;
  }
  .mega_menu ul {
    gap: 0;
    flex-direction: column;
  }
  .mega_menu .category_01 li {
    width: 100%;
  }  
  .mega_menu .mega_menu_img {
    display: none;
  }
  .mega_menu li p {
    font-size: 14px;
    margin-top: 0;
    padding: 8px 0 8px 26px;
  }
  .mega_menu li:nth-child(3) p::after {
    content: '';
    width: 3.73333333333333vw;
    height: 3.73333333333333vw;
    background: url(../img/common/icon_link_green.svg) center no-repeat;
    background-size: contain;
    display: inline-block;
    margin-right: -5.86666666666667vw;
  }
  .mega_menu li p::before {
    content: '';
    width: 10px;
    height: 2px;
    background: var(--C-accent-green);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .mega_menu li p::after {
    content: none;
  }

  /* ナビオープン時 */
  html.header-open {
    overflow: hidden;
  }
  .header-open body {
    overflow: hidden;
  }
  #header.nav-open .header_logo a {
    background-image: url(../img/common/header_logo.png);
  }
  .nav-open .header-nav .nav_menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    box-shadow: 0 0 40px rgba(0,0,0,.3);
  }
  .nav-open .header-nav .nav_toggle {
    border-radius: 20px;
  }
  .nav-open .header_contact {
    position: fixed;
  }
  .nav-open .header-nav .nav_toggle span:first-child {
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
  }
  .nav-open .header-nav .nav_toggle span:nth-child(2) {
    display: none;
  }
  .nav-open .header-nav .nav_toggle span:last-child {
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
  }
  .nav-open .header_bg {
    opacity: .3;
    visibility: visible;
    cursor: pointer;
  }
  .nav_list.click .mega_menu {
    display: block;
    animation: mega_menu_open .4s ease;
    height: auto;
    position: relative;
    z-index: +1;
  }
  .menu_open .nav_list.click .mega_menu {
    z-index: +1;
  }
  @keyframes mega_menu_open {
    0%{
      opacity: 0;
    }
    100%{
      opacity: 1;
    }
  }
}

/* ===============================
	footer
 =============================== */
#footer {
  position: relative;
  z-index: 1;  
}
.footer_main {
  container-type: inline-size;
  background: #333;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.footer_main * {
  color: var(--C-white);
}
.footer_main .wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  flex-flow: row nowrap;
  gap: 60px;
}
#top_back {
  display: none;
  z-index: +1;
  transition: .4s;
  position: fixed;
  right: 16px;
  bottom: 20px;
}
#top_back:hover {
  bottom: 26px;
}
#top_back a {
  display: block;
}
#top_back a img {
  width: 64px;
  height: 64px;
}
@media screen and (max-width: 750px) {
  #top_back {
    position: absolute;
    right: 8px;
    bottom: -26.66666666666667vw;
  }
  #top_back:hover {
    bottom: -30vw;
  }
  #top_back a img {
    width: 40px;
    height: auto;
  }
}
@container (max-width: 1220px) {
  .footer_main .wrap {
    flex-flow: column-reverse;
  }
}
/* footer_info */
.footer_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 272px;
}
.footer_company a:has(.footer_logo) {
  display: inline-block;
  margin-bottom: 27px;
  transition: .6s;
}
.footer_company a:has(.footer_logo):hover {
  opacity: .6;
}
.footer_company .footer_logo {
  height: auto;
}
.footer_company .footer_text address,
.footer_company .footer_text .footer_tel,
.footer_company .footer_text .footer_fax {
  font-size: 12px;
  font-weight: 400;
}
.footer_company .footer_text .footer_tel,
.footer_company .footer_text .footer_fax {
  display: inline-block;
}
.footer_company .footer_text .footer_company_txt {
  font-size: 10px;
  font-weight: 400;
  margin-top: 12px;
}
.footer_company .footer_sns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.footer_copyright {
  font-size: 12px;
  margin-top: 16px;
}
/* /footer_info */

/* footer_sekisui */
.footer_sekisui a:has(.footer_logo) {
  display: inline-block;
  transition: .6s;
}
.footer_sekisui a:has(.footer_logo):hover {
  opacity: .6;
}
/* /footer_sekisui */

/* footer_menu-list */
.footer_menu-list {
  container-type: inline-size;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0 4.21940928270042%;
  width: 100%;
  max-width: calc(((4.21940928270042%* 2) +(290px + 290px + 166px)) + 62px);
  padding-right: 62px;
}
.footer_menu-list a {
  transition: .6s;
}
.footer_menu-list a:hover {
  opacity: .6;
}
.footer_menu-list .footer_menu_bl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.footer_menu-list .footer_menu_bl:nth-child(1) {
  /*width: 30.59071729957806%;*/
  min-width: 218px;
  max-width: 290px;
}
.footer_menu-list .footer_menu_bl:nth-child(2) {
  min-width: 252px;
  max-width: 290px;
}
.footer_menu-list .footer_menu_bl:nth-child(3) {
  width: 19.19831223628692%;
  min-width: 166px;
}
.footer_menu-list .footer_menu,
.footer_menu-list .footer_menu span {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 24px;
}
.footer_menu-list .footer_menu li {
  position: relative;
  margin-top: 20px;
  padding-left: 26px;
}
.footer_menu-list .footer_menu li::before {
  content: '';
  width: 10px;
  height: 2px;
  background: var(--C-accent-green);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.footer_menu-list .footer_menu li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.footer_menu-list a.out_link {
  position: relative;
}
.footer_menu-list a.out_link::after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url(../img/common/icon_link.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: -32px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@container (max-width: 1220px) {
  .footer_menu-list {
    justify-content: flex-start;
    max-width: initial;
  }
}
@media screen and (max-width: 1100px) {
  .footer_menu-list {
    max-width: initial;
  }
  .footer_menu_bl:last-child {
    grid-column: auto;
  }
}
@media screen and (max-width: 900px) {
  .footer_menu_bl:last-child {
    grid-column: 2 / 3;
  }
}
/* footer_menu-list */

/* footer_sub */
.footer_sub {
  background: var(--C-white);
  padding-top: 27px;
  padding-bottom: 25px;
}
.footer_sub .wrap {
  container-type: inline-size;
}
.footer_sub ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 40px;
}
.footer_sub li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--C-txt-main);
  transition: .6s;
}
.footer_sub li:hover a {
  opacity: .6;
}
@container (max-width: 930px) {
  .footer_sub ul {
    flex-flow: wrap;
    justify-content: flex-start;
  }
}
/* /footer_sub */

@media screen and (max-width: 750px) {
  .footer_main {
    padding-top: 49px;
    padding-bottom: 40px;
  }
  .footer_main .wrap {
    gap: 0;
  }
  .footer_info {
    width: 100%;
    padding-top: 40px;
  }
  .footer_menu-list {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    border-bottom: var(--C-white) 1px solid;
  }
  .footer_menu-list .footer_menu,
  .footer_menu-list .footer_menu span {
    font-size: 16px;
  }
  .footer_menu-list .footer_menu li {
    margin-top: 16px;
  }
  .footer_menu_bl:last-child .footer_menu:last-child {
    margin-bottom: 0;
  }
  .footer_company a:has(.footer_logo) {
    margin-bottom: 24px;
  }
  .footer_sub {
    padding-top: 8px;
    padding-bottom: 62px;
  }
  .footer_sub ul {
    gap: 0 24px;
  }
  .footer_sub li:nth-child(3),
  .footer_sub li:nth-child(4) {
    width: 100%;
  }
  .footer_sub li a {
    font-size: 10px;
  }
}
/* tsuiju_btn */
  #tsuiju_btn {
    position: -webkit-fixed;
    position: fixed;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 62px;
    height: fit-content;
    margin: auto;
    filter: drop-shadow(0 0 8px rgb(0 0 0 / 0.16));
    transition: .4s;
    z-index: 9999;
  }
  #tsuiju_btn > a {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 42px 0;
    transition: .4s;
  }
  #tsuiju_btn .shiryo_btn {
    background: var(--C-accent-green);
    border-bottom: var(--C-white) 1px solid;
  }
  #tsuiju_btn .shiryo_btn:hover {
    background: #668B82;
  }
  #tsuiju_btn .yoyaku_btn {
    background: var(--C-accent-Dgreen);
  }
  #tsuiju_btn .yoyaku_btn:hover {
    background: #576763;
  }
  #tsuiju_btn .shiryo_btn p,
  #tsuiju_btn .yoyaku_btn p {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.41em;
    writing-mode: vertical-lr;
    color: var(--C-white);
    display: inline-block;
    position: relative;
    padding-top: 28px;
    transition: .4s;
  }
  #tsuiju_btn .shiryo_btn:hover p,
  #tsuiju_btn .yoyaku_btn:hover p {
    opacity: .8;
  }
  #tsuiju_btn > a p::before {
    content: '';
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  #tsuiju_btn .shiryo_btn p::before {
    background-image: url(../img/common/icon_shiryo.svg);
  }
  #tsuiju_btn .yoyaku_btn p::before {
    background-image: url(../img/common/icon_yoyaku.svg);
  }
@media screen and (max-width: 750px) {
  #tsuiju_btn {
    flex-direction: row;
    top: auto;
    left: 0;
    width: 100%;
    height: 50px;
    filter: none;
  }
  #tsuiju_btn > a {
    width: 50%;
    padding: 0;
  }
  #tsuiju_btn .shiryo_btn {
    border-bottom: none;
    border-right: var(--C-white) 1px solid;
  }
  #tsuiju_btn .shiryo_btn p,
  #tsuiju_btn .yoyaku_btn p {
    letter-spacing: 0.05em;
    writing-mode: unset;
    padding-top: 0;
    padding-left: 32px;
  }
  #tsuiju_btn > a p::before {
    bottom: 0;
    right: auto;
  }
}
/* /tsuiju_btn */