@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 12px;
  line-height: 1.5;
  color: #858585;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a {
  color: #858585;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #858585;
}
a:hover {
  color: #858585;
  text-decoration: none;
}
a:active {
  color: #858585;
}
@media (min-width: 800px) {
  a.tel {
    pointer-events: none;
    cursor: default;
  }
}

@media (min-width: 800px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 799px) {
  .pc {
    display: none !important;
  }
}
/* main
==================================*/
main {
  display: block; /*IE対策*/
}

/*　Retina対応時のCSS↓　*/
/* header
==================================*/
header {
  position: fixed;
  top: 40px;
  left: 50px;
  z-index: 999;
  background: transparent;
}
header .header_inner .logo a {
  display: block;
  transition: opacity 1s cubic-bezier(0.61, 1, 0.88, 1);
}
header .header_inner .logo a:hover {
  opacity: 0.7;
}
header .header_inner .logo a svg {
  fill: #6c6c6c;
}
header .header_inner nav .gnav {
  padding-top: 60px;
}
header .header_inner nav .gnav li {
  line-height: 1;
  padding-bottom: 15px;
}
header .header_inner nav .gnav li a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #000;
  opacity: 0;
  transition: all 0.3s 0s !important;
  position: relative;
}
header .header_inner nav .gnav li a::before {
  content: "";
  background-color: #000;
  width: 0;
  height: 1px;
  position: absolute;
  right: -7px;
  bottom: 2px;
  transition: all 0.3s;
}
header .header_inner nav .gnav li a.here {
  position: relative;
}
header .header_inner nav .gnav li a.here::after {
  content: "";
  background-color: #000;
  width: 6px;
  height: 1px;
  position: absolute;
  right: -7px;
  bottom: 2px;
  transition: all 0.4s ease;
}
header .header_inner nav .gnav li a:hover {
  color: #939393;
}
header .header_inner nav .gnav li a:hover::before {
  background-color: #939393;
  width: 6px;
}
header .header_inner nav .gnav.loaded li a {
  opacity: 1;
}
header .header_inner nav .gnav.loaded li:nth-of-type(1) a {
  transition-delay: 0.1s;
}
header .header_inner nav .gnav.loaded li:nth-of-type(2) a {
  transition-delay: 0.3s;
}
header .header_inner nav .gnav.loaded li:nth-of-type(3) a {
  transition-delay: 0.5s;
}
header .header_inner nav .gnav.loaded li:nth-of-type(4) a {
  transition-delay: 0.7s;
}
header .header_inner nav .gnav.loaded li:nth-of-type(5) a {
  transition-delay: 0.9s;
}

.pan {
  position: absolute;
  top: 37px;
  right: 30px;
  display: flex;
  column-gap: 36px;
}
.pan li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #858585;
}
.pan li a {
  position: relative;
  transition: all 0.6s ease;
}
.pan li a::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #cdcdcd;
  position: absolute;
  right: -33px;
  bottom: 2px;
}
.pan li a:hover {
  color: #000;
}
.pan li:nth-of-type(3) {
  max-width: 250px;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  word-break: break-all;
}

/* footer
==================================*/
footer {
  background: #fff;
}
footer .footer_inner {
  padding-top: 240px;
  padding-bottom: 60px;
  padding-left: 50px;
  padding-right: 50px;
}
footer .footer_inner .copy {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #858585;
}
footer .footer_inner .copy small {
  position: relative;
  padding-right: 40px;
}
footer .footer_inner .copy small::after {
  content: "";
  background-color: #cdcdcd;
  height: 10px;
  width: 1px;
  position: absolute;
  right: 20px;
  top: 1px;
}
footer .footer_inner .copy span {
  position: relative;
  padding-right: 40px;
}
footer .footer_inner .copy span::after {
  content: "";
  background-color: #cdcdcd;
  height: 10px;
  width: 1px;
  position: absolute;
  right: 20px;
  top: 1px;
}
footer .footer_inner .copy a {
  color: #858585;
}

#pageTop {
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 888;
  transition: 0.3s;
}
#pageTop.active {
  opacity: 1;
}
#pageTop a {
  display: block;
  width: 50px;
}
#pageTop a:hover {
  opacity: 0.7;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-load {
  opacity: 0;
  transition: 0.3s ease;
}

.c-anim-show {
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.61, 1, 0.88, 1);
}

.c-anim-zoomin {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.5s cubic-bezier(0.61, 1, 0.88, 1), transform 1s cubic-bezier(0.61, 1, 0.88, 1);
}

.move {
  opacity: 1;
  transform: scale(1);
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

.show_blur {
  opacity: 0;
  animation: showblur 1.5s linear forwards;
}
@keyframes showblur {
  0% {
    opacity: 0;
    filter: blur(30px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  backface-visibility: hidden;
}

section {
  display: flex;
  justify-content: flex-start;
}
section .container {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  transition: all 0.6s ease;
}

.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
}
@media (max-width: 799px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.ttl_sec {
  padding-top: 200px;
  padding-bottom: 80px;
}
.ttl_sec .container {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  column-gap: 40px;
  max-width: 1270px;
  width: 100%;
  padding-left: 330px;
  padding-right: 100px;
  transition: all 0.6s ease;
}
.ttl_sec .container h2 {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
.ttl_sec .container .cate_list {
  display: flex;
  column-gap: 30px;
}
.ttl_sec .container .cate_list li a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 11px;
  position: relative;
  white-space: nowrap;
  transition: all 0.6s ease;
}
.ttl_sec .container .cate_list li a::after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: #cdcdcd;
  position: absolute;
  right: -15px;
  top: 1px;
}
.ttl_sec .container .cate_list li a:hover {
  color: #000;
}
.ttl_sec .container .cate_list li:last-child a::after {
  background: transparent;
}
@media (max-width: 940px) {
  .ttl_sec .container {
    padding-right: 50px;
    padding-left: 230px;
  }
}

/*==================================
	ボタン系
==================================*/
.btn_wrap .btn_more {
  line-height: 1;
}
.btn_wrap .btn_more a,
.btn_wrap .btn_more span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #000;
  display: inline-block;
  font-size: 12px;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}
.btn_wrap .btn_more a::before,
.btn_wrap .btn_more span::before {
  content: "";
  background-color: #e7e7e7;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  transition-delay: 0.2s;
}
.btn_wrap .btn_more a::after,
.btn_wrap .btn_more span::after {
  content: "";
  background-color: #000;
  width: 100%;
  height: 1px;
  position: absolute;
  left: -1px;
  bottom: 0;
  transform: translateX(-100%);
  transition: 0.3s;
  transition-delay: 0;
}
.btn_wrap .btn_more a:hover::before,
.btn_wrap .btn_more span:hover::before {
  transform: translateX(100%);
  transition-delay: 0;
}
.btn_wrap .btn_more a:hover::after,
.btn_wrap .btn_more span:hover::after {
  transform: translateX(0);
  transition-delay: 0.4s;
}
.btn_wrap .btn_more.psi_adjust {
  position: sticky;
  top: -5px;
  padding-top: 30px;
  margin-top: -30px;
}
.btn_wrap .btn_more.ctr {
  text-align: center;
  padding-bottom: 36px;
}
.btn_wrap .btn_more_jp {
  line-height: 1;
}
.btn_wrap .btn_more_jp a,
.btn_wrap .btn_more_jp span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  display: inline-block;
  font-size: 11px;
  line-height: 2;
  position: relative;
  overflow: hidden;
}
.btn_wrap .btn_more_jp a::before,
.btn_wrap .btn_more_jp span::before {
  content: "";
  background-color: #e7e7e7;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  transition-delay: 0.2s;
}
.btn_wrap .btn_more_jp a::after,
.btn_wrap .btn_more_jp span::after {
  content: "";
  background-color: #000;
  width: 100%;
  height: 1px;
  position: absolute;
  left: -1px;
  bottom: 0;
  transform: translateX(-100%);
  transition: 0.3s;
  transition-delay: 0;
}
.btn_wrap .btn_more_jp a:hover::before,
.btn_wrap .btn_more_jp span:hover::before {
  transform: translateX(100%);
  transition-delay: 0;
}
.btn_wrap .btn_more_jp a:hover::after,
.btn_wrap .btn_more_jp span:hover::after {
  transform: translateX(0);
  transition-delay: 0.4s;
}
.btn_wrap .btn_more_jp.psi_adjust {
  position: sticky;
  top: -5px;
  padding-top: 30px;
  margin-top: -30px;
  word-break: keep-all;
}
.btn_wrap .btn_more_jp.ctr {
  text-align: center;
  padding-bottom: 36px;
}

.t_link {
  display: inline-block;
  overflow: hidden;
  line-height: 1.6;
  position: relative;
  top: 5px;
}
.t_link::before {
  content: "";
  background-color: #e7e7e7;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.4s;
  transition-delay: 0.2s;
}
.t_link::after {
  content: "";
  background-color: #e7e7e7;
  width: 100%;
  height: 1px;
  position: absolute;
  left: -1px;
  bottom: 0;
  transform: translateX(-100%);
  transition: 0.4s;
  transition-delay: 0;
}
.t_link:hover::before {
  transform: translateX(100%);
  transition-delay: 0;
}
.t_link:hover::after {
  transform: translateX(0);
  transition-delay: 0.4s;
}

.t_link_blk {
  display: inline-block;
  overflow: hidden;
  line-height: 1.6;
  position: relative;
  top: 4px;
}
.t_link_blk::before {
  content: "";
  background-color: #e7e7e7;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.4s;
  transition-delay: 0.2s;
}
.t_link_blk::after {
  content: "";
  background-color: #000;
  width: 100%;
  height: 1px;
  position: absolute;
  left: -1px;
  bottom: 0;
  transform: translateX(-100%);
  transition: 0.4s;
  transition-delay: 0;
}
.t_link_blk:hover::before {
  transform: translateX(100%);
  transition-delay: 0;
}
.t_link_blk:hover::after {
  transform: translateX(0);
  transition-delay: 0.4s;
}

/*==================================
	リスト系
==================================*/
/*==================================
	ページナビ
==================================*/
.page_navigation .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 30px;
  padding-top: 90px;
}
.page_navigation .wp-pagenavi a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #000;
}

/*==========================================
  Layout
==========================================*/
/*==================================
  Top
==================================*/
#Top header {
  z-index: 0;
  opacity: 0;
  transition: 0.3s;
}
#Top header.scroll {
  z-index: 1;
  opacity: 1;
}
#Top header.scroll .logo svg {
  fill: #939393;
}
#Top header.scroll nav .gnav li a {
  color: #000;
}
#Top header.scroll nav .gnav li a::before {
  content: "";
  background-color: #fff;
}
#Top header nav .gnav li:nth-of-type(1) a {
  position: relative;
}
#Top header nav .gnav li:nth-of-type(1) a::after {
  content: "";
  background-color: #000;
  width: 6px;
  height: 1px;
  position: absolute;
  right: -7px;
  bottom: 2px;
  transition: all 0.4s ease;
}
#Top main .mv_sec {
  position: relative;
  overflow: hidden;
}
#Top main .mv_sec .header_inner_top {
  position: fixed;
  top: 40px;
  left: 50px;
  z-index: 2;
  overflow: hidden;
}
#Top main .mv_sec .header_inner_top .logo {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.61, 1, 0.88, 1);
}
#Top main .mv_sec .header_inner_top .logo a {
  display: block;
  transition: opacity 1s cubic-bezier(0.61, 1, 0.88, 1);
}
#Top main .mv_sec .header_inner_top .logo a:hover {
  opacity: 0.7;
}
#Top main .mv_sec .header_inner_top .logo.loaded {
  opacity: 1;
}
#Top main .mv_sec .header_inner_top nav .gnav {
  padding-top: 60px;
}
#Top main .mv_sec .header_inner_top nav .gnav li {
  line-height: 1;
  padding-bottom: 15px;
}
#Top main .mv_sec .header_inner_top nav .gnav li a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #fff;
  transition: color 0.6s ease, opacity 1s cubic-bezier(0.61, 1, 0.88, 1);
  position: relative;
  opacity: 0;
}
#Top main .mv_sec .header_inner_top nav .gnav li a::after {
  content: "";
  background-color: #fff;
  width: 0;
  height: 1px;
  position: absolute;
  right: -7px;
  bottom: 2px;
  transition: all 0.4s ease;
}
#Top main .mv_sec .header_inner_top nav .gnav li a.here {
  position: relative;
}
#Top main .mv_sec .header_inner_top nav .gnav li a.here::after {
  content: "";
  background-color: #fff;
  width: 6px;
  height: 1px;
  position: absolute;
  right: -7px;
  bottom: 2px;
  transition: all 0.4s ease;
}
#Top main .mv_sec .header_inner_top nav .gnav li a:hover {
  opacity: 0.7;
}
#Top main .mv_sec .header_inner_top nav .gnav li a:hover::after {
  width: 6px;
  opacity: 0.7;
}
#Top main .mv_sec .header_inner_top nav .gnav.loaded li a {
  opacity: 1;
}
#Top main .mv_sec .header_inner_top nav .gnav.loaded li:nth-of-type(1) a {
  transition-delay: 0.1s;
}
#Top main .mv_sec .header_inner_top nav .gnav.loaded li:nth-of-type(2) a {
  transition-delay: 0.3s;
}
#Top main .mv_sec .header_inner_top nav .gnav.loaded li:nth-of-type(3) a {
  transition-delay: 0.5s;
}
#Top main .mv_sec .header_inner_top nav .gnav.loaded li:nth-of-type(4) a {
  transition-delay: 0.7s;
}
#Top main .mv_sec .header_inner_top nav .gnav.loaded li:nth-of-type(5) a {
  transition-delay: 0.9s;
}
#Top main .mv_sec .logo_menu {
  display: none;
}
#Top main .mv_sec .main-swiper .slide_wrap {
  width: 100%;
  position: relative;
}
#Top main .mv_sec .main-swiper .slide_wrap a {
  display: block;
}
#Top main .mv_sec .main-swiper .slide_wrap a dl {
  position: absolute;
  right: 50px;
  bottom: 40px;
  z-index: 2;
}
#Top main .mv_sec .main-swiper .slide_wrap a dl dt {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
#Top main .mv_sec .main-swiper .slide_wrap a dl dd {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #fff;
}
#Top main .mv_sec .main-swiper .slide_wrap a img {
  width: calc(100% + 100px);
  max-width: calc(100% + 100px);
  height: 100vh;
  object-fit: cover;
  transform: translateX(0);
}
#Top main .mv_sec .main-swiper .activeimage a img {
  transition: transform 14s linear;
  transform: translateX(-100px);
}
#Top main .mv_sec .load__display {
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: #f0f0f0;
  z-index: 5;
  visibility: visible;
  transition: transform 0.9s 0.3s ease, visibility 1.2s 0s;
}
#Top main .mv_sec .load__display.load__display--hidden {
  transform: translateX(100vw);
  visibility: hidden;
}
#Top main .mv_sec .load__display.load__display--none {
  display: none;
}
#Top main .lead_sec {
  display: flex;
  justify-content: flex-end;
  padding-top: 240px;
  padding-bottom: 160px;
  padding-right: 175px;
  box-sizing: border-box;
}
#Top main .lead_sec .container {
  max-width: 968px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
#Top main .lead_sec .container .txt_lead {
  font-size: 12px;
  line-height: 3;
  color: #858585;
  padding-bottom: 80px;
  letter-spacing: 0.2em;
}
@media (max-width: 940px) {
  #Top main .lead_sec {
    padding-right: 80px;
  }
}
#Top main .cate_sec {
  display: flex;
  justify-content: flex-start;
  position: relative;
  box-sizing: border-box;
}
#Top main .cate_sec .container {
  display: flex;
  justify-content: flex-start;
  column-gap: 40px;
  max-width: 100%;
  width: 100%;
  padding-right: 0;
  padding-left: 252px;
  margin: 0;
}
#Top main .cate_sec .container .cate_list {
  width: 100%;
}
#Top main .cate_sec .container .cate_list li {
  padding-bottom: 50px;
}
#Top main .cate_sec .container .cate_list li a {
  color: #000;
  transition: all 0.6s ease;
}
#Top main .cate_sec .container .cate_list li a dl {
  width: 100%;
}
#Top main .cate_sec .container .cate_list li a dl dt {
  margin-bottom: 15px;
  overflow: hidden;
}
#Top main .cate_sec .container .cate_list li a dl dt picture {
  display: block;
}
#Top main .cate_sec .container .cate_list li a dl dt picture img {
  height: 460px;
  width: 100%;
  aspect-ratio: 85/46;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 1250px) {
  #Top main .cate_sec .container .cate_list li a dl dt picture img {
    height: 100%;
  }
}
#Top main .cate_sec .container .cate_list li a dl dd .en {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 11px;
  padding-right: 30px;
  position: relative;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#Top main .cate_sec .container .cate_list li a dl dd .en::after {
  content: "";
  background-color: #cdcdcd;
  height: 10px;
  width: 1px;
  position: absolute;
  right: 15px;
  top: 1px;
}
#Top main .cate_sec .container .cate_list li a dl dd .jp {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 11px;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#Top main .cate_sec .container .cate_list li a:hover dl dt picture img {
  transition: transform 1200ms;
  transform: scale(1.08);
}
#Top main .cate_sec .container .cate_list li a:hover dl dd .en {
  color: #858585;
}
#Top main .cate_sec .container .cate_list li a:hover dl dd .jp {
  color: #858585;
}
#Top main .cate_sec .container .cate_list li:last-child {
  padding-bottom: 0;
}
@media (max-width: 940px) {
  #Top main .cate_sec .container {
    padding-left: 230px;
  }
}
#Top main .cate_sec.fixed .container {
  position: relative;
}
#Top main .cate_sec.fixed .container .btn_wrap {
  position: sticky;
  top: 0;
  left: 0;
  height: 50px;
  margin-top: -30px;
  padding-top: 30px;
}
#Top main .blg_sec {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  padding-top: 160px;
  padding-bottom: 160px;
}
#Top main .blg_sec .container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  column-gap: 120px;
  max-width: 100%;
  margin: 0;
  padding-left: 410px;
  padding-right: 100px;
}
#Top main .blg_sec .container .blog_list li {
  padding-bottom: 30px;
}
#Top main .blg_sec .container .blog_list li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  display: flex;
  column-gap: 60px;
  transition: all 0.6s ease;
  word-break: break-all;
}
#Top main .blg_sec .container .blog_list li a .day_cate {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  flex-shrink: 0;
}
#Top main .blg_sec .container .blog_list li a .day_cate small {
  padding-left: 20px;
}
#Top main .blg_sec .container .blog_list li a:hover {
  color: #000;
}
#Top main .blg_sec .container .blog_list li:last-child {
  padding-bottom: 0;
}
@media (max-width: 940px) {
  #Top main .blg_sec .container {
    padding-left: 310px;
    padding-right: 30px;
    column-gap: 80px;
  }
  #Top main .blg_sec .container .blog_list li a {
    column-gap: 40px;
  }
}
#Top main .ins_sec {
  display: block;
  position: relative;
  overflow: hidden;
}
#Top main .ins_sec .loop-swiper {
  z-index: 0;
  display: flex;
  column-gap: 30px;
  position: relative;
}
#Top main .ins_sec .loop-swiper .insta_list {
  display: flex;
  justify-content: flex-start;
  column-gap: 30px;
}
#Top main .ins_sec .loop-swiper .insta_list li a {
  display: block;
}
#Top main .ins_sec .loop-swiper .insta_list li a img {
  aspect-ratio: 1/1;
  image-rendering: -webkit-optimize-contrast;
  transform: scale(1);
  transition: all 0.5s ease-out;
  max-width: 155px;
  min-width: 155px;
  width: 100%;
  object-fit: cover;
}
#Top main .ins_sec .loop-swiper .insta_list li a:hover img {
  filter: grayscale(10%);
  transform: scale(1.03);
}
#Top main .ins_sec .loop-swiper .insta_list.swiper-wrapper {
  transition-timing-function: linear;
}

/*==================================
  Works
==================================*/
#Works {
  overflow: hidden;
}
#Works main .head_sec .container {
  max-width: 100%;
  margin-bottom: 60px;
  margin-left: 330px;
  overflow: hidden;
  width: 100%;
}
#Works main .head_sec .container picture {
  display: block;
}
#Works main .head_sec .container picture img {
  object-fit: cover;
  width: 100%;
}
@media (max-width: 940px) {
  #Works main .head_sec .container {
    margin-left: 230px;
  }
}
#Works main .wrks_sec .container {
  max-width: 100%;
  padding-left: 330px;
  padding-right: 0;
  width: 100%;
}
#Works main .wrks_sec .container .works_list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 50px 10px;
}
#Works main .wrks_sec .container .works_list li {
  width: calc(50% - 5px);
}
#Works main .wrks_sec .container .works_list li a {
  color: #000;
  transition: all 0.6s ease;
}
#Works main .wrks_sec .container .works_list li a dl {
  min-width: 240px;
}
#Works main .wrks_sec .container .works_list li a dl dt {
  margin-bottom: 15px;
  overflow: hidden;
}
#Works main .wrks_sec .container .works_list li a dl dt picture {
  display: block;
}
#Works main .wrks_sec .container .works_list li a dl dt picture img {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  aspect-ratio: 3/2;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  object-fit: cover;
}
#Works main .wrks_sec .container .works_list li a dl dd .name {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 11px;
  padding-right: 30px;
  position: relative;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#Works main .wrks_sec .container .works_list li a dl dd .name::after {
  content: "";
  background-color: #cdcdcd;
  height: 10px;
  width: 1px;
  position: absolute;
  right: 15px;
  top: 4px;
}
#Works main .wrks_sec .container .works_list li a dl .cate {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 11px;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#Works main .wrks_sec .container .works_list li a:hover dl dt picture img {
  transition: transform 1200ms;
  transform: scale(1.06);
}
#Works main .wrks_sec .container .works_list li a:hover dl dd .name {
  color: #858585;
}
#Works main .wrks_sec .container .works_list li a:hover dl dd .cate {
  color: #858585;
}
#Works main .wrks_sec .container .works_list li:nth-of-type(2) picture {
  transition-delay: 0.3s;
}
#Works main .wrks_sec .container .works_list li:nth-of-type(3) picture {
  transition-delay: 0.5s;
}
#Works main .wrks_sec .container .works_list li:nth-of-type(4) picture {
  transition-delay: 0.7s;
}
#Works main .wrks_sec .container .works_list li:nth-of-type(6) picture {
  transition-delay: 0.3s;
}
#Works main .wrks_sec .container .works_list li:nth-of-type(7) picture {
  transition-delay: 0.3s;
}
#Works main .wrks_sec .container .works_list li:nth-of-type(8) picture {
  transition-delay: 0.4s;
}
#Works main .wrks_sec .container.detail {
  padding-right: 50px;
}
@media (max-width: 940px) {
  #Works main .wrks_sec .container {
    padding-right: 0;
    padding-left: 230px;
  }
}
#Works main .wrks_sec h3 {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
  padding-bottom: 10px;
}
#Works main .wrks_sec .cate {
  color: #858585;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 11px;
}
#Works main .wrks_sec .info_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 100px;
  padding-top: 80px;
  padding-bottom: 120px;
  padding-left: 90px;
  transition: 0.3s;
}
#Works main .wrks_sec .info_wrap .tbl_info {
  font-size: 12px;
  flex-shrink: 0;
  max-width: 320px;
}
#Works main .wrks_sec .info_wrap .tbl_info th {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  width: 56px;
  padding-bottom: 12px;
  padding-right: 30px;
  text-align: right;
}
#Works main .wrks_sec .info_wrap .txt_lead {
  line-height: 2.5;
  position: relative;
  top: -6px;
}
@media (max-width: 1200px) {
  #Works main .wrks_sec .info_wrap {
    column-gap: 40px;
    padding-left: 50px;
  }
}
@media (max-width: 1080px) {
  #Works main .wrks_sec .info_wrap {
    flex-direction: column;
    row-gap: 50px;
    padding-left: 0;
  }
}
#Works main .wrks_sec .article_wrap img {
  padding-bottom: 24px;
  max-width: initial;
  width: calc(100% + 100px);
}
#Works main .wrks_sec .article_wrap p {
  line-height: 2.5;
  padding-bottom: 24px;
}
#Works main .page_navigation .wp-pagenavi {
  align-items: baseline;
  padding-right: 30px;
}

/*==================================
  Blog
==================================*/
#Blog {
  overflow: hidden;
}
#Blog main .blg_sec {
  justify-content: flex-start;
}
#Blog main .blg_sec .container {
  max-width: 100%;
  padding-left: 410px;
  padding-right: 100px;
  width: 100%;
}
#Blog main .blg_sec .container .blog_list li {
  padding-bottom: 10px;
}
#Blog main .blg_sec .container .blog_list li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  display: flex;
  line-height: 2;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.6s ease;
  word-break: break-all;
}
#Blog main .blg_sec .container .blog_list li a .day_cate {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  flex-shrink: 0;
  width: 190px;
}
#Blog main .blg_sec .container .blog_list li a .day_cate small {
  padding-left: 20px;
}
#Blog main .blg_sec .container .blog_list li a:hover {
  color: #000;
}
#Blog main .blg_sec .container .blog_list li:first-child a {
  padding-top: 0;
}
#Blog main .blg_sec .container .blog_list li:last-child {
  padding-bottom: 0;
}
#Blog main .blg_sec .container .ttl_blog {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  letter-spacing: 0.12em;
  padding-top: 200px;
  padding-bottom: 50px;
}
#Blog main .blg_sec .container .ttl_blog h3 {
  color: #000;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  padding-right: 30px;
  word-break: break-all;
}
#Blog main .blg_sec .container .ttl_blog .day_cate {
  display: flex;
  column-gap: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
#Blog main .blg_sec .container .article_wrap {
  word-break: break-all;
}
#Blog main .blg_sec .container .article_wrap p {
  line-height: 3;
  letter-spacing: 0.18em;
  padding-bottom: 36px;
  word-break: break-all;
}
#Blog main .blg_sec .container .article_wrap p a {
  display: inline-block;
  overflow: hidden;
  line-height: 2;
  position: relative;
  top: 7px;
}
#Blog main .blg_sec .container .article_wrap p a::before {
  content: "";
  background-color: #e7e7e7;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.4s;
  transition-delay: 0.2s;
}
#Blog main .blg_sec .container .article_wrap p a::after {
  content: "";
  background-color: #e7e7e7;
  width: 100%;
  height: 1px;
  position: absolute;
  left: -1px;
  bottom: 0;
  transform: translateX(-100%);
  transition: 0.4s;
  transition-delay: 0;
}
#Blog main .blg_sec .container .article_wrap p a:hover::before {
  transform: translateX(100%);
  transition-delay: 0;
}
#Blog main .blg_sec .container .article_wrap p a:hover::after {
  transform: translateX(0);
  transition-delay: 0.4s;
}
#Blog main .blg_sec .container .article_wrap figure {
  padding-bottom: 36px;
}
#Blog main .blg_sec .container .article_wrap figure img {
  max-width: 650px;
  width: 100%;
}
@media (max-width: 940px) {
  #Blog main .blg_sec .container {
    padding-right: 50px;
    padding-left: 310px;
  }
}
@media (max-width: 940px) {
  #Blog main .blg_sec.detail_sec .container {
    padding-right: 50px;
    padding-left: 230px;
  }
}
#Blog main .page_navigation .wp-pagenavi {
  padding-top: 90px;
  align-items: baseline;
}

/*==================================
  About
==================================*/
#About {
  overflow: hidden;
}
#About main .head_sec .container {
  max-width: 100%;
  margin-left: 330px;
  margin-bottom: 120px;
  overflow: hidden;
}
#About main .head_sec .container picture {
  display: block;
}
@media (max-width: 940px) {
  #About main .head_sec .container {
    margin-left: 230px;
  }
}
#About main .poli_sec {
  padding-bottom: 120px;
}
#About main .poli_sec .container {
  max-width: 100%;
  padding-left: 480px;
  padding-right: 100px;
}
#About main .poli_sec .container h3 {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  padding-bottom: 30px;
}
#About main .poli_sec .container .txt_lead {
  line-height: 3;
  letter-spacing: 0.18em;
  padding-bottom: 40px;
  text-align: justify;
  word-break: break-all;
}
#About main .poli_sec .container .txt_sign {
  text-align: right;
  letter-spacing: 0.18em;
  padding-right: 2px;
}
@media (max-width: 1120px) {
  #About main .poli_sec .container {
    padding-left: 380px;
    padding-right: 50px;
  }
}
@media (max-width: 940px) {
  #About main .poli_sec .container {
    padding-left: 300px;
    padding-right: 50px;
  }
}
#About main .pro_sec .container {
  max-width: 1270px;
  padding-left: 330px;
  padding-right: 100px;
  width: 100%;
}
#About main .pro_sec .container h3 {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  padding-bottom: 30px;
}
#About main .pro_sec .container .profile_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: clamp(50px, 5vw, 100px);
}
#About main .pro_sec .container .profile_wrap figure {
  max-width: 332px;
  width: 100%;
  transition: all 0.6s ease;
}
#About main .pro_sec .container .profile_wrap .profile {
  padding-top: 60px;
}
#About main .pro_sec .container .profile_wrap .profile h4 {
  color: #000;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding-bottom: 40px;
  letter-spacing: 0.2em;
}
#About main .pro_sec .container .profile_wrap .profile h4 span {
  color: #858585;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 10px;
  display: block;
  padding-top: 10px;
  letter-spacing: 0.06em;
}
#About main .pro_sec .container .profile_wrap .profile .tbl_profile {
  font-size: 12px;
  margin-bottom: 40px;
  width: 100%;
}
#About main .pro_sec .container .profile_wrap .profile .tbl_profile tr {
  padding-bottom: 3px;
}
#About main .pro_sec .container .profile_wrap .profile .tbl_profile th {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  width: 15%;
  text-align: left;
}
#About main .pro_sec .container .profile_wrap .profile .tbl_profile td {
  line-height: 2.5;
  padding-left: 12px;
}
#About main .pro_sec .container .profile_wrap .profile .tbl_profile td span {
  display: inline-block;
}
#About main .pro_sec .container .profile_wrap .profile h5 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding-bottom: 15px;
}
#About main .pro_sec .container .profile_wrap .profile .txt_lead {
  padding-bottom: 15px;
}
#About main .pro_sec .container .profile_wrap .profile .txt_lead span {
  display: inline-block;
}
#About main .pro_sec .container .profile_wrap .profile .txt_lead.mb {
  margin-bottom: 50px;
  padding-bottom: 0;
}
@media (max-width: 1120px) {
  #About main .pro_sec .container {
    padding-right: 50px;
  }
  #About main .pro_sec .container .profile_wrap {
    column-gap: 50px;
  }
  #About main .pro_sec .container .profile_wrap figure {
    max-width: 262px;
    width: 100%;
  }
  #About main .pro_sec .container .profile_wrap .profile .tbl_profile th {
    width: 13%;
  }
}
@media (max-width: 940px) {
  #About main .pro_sec .container {
    padding-left: 230px;
  }
  #About main .pro_sec .container .profile_wrap figure {
    max-width: 232px;
  }
}
@media (max-width: 840px) {
  #About main .pro_sec .container .profile_wrap figure {
    max-width: 202px;
  }
}
#About main .acc_sec {
  padding-top: 120px;
}
#About main .acc_sec .container {
  max-width: 100%;
  padding-left: 330px;
  width: 100%;
}
#About main .acc_sec .container iframe {
  filter: grayscale(1);
  min-height: 560px;
}
#About main .acc_sec .container .info_wrap {
  padding-top: 50px;
  display: flex;
  justify-content: flex-end;
  padding-right: 100px;
}
#About main .acc_sec .container .info_wrap dl dt {
  color: #000;
  font-size: 15px;
  letter-spacing: 0.12em;
  padding-bottom: 30px;
}
#About main .acc_sec .container .info_wrap dl dd {
  line-height: 2.5;
}
@media (max-width: 940px) {
  #About main .acc_sec .container {
    padding-left: 230px;
  }
  #About main .acc_sec .container iframe {
    min-height: 360px;
  }
}

/*==================================
  Privacy
==================================*/
#Privacy {
  overflow: hidden;
}
#Privacy main .content_sec .container {
  max-width: 100%;
  padding-left: 330px;
  padding-right: 100px;
  width: 100%;
}
#Privacy main .content_sec .container p {
  line-height: 2.5;
  padding-bottom: 36px;
}
#Privacy main .content_sec .container dl {
  padding-bottom: 36px;
}
#Privacy main .content_sec .container dl dt {
  line-height: 2.5;
  color: #000;
}
#Privacy main .content_sec .container dl dd {
  line-height: 2.5;
}
#Privacy main .content_sec .container dl dd ul.pd {
  padding: 0 0 6px 0;
}
#Privacy main .content_sec .container dl dd ul li {
  text-indent: -8px;
  margin-left: 8px;
  padding-top: 6px;
  padding-left: 12px;
}

/*==================================
  Contact_reset
==================================*/
main#Contact {
  /*------ Reset CSS ------*/
  /*------ Reset END ------*/
}
main#Contact input {
  -webkit-appearance: none;
}
main#Contact input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
main#Contact input[type=radio] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
main#Contact input[type=radio]:checked + label {
  background: #ff0000;
}
main#Contact input[type=checkbox] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
main#Contact input[type=checkbox]:checked + label {
  background: #ff0000;
}
main#Contact input::placeholder {
  color: #b7b7b7;
}
main#Contact input:-ms-input-placeholder {
  color: #b7b7b7;
}
main#Contact input::-webkit-input-placeholder {
  color: #b7b7b7;
}
main#Contact button,
main#Contact input[type=button],
main#Contact input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
main#Contact textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}
main#Contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

/*==================================
  Contact_base
==================================*/
/* input, textarea
--------------------------------*/
/* radio_button
--------------------------------*/
main#Contact {
  /*------ Form Base ------*/
  /*------ Form Base END ------*/
}
@keyframes onAutoFillStart {}
main#Contact span.error {
  color: #cc0303;
  display: block;
  margin: 7px 0 0;
}
main#Contact input:-webkit-autofill {
  animation-name: onAutoFillStart;
  background: rgb(255, 255, 255) !important;
  transition: background-color 50000s ease-in-out 0s;
}
main#Contact input[type=text]:focus,
main#Contact input[type=email]:focus,
main#Contact input[type=tel]:focus,
main#Contact input[type=search]:focus,
main#Contact input[type=url]:focus,
main#Contact textarea:focus {
  color: #000;
  background-color: #f8f8f8;
}
main#Contact .ERR {
  color: #cc0303;
}
main#Contact input[type=text] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  padding: 21px 21px;
  background: #f8f8f8;
  box-sizing: border-box;
  color: #000;
  width: 100%;
}
main#Contact input[type=text].zip {
  max-width: 247px;
  width: 100%;
}
main#Contact .zip-wrap {
  background: #f8f8f8;
  display: inline-block;
  position: relative;
  max-width: 247px;
  width: 100%;
  margin-right: 3px;
}
main#Contact .zip-wrap::before {
  content: "〒*";
  font-size: 13px;
  position: absolute;
  top: 1.8em;
  left: 24px;
  margin: auto;
}
main#Contact .zip-wrap input {
  padding: 21px 21px 21px 55px;
  width: 100%;
}
main#Contact input[type=button] {
  font-size: 12px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  color: #000;
  max-width: 140px;
  margin-left: 20px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  position: relative;
  top: -4px;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid #e7e7e7;
}
main#Contact input[type=button]:hover {
  background: none;
  opacity: 0.7;
}
main#Contact input[type=checkbox] + label {
  padding-left: 29px;
  position: relative;
  margin-right: 29px;
  cursor: pointer;
}
main#Contact input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #dddddd;
  background: #f8f8f8;
  box-sizing: border-box;
}
main#Contact input[type=checkbox] + label::after {
  content: "";
  opacity: 0;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  display: block;
  height: 9px;
  left: 7px;
  margin-top: -8px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
main#Contact input[type=checkbox]:checked + label {
  background: none;
}
main#Contact input[type=checkbox]:checked + label::after {
  opacity: 1;
}
main#Contact input[type=radio] + label {
  padding-left: 27px;
  position: relative;
  margin-right: 27px;
  cursor: pointer;
}
main#Contact input[type=radio] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #dddddd;
  background: #f8f8f8;
  box-sizing: border-box;
  border-radius: 50%;
}
main#Contact input[type=radio] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 50%;
  opacity: 0;
}
main#Contact input[type=radio]:checked + label {
  background: none;
}
main#Contact input[type=radio]:checked + label::after {
  opacity: 1;
}
main#Contact .select-box {
  overflow: hidden;
  width: 60%;
  text-align: center;
  position: relative;
  border-radius: 2px;
  background: #f8f8f8;
}
main#Contact .select-box select {
  font-size: 16px;
  color: #000;
  letter-spacing: 0.035em;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 12px 38px 12px 21px;
}
main#Contact .select-box select::-ms-expand {
  display: none;
}
main#Contact .select-box::before {
  position: absolute;
  top: 1.25em;
  right: 21px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  pointer-events: none;
}
main#Contact textarea {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  background: #f8f8f8;
  box-sizing: border-box;
  width: 100%;
  padding: 21px 21px;
  min-height: 174px;
}
main#Contact .overscroll {
  overflow-y: scroll;
  height: 237px;
  padding: 25px 21px;
  background: #f8f8f8;
}
main#Contact .overscroll ul > li {
  margin-bottom: 25px;
}
main#Contact .overscroll ul > li strong {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 5px;
  color: #000;
}
main#Contact .overscroll ul > li p {
  font-size: 14px;
  line-height: 1.42;
}
main#Contact .overscroll ul > li > ol {
  margin-top: 5px;
}
main#Contact .overscroll ul > li > ol li {
  text-indent: -1.25em;
  padding-left: 1.25em;
}
main#Contact .overscroll ul > li:first-child strong {
  margin-bottom: 20px;
}
main#Contact .overscroll ul > li:last-child {
  margin-bottom: 0;
}
main#Contact .submit_area {
  margin-top: 85px;
  text-align: right;
}
main#Contact .submit_area span {
  font-size: 15px;
  letter-spacing: 0.08em;
}
main#Contact .submit_area input[type=submit] {
  letter-spacing: 0.08em;
  cursor: pointer;
}
main#Contact .submit_area input[type=submit] {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
main#Contact .submit_area ul.koumoku {
  max-width: 100%;
  margin: 20px 0 0;
  display: flex;
  justify-content: flex-end;
  column-gap: 30px;
}
main#Contact .submit_area ul.koumoku li input[type=submit] {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
main#Contact .submit_area ul.koumoku li:hover {
  background: none;
}
main#Contact .submit_area ul.koumoku li:hover input[type=submit] {
  color: #000;
}
main#Contact .submit_area ul.koumoku li:hover svg path {
  fill: #000;
}
/*==================================
  Contact
==================================*/
main#Contact .agree_area {
  margin: 20px 0 0;
  text-align: left;
}
main#Contact .agree_area p {
  color: #858585;
}
main#Contact .agree_area p a {
  font-size: 12px;
  color: #858585;
}
main#Contact .need {
  color: #616060;
  padding-left: 5px;
}
main#Contact table {
  display: block;
}
main#Contact table tbody {
  display: block;
}
main#Contact table tr {
  display: block;
  margin-bottom: 20px;
  position: relative;
}
main#Contact table tr td {
  display: block;
  position: relative;
}
main#Contact table tr td label {
  position: relative;
}
main#Contact table tr td .address_area {
  position: relative;
  display: block;
}
main#Contact table tr td .text02 {
  margin-top: 8px;
}
main#Contact table tr td input::placeholder, main#Contact table tr td textarea::placeholder, main#Contact table tr td .text02::placeholder {
  opacity: 0;
}
main#Contact table tr td .zip::placeholder {
  opacity: 1 !important;
  color: #616060;
  font-size: 11px !important;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
  top: -3px;
}
main#Contact table tr td .lbl {
  color: #616060;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  position: absolute;
  left: 24px;
  top: 0;
  transform: translateY(0);
  transition: all 0.3s;
}
main#Contact table tr td label:focus-within > .lbl,
main#Contact table tr td label small:focus-within > .lbl,
main#Contact table tr td input:not(:placeholder-shown) + .lbl,
main#Contact table tr td textarea:not(:placeholder-shown) + .lbl,
main#Contact table tr td input:-webkit-autofill + .lbl,
main#Contact table tr td input:not(:placeholder-shown) + .error + .lbl {
  transform: translateY(-20px);
}
main#Contact table tr:nth-of-type(3) {
  margin-bottom: 0;
}
main#Contact table tr:nth-of-type(6) td .lbl {
  top: -132px;
}
main#Contact .check-list {
  padding-top: 5px;
  padding-left: 0;
}
main#Contact .check-list li {
  display: inline-block;
}
main#Contact .form-sec .container {
  max-width: 1270px;
  padding-left: 442px;
  padding-right: 100px;
  width: 100%;
}
main#Contact .form-sec .container dl {
  padding-bottom: 60px;
}
main#Contact .form-sec .container dl dt {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  padding-bottom: 20px;
}
main#Contact .form-sec .container dl dt span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
main#Contact .form-sec .container dl dt small {
  font-size: 12px;
  display: block;
  padding-top: 6px;
  font-feature-settings: "palt";
}
main#Contact .form-sec .container dl dd {
  line-height: 2.5;
}
main#Contact .form-sec .container dl dd .btn_wrap {
  padding-top: 30px;
}
main#Contact .form-sec .container dl dd .btn_wrap a {
  background: none;
}
main#Contact .form-sec .container dl dd .btn_wrap a:hover {
  color: #000;
}
main#Contact .form-sec .container dl:nth-of-type(2) {
  padding-bottom: 0;
}
main#Contact .form-sec .container dl:nth-of-type(3) {
  border-bottom: 1px solid #e7e7e7;
  padding-top: 60px;
  padding-bottom: 60px;
}
main#Contact .form-sec .container dl:nth-of-type(3) dt a {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin-left: 20px;
  position: relative;
  top: 9px;
}
main#Contact .form-sec .container dl:nth-of-type(4) {
  padding-top: 60px;
  padding-bottom: 30px;
}
@media (max-width: 940px) {
  main#Contact .form-sec .container {
    padding-right: 50px;
    padding-left: 342px;
  }
}
main#Contact .form_wrap > p.txt_lead {
  margin-top: 0 !important;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #858585;
  line-height: 2.5;
  padding-bottom: 30px;
}
main#Contact.sfm2 table tr {
  display: flex;
  align-items: baseline;
  column-gap: 30px;
  margin-bottom: 40px;
}
main#Contact.sfm2 table tr th {
  color: #616060;
  font-size: 11px;
  font-family: "Roboto";
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: left;
  width: 80px;
}
main#Contact.sfm2 table tr td p {
  font-size: 14px;
  overflow-wrap: break-word;
}
main#Contact.sfm3 p.txt_lead {
  margin-top: 0 !important;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #858585;
  line-height: 2.5;
  padding-bottom: 30px;
}
main#Contact.sfm3 .contact_back {
  text-align: right;
}
main#Contact.sfm3 .contact_back a {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 2;
}