@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/*＝＝＝＝＝＝test＝＝＝＝＝＝*/
/*-----------------------------*/
.slick-slide {
  height: inherit;
  max-height: 720px;
}

.slider_text_wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slick-initialized .slick-slide figure {
  position: relative;
}

.slider_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: brown;
  z-index: 999;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  font-weight: 500;
}
.slider_text > p {
  font-size: 30px;
}

.fade-in {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*ローディング
.loading {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}
.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}
.loading .circle {
  display: block;
  position: relative;
  top: calc( 50% - 20px );
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 8px solid #e0e0e0;
  border-top: 7px solid #ffcccc;
  border-radius: 50px;
  animation: loading 700ms linear 0ms infinite normal both;
}
@keyframes loading {
  0% { transform: rotate( 0deg ); }
  100% { transform: rotate( 360deg ); }
}
*/
/*end loading*/
#Top .undercon {
  margin: 50px auto 50px;
  max-width: 800px;
  text-align: center;
}
#Top .undercon .logo {
  width: 100%;
  max-width: 200px;
  margin: 150px auto 50px;
}
#Top .uc_footer {
  margin-top: 150px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

/*end under construction*/
body {
  letter-spacing: 0.03em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
span,
tr {
  font-size: 16px;
  line-height: 1.5;
}

.sp {
  display: none !important;
}

a {
  color: #40246b;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #40246b;
}
a:hover {
  color: #40246b;
  text-decoration: none;
}
a:active {
  color: #40246b;
}
a.tel {
  pointer-events: none;
  cursor: default;
}
a.link:hover {
  opacity: 0.7;
}

.tel-link {
  pointer-events: none;
}

/*font inter*/
.inter {
  font-family: "Inter", sans-serif;
}

/*pagination*/
/*wp-pagenavi base*/
.wp-pagenavi {
  clear: both;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #999;
  background-color: #FFF;
  border: solid 1px #e0e0d2;
  padding: 8px 15px;
  margin: 0 2px;
  white-space: nowrap;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  color: #FFF;
  background-color: #999;
  border-color: #999;
}

.wp-pagenavi span.current {
  color: #FFF;
  background-color: #9e67a9;
  border-color: #9e67a9;
  font-weight: bold;
}

/*＝＝＝＝＝＝main＝＝＝＝＝＝*/
main {
  display: block;
}

/*＝＝＝＝＝＝header＝＝＝＝＝＝*/
header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
  height: 102px;
}
header .header_inner {
  position: relative;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  z-index: 999;
  align-items: center;
  height: 100%;
  background: white;
}
header .header_inner .shadow {
  box-shadow: 0px 0px 5px #878f97;
}
header .header_inner .logo {
  width: 110px;
  height: auto;
  position: absolute;
  left: 20px;
}
header .header_inner .logo a {
  display: block;
}
header .header_inner .logo img {
  width: 100%;
}
header .header_inner #js-hamburger {
  display: none;
}
header .header_inner nav ul {
  position: absolute;
  right: 270px;
  bottom: 16px;
  max-width: 640px;
  margin: 0;
  top: 17px;
  display: flex;
  align-items: center;
}
header .header_inner nav ul > li {
  display: inline-block;
}
header .header_inner nav ul > li > a {
  padding: 14px;
  text-align: center;
  font-size: 15px;
  color: #40246b;
  position: relative;
  font-weight: 500;
}
header .header_inner nav ul > li > a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 4px;
  background: #40246b;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
header .header_inner nav ul > li > a:hover::after {
  transform: scale(1, 1);
}
header .header_inner nav ul > li.sns_wrap {
  display: inline;
}
header .header_inner nav ul > li.sns_wrap .sns_link {
  position: absolute;
  right: 0px;
  bottom: 3px;
}
header .header_inner nav ul > li.sns_wrap .sns_link a:first-child {
  padding: 10px 3px 10px 10px;
}
header .header_inner nav ul > li.sns_wrap .sns_link a:last-child {
  padding: 10px 0px 10px 3px;
}
header .header_inner nav ul > li.sns_wrap .sns_link a img {
  width: 40px;
}
header .header_inner nav .contact_wrap {
  position: absolute;
  right: 20px;
  top: 25px;
}
header .header_inner nav .contact_wrap a {
  color: white;
  background-color: #40246b;
  height: 47px;
  width: 236px;
  line-height: 47px;
  border-radius: 23px;
  display: inline-block;
  justify-content: center;
  text-align: center;
}

main .lead_txt {
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.7;
}

.container {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  /*box-sizing: border-box;*/
}
@media (max-width: 899px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col_2 {
  flex: 0 0 25%;
  max-width: 25%;
}
.row .col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  box-sizing: border-box;
}
.row .col_6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.triangle_r {
  padding-right: 10px;
}

.link_btn {
  text-align: center;
}
.link_btn a {
  display: inline-block;
  padding: 10px 60px 10px 38px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  transition: none;
  position: relative;
  border-radius: 21px;
  box-sizing: border-box;
  background: url(../images/common/arrow_02_w.svg) no-repeat center right 10px;
  background-size: 10%;
  transition: 0.3s;
}
.link_btn a:hover {
  background: url(../images/common/arrow_02_w.svg) no-repeat center right 5px;
  background-size: 10%;
}

.link_btn a.bg_navy {
  background-color: #1e1e66;
  color: white !important;
  padding-bottom: 10px !important;
}

.link_btn02 {
  background-color: black;
  color: white;
  text-align: center;
  line-height: 38px;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 25px;
  position: relative;
  height: 38px;
  display: inline-block;
  padding: 0px 35px 0 25px;
  transition: 0.3s;
  position: relative;
}
.link_btn02:hover, .link_btn02:visited {
  color: white;
  opacity: 0.7;
}
.link_btn02:after {
  content: "";
  display: block;
  background: url(/images/common/arrow_r.svg) no-repeat;
  position: absolute;
  top: 12px;
  right: 10px;
  width: 12px;
  height: 12px;
  background-size: contain;
}

.link_btn:visited {
  color: white;
}

.anc {
  display: block;
  margin-top: -102px;
  padding-top: 102px;
}

a[href^="tel:"] {
  pointer-events: none;
}

/*背景色*/
.bg_navy {
  background-color: #0e103d;
}

.bg_gray {
  background-color: #d5d5d5;
}

.bg_gray02 {
  background-color: #f4f4f4;
}

/*anchor price用*/
.anchor {
  margin-top: -30px;
  padding-top: 30px;
}

/*font color*/
.font_red {
  color: #cd0e3b;
}

/*＝＝＝＝＝＝second page＝＝＝＝＝＝*/
main .lead_sec {
  padding-top: 70px;
  padding-bottom: 100px;
}
main .lead_sec .second_tit {
  font-size: 30px;
  position: relative;
  padding-bottom: 36px;
  text-align: center;
}
main .lead_sec .second_tit::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  background-color: #40246b;
  position: absolute;
  left: 50%;
  bottom: 9px;
  transform: translateX(-50%);
}
main .lead_sec p {
  padding-top: 43px;
  text-align: center;
  line-height: 1.7;
}

.sub-header {
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  color: #631972;
}
@media (max-width: 1110px) {
  .sub-header {
    height: 230px;
  }
}
@media (max-width: 950px) {
  .sub-header {
    height: 220px;
  }
}
.sub-header::after {
  content: "";
  width: 100%;
  height: 270px;
  /*background-color: rgba(0, 0, 0, 0.17);*/
  position: absolute;
  left: 0;
  top: 0;
}
.sub-header .container {
  width: 100%;
}
.sub-header h1 {
  font-size: 50px;
  position: relative;
  color: #631972;
  /*text-shadow: 0 2px 5px rgba(176, 176, 176, 0.5);*/
  z-index: 1;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  border-left: 2px solid #631972;
  padding-left: 20px;
}
.sub-header h1 .ttl_en {
  font-size: 14px;
  display: block;
  line-height: 1.7;
  text-align: left;
  padding-top: 7px;
}

/*ヘッダー下余白*/
.wrapper {
  padding-top: 50px;
}

/*404*/
.page404_title {
  font-size: 20px;
  padding-bottom: 15px;
}

a.link_top {
  color: #40246b;
  font-weight: bold;
}
a.link_top:active, a.link_top:visited, a.link_top:hover {
  color: #40246b;
}

/*＝＝＝＝＝＝共通＝＝＝＝＝＝*/
/*ふわっと表示*/
.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*タイトル共通*/
.title {
  text-align: center;
  padding-bottom: 70px;
  color: #40246b;
  font-size: 38px;
}
.title .title_jp {
  font-size: 12px;
  padding-left: 30px;
}

.sec_works {
  padding-bottom: 82px;
  background-color: #f6f0ff;
  /*.sliderArea.w300 {
    max-width: 300px;
  }*/
  /*====================================================================
  .full-screen
  ====================================================================*/
}
.sec_works h2 {
  padding-top: 82px;
}
.sec_works .lead_txt {
  padding-bottom: 75px;
  text-align: center;
}
.sec_works .sliderArea {
  /*max-width: 100%;*/
  max-width: 1780px;
  overflow: hidden;
  margin: 0 auto 58px;
  padding: 0 25px 50px;
}
.sec_works .slick-slide {
  margin: 0 15px 0;
  position: relative;
}
.sec_works .slick-slide a {
  transition: 0.3s;
}
.sec_works .slick-slide a img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.sec_works .slick-slide a img:hover {
  opacity: 0.7;
}
.sec_works .slick-slide a .text {
  position: absolute;
  bottom: -31px;
  left: 50%;
  transform: translateX(-50%);
  width: 243px;
  padding: 17px;
  border: 1px solid #0e103d;
  background: white;
  text-align: center;
  font-weight: bold;
  transition: 0.3s;
}
.sec_works .slick-slide a .text:hover {
  /*background-color: rgba(255, 255, 255, 0.8);*/
  opacity: 0.7;
}
.sec_works .slick-prev:hover, .sec_works .slick-prev:focus, .sec_works .slick-next:hover, .sec_works .slick-next:focus {
  color: white;
  outline: none;
  background: #0e103d;
}
.sec_works .slick-prev, .sec_works .slick-next {
  z-index: 1;
  width: 50px;
  height: 50px;
  background: #0e103d;
}
.sec_works .slick-prev:before, .sec_works .slick-next:before {
  opacity: 1;
}
.sec_works .slick-prev:hover::before, .sec_works .slick-next:hover::before {
  opacity: 0.75;
  transition: 0.3s;
}
.sec_works .slick-prev:before {
  content: "";
  display: block;
  background: url(../images/common/slider_prev.svg) no-repeat center;
  width: 19px;
  height: 32px;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.sec_works .slick-next:before {
  content: "";
  display: block;
  background: url(../images/common/slider_next.svg) no-repeat center;
  width: 18px;
  height: 30px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.sec_works .thumb {
  margin: 20px 0 0;
}
.sec_works .thumb .slick-slide {
  cursor: pointer;
}
.sec_works .thumb .slick-slide:hover {
  opacity: 0.7;
}
.sec_works .full-screen .slick-list {
  overflow: visible;
}
.sec_works .full-screen.slider {
  max-width: 630px;
  margin: 0 auto;
}

.sec_area {
  padding-top: 20px;
  padding-bottom: 60px;
}
.sec_area .title {
  padding-bottom: 40px;
}
.sec_area .container {
  padding: 40px 20px 50px;
}
.sec_area .lead_txt {
  padding-bottom: 75px;
  text-align: center;
}
.sec_area .area_box {
  max-width: 720px;
  width: 100%;
  min-height: 270px;
  margin: -11px auto auto;
}
.sec_area .area_box .text {
  padding: 30px 40px;
  width: calc(100% - 368px);
  box-sizing: border-box;
}
.sec_area .area_box .text h3 {
  font-size: 25px;
  font-weight: bold;
  border-bottom: 2px solid #40246b;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.sec_area .area_box .text .detail h4 {
  font-weight: bold;
  padding-bottom: 3px;
}
.sec_area .area_box .text .detail .ward {
  padding-bottom: 5px;
  line-height: 1.6;
}
.sec_area .area_box .map {
  float: right;
  width: 368px;
}

.sec_contact {
  background-color: #f6f0ff;
}
.sec_contact .container {
  padding: 60px 20px 50px;
}
.sec_contact .bg_contact {
  padding-top: 20px;
  padding-bottom: 23px;
}
.sec_contact .bg_contact h2 {
  padding-bottom: 30px;
}
.sec_contact .bg_contact .lead_txt {
  text-align: center;
  padding-bottom: 30px;
}
.sec_contact .bg_contact .contact_box {
  max-width: 800px;
  box-sizing: border-box;
  background-color: #0e103d;
  border-radius: 25px;
  margin: auto auto 40px;
  padding: 45px 100px 45px;
}
.sec_contact .bg_contact .contact_box .link_btn_contact {
  position: relative;
  display: flex;
  justify-content: center;
}
.sec_contact .bg_contact .contact_box .link_btn_contact a {
  color: white;
  display: inline-block;
  padding: 10px 60px 10px 38px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  transition: none;
  position: relative;
  border-radius: 21px;
  box-sizing: border-box;
  background: url(../images/common/arrow_02_w.svg) no-repeat center right 10px;
  background-size: 10%;
  transition: 0.3s;
}
.sec_contact .bg_contact .contact_box .link_btn_contact a:hover {
  background: url(../images/common/arrow_02_w.svg) no-repeat center right 5px;
  background-size: 10%;
}
.sec_contact .bg_contact .contact_box .link_btn_contact a .icon {
  color: white;
  text-align: center;
  max-width: 40px;
  position: absolute;
  top: 8%;
  z-index: 100;
  left: -12px;
}
.sec_contact .bg_contact .contact_box .phone {
  font-size: 60px;
  padding-bottom: 5px;
  margin-bottom: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #40246b;
}
.sec_contact .bg_contact .contact_box .phone .phone_icon {
  padding-right: 28px;
  margin-top: -8px;
  display: inline-block;
  padding-right: 20px;
}
.sec_contact .bg_contact .contact_box .recep_time, .sec_contact .bg_contact .contact_box .fax {
  text-align: center;
  font-weight: bold;
}
.sec_contact .bg_contact .contact_box .fax {
  font-size: 30px;
  padding-top: 30px;
  padding-bottom: 40px;
}
.sec_contact .bg_contact .contact_box .fax .text_s {
  font-size: 16px;
}

/*＝＝＝＝＝＝footer＝＝＝＝＝＝*/
footer {
  background: #bcbcbc;
}
footer .pagetop {
  cursor: pointer;
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: 0.3s;
  color: white;
  background: linear-gradient(to bottom, #2c2c6a, #681773, #cf6294);
  /*   デフォルトは非表示 */
  opacity: 0;
}
footer .footer_inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1060px;
  padding-right: 20px;
  padding-left: 20px;
}
footer .footer_inner .logo {
  padding: 0 16px;
  background-color: white;
  margin: 0 40px 0 50px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
}
@media (max-width: 1100px) {
  footer .footer_inner .logo {
    margin: 0 40px 0 30px;
  }
}
footer .footer_inner .logo img {
  width: 115px;
}
footer .footer_inner .detail {
  padding: 54px 0 60px;
  width: 45%;
}
@media (max-width: 1075px) {
  footer .footer_inner .detail {
    width: 40%;
  }
}
footer .footer_inner .detail .about {
  font-weight: bold;
  padding-bottom: 20px;
}
footer .footer_inner .detail address, footer .footer_inner .detail .tokusyou {
  line-height: 1.9;
  font-style: normal;
  font-size: 15px;
  padding-bottom: 5px;
}
footer .footer_inner .detail .tokusyou {
  padding: 10px 20px;
}
footer .footer_inner .detail .g_map {
  padding-bottom: 50px;
  margin-left: -8px;
}
footer .footer_inner .detail .g_map a {
  font-size: 15px;
}
footer .footer_inner .detail .copy small {
  text-align: left;
  font-size: 13px;
}
footer .footer_inner .footer_menu {
  padding: 54px 40px;
  display: flex;
}
@media (max-width: 1100px) {
  footer .footer_inner .footer_menu {
    padding: 54px 30px 54px 0px;
  }
}
footer .footer_inner .footer_menu .f_menu-home {
  padding-right: 24px;
  font-size: 14px;
  line-height: 2;
}
footer .footer_inner .footer_menu .f_menu-home > a {
  position: relative;
}
footer .footer_inner .footer_menu .f_menu-home > a:hover::after {
  transform: scale(1, 1);
}
footer .footer_inner .footer_menu .f_menu-home > a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #40246b;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
footer .footer_inner .footer_menu > ul {
  padding-left: 24px;
  border-left: 2px solid #40246b;
  list-style: none;
}
footer .footer_inner .footer_menu > ul > li > a {
  line-height: 2;
  font-size: 14px;
  position: relative;
}
footer .footer_inner .footer_menu > ul > li > a:hover::after {
  transform: scale(1, 1);
}
footer .footer_inner .footer_menu > ul > li > a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #40246b;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
footer .footer_inner .footer_menu > ul > li > a span.icon > img {
  max-width: 20px;
  vertical-align: middle;
  padding-right: 7px;
}

#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-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

.move {
  transform: translate(0, 0);
  opacity: 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;
}

/* ＝＝＝＝＝＝Component＝＝＝＝＝＝＝　*/
html * {
  margin: 0;
}

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

body {
  color: #40246b;
  background-color: #ffffff;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

input,
textarea,
select {
  font-style: normal;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

.bg_gray {
  background-color: #ececec;
}

.clear {
  clear: both;
}

small {
  font-size: 14px;
}

.news_ul {
  margin: 0 0 19px;
}
.news_ul .news_li {
  border-bottom: 1px solid #e8e8e8;
  padding: 22px 14px;
}
.news_ul .news_li > a {
  display: flex;
  align-items: center;
}
.news_ul .news_li > a .date {
  font-size: 16px;
  color: #919191;
  margin-right: 24px;
}
.news_ul .news_li > a .img_wrap {
  margin-right: 17px;
}
@media (min-width: 900px) {
  .news_ul .news_li > a .title {
    background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
    transition: background 0.4s ease;
  }
  .news_ul .news_li > a:hover .title {
    background-size: 100% 1px;
  }
}
@media (max-width: 899px) {
  .news_ul .news_li {
    padding: 14px 0;
  }
  .news_ul .news_li > a {
    display: block;
    position: relative;
    padding-left: 80px;
  }
  .news_ul .news_li > a .img_wrap {
    margin-right: 0;
    position: absolute;
    top: 0;
    left: -5px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .news_ul .news_li > a .img_wrap img {
    max-width: 57px;
  }
  .news_ul .news_li > a .date,
  .news_ul .news_li > a .title {
    display: block;
  }
  .news_ul .news_li > a .date {
    font-size: 14px;
    margin: 0 0 7px;
  }
  .news_ul .news_li > a .title {
    font-size: 16px;
    line-height: 1.3;
  }
}

/*＝＝＝＝＝＝top＝＝＝＝＝＝*/
/*@keyframes fade-in {
  from {
      opacity: 0;
      transform: translateY(100px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}
.slide-content-active {
    animation-name: fade-in;
    animation-duration: 2s;
    animation-delay: 2s;
    animation-fill-mode: both;
}*/
#Top main {
  /*animation*/
  /*@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  .swiper-slide-active {

    p {
        animation-name: fade-in;
        animation-duration: 2s;
        animation-delay: 2s;
        animation-fill-mode: both;
    }
  }*/
  /*.swiper_con {
    position: relative;
  }img {
    max-width: 900px;
  }
  .swiper {
    width: 100%;
    margin: 0px 0 30px;
    position: relative;
    z-index: 1;
    .swiper-slide {
      text-align: center;
      line-height: 1;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      img {
        display: inline;
        align-self: center;
        width: 100%;
        max-width: auto;
      }
    }
    .swiper-slide  {
      background-color: black;
      position: relative;
      .slide-content {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        transform: translate(-50%,-50%);
      }

      .slide_ttl {
        color: #FFF;
        font-size: 55px;
        font-weight: bold;
        text-shadow: 2px 2px rgba(0,0,0,0.7);
        @media (max-width: 1050px) {
          font-size: 40px;
        }
      }
      .slide-content .text {
        color: #FFF;
        text-shadow: .5px .5px 3px rgba(0,0,0,1);
        margin: 0;
        padding: 0;
        font-size: 18px;
        line-height: 1.8;
        padding-top: 30px;
        font-weight: bold;
      }
    }
  }*/
}
#Top main .movie {
  background-color: #d58acb;
  padding-bottom: 50px;
  padding-top: 40px;
}
#Top main .movie .youtube_wrap {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 560px;
}
#Top main .movie .youtube_wrap h3 {
  margin-top: 30px;
  font-size: 18px;
  color: white;
}
#Top main .movie .youtube_wrap .youtube {
  padding-top: 20px;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
#Top main .movie .youtube_wrap .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
#Top main .main_img_area {
  position: relative;
  margin-bottom: 20px;
  height: 590px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  #Top main .main_img_area {
    height: 420px;
  }
}
#Top main .main_img_area .main_img_bg {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 35%, #e9ebe8 35%, #e9ebe8 100%);
  width: 100%;
  height: 590px;
}
@media (max-width: 1200px) {
  #Top main .main_img_area .main_img_bg {
    height: 420px;
  }
}
#Top main .main_img_area .main_img_bg .img {
  position: absolute;
  left: 35%;
  top: 0;
  width: 100%;
  height: 590px;
  margin: 0;
}
@media (max-width: 1200px) {
  #Top main .main_img_area .main_img_bg .img {
    height: 420px;
  }
}
#Top main .main_img_area .main_img_bg .img img {
  width: auto;
  height: 590px;
  object-fit: contain;
}
@media (max-width: 1200px) {
  #Top main .main_img_area .main_img_bg .img img {
    height: 420px;
  }
}
#Top main .main_img_area .lead {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -38%;
  text-align: left;
  z-index: 90;
  display: block;
  margin-left: 105px;
  position: relative;
}
@media (max-width: 1200px) {
  #Top main .main_img_area .lead {
    margin-top: -29%;
    margin-left: 152px;
  }
}
#Top main .main_img_area .lead h2 {
  font-size: 60px;
  color: #40246b;
  line-height: 1.2;
}
#Top main .main_img_area .lead p {
  font-size: 20px;
  padding-top: 20px;
  font-weight: bold;
  color: #40246b;
  text-shadow: 0 0 6px white;
}
#Top main .btn_custom {
  color: white;
  background: rgba(0, 0, 0, 0.55);
  padding: 10px 5px;
}
#Top main .swiper-pagination-bullet-active {
  background: black;
}
#Top main .swiper-button-next::after, #Top main .swiper-button-prev::after, #Top main .swiper-button-next::before, #Top main .swiper-button-prev::before {
  font-size: 23px;
}
#Top main .sec_news {
  padding-top: 20px;
  padding-bottom: 52px;
}
#Top main .sec_news h2 span.title {
  font-size: 28px;
  padding-bottom: 30px;
  text-align: center;
  display: block;
  font-weight: 300;
  padding-top: 5px;
}
#Top main .sec_news h2 span.title_jp {
  font-size: 14px;
}
#Top main .sec_news ul {
  width: 72.5%;
  margin-right: auto;
  margin-left: auto;
}
#Top main .sec_news ul li {
  border-top: 1px solid #40246b;
  list-style: none;
  padding: 0px 0px;
  width: 100%;
  line-height: 1.8;
}
#Top main .sec_news ul li:last-child {
  border-bottom: 1px solid #40246b;
}
#Top main .sec_news ul li .permalink {
  padding: 15px 0;
  display: block;
}
#Top main .sec_news ul li .permalink .date {
  float: left;
  width: 140px;
  text-align: center;
}
#Top main .sec_news ul li .permalink h4 {
  width: calc(100% - 210px);
  display: inline-block;
  text-align: left;
  font-weight: 500;
}
#Top main .sec_news .news_list a {
  background-color: #40246b;
  color: white;
  display: block;
  position: relative;
  text-align: center;
  margin: 30px auto 0;
  width: 180px;
  height: 40px;
  line-height: 40px;
  font-weight: 500;
  border-radius: 27px;
}
#Top main .sec_news .news_list a .triangle_r img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
}
#Top main .sec_about {
  padding: 0px 30px 50px;
  margin-bottom: 110px;
  color: white;
  position: relative;
  z-index: 0;
  background-color: #ececec;
  /* &::before {
     content: "";
     display: block;
     width: 100%;
     height: 50px;
     position: absolute;
     top: 44px;
     right: 48%;
     z-index: 10;
     color: white;
     background-color: #0e103d;
     box-shadow: 0px 0px 3px gray;
   }*/
}
#Top main .sec_about .bg_navy {
  position: inherit;
  padding-bottom: 100px;
  color: #040515;
}
#Top main .sec_about .bg_gray {
  padding: 0;
}
#Top main .sec_about .sec_about_text {
  position: relative;
  padding-top: 80px;
}
#Top main .sec_about h2 {
  z-index: 30;
  font-size: 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-weight: 600;
  padding-bottom: 20px;
}
#Top main .sec_about h2 .title_jp {
  font-size: 12px;
  padding-left: 30px;
  top: 15px;
}
#Top main .sec_about .lead_txt {
  text-align: left;
  letter-spacing: 0.1rem;
  line-height: 1.7;
  color: #251143;
}
#Top main .sec_about .lead_txt .border01 {
  border-bottom: 4px dotted white;
  display: block;
  width: 100%;
  padding-top: 75px;
}
#Top main .sec_about .detail_box {
  padding: 0 30px 40px;
}
#Top main .sec_about .detail_box h3 {
  font-size: 30px;
  padding-top: 30px;
  padding-bottom: 23px;
}
#Top main .sec_about .detail_box .text {
  line-height: 1.9;
  text-align: center;
}
#Top main .sec_about .detail_box .detail_cards {
  padding-top: 66px;
  margin: 0 -12px;
}
#Top main .sec_about .detail_box .detail_cards .card {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
}
#Top main .sec_about .detail_box .detail_cards .card img {
  border-radius: 7px 7px 0 0;
}
#Top main .sec_about .detail_box .detail_cards .card .text {
  background-color: white;
  padding: 0 20px 20px;
  flex: 1 0 auto; /* 値を 3 つ指定: flex-grow | flex-shrink | flex-basis */
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  color: #251143;
  border-radius: 0 0 7px 7px;
}
#Top main .sec_about .detail_box .detail_cards .card .text h4 {
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 20px;
  position: relative;
  font-weight: 500;
}
#Top main .sec_about .detail_box .detail_cards .card .text h4::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background-color: #0e103d;
}
#Top main .sec_about .detail_box .detail_cards .card .text p {
  padding-top: 10px;
  line-height: 1.7;
  text-align: left;
}
#Top main .sec_about .link_btn {
  margin-top: 30px;
  padding-bottom: 40px;
}
#Top main .sec_price {
  position: relative;
  margin-bottom: 110px;
  padding: 0 30px;
}
#Top main .sec_price h2 {
  width: 30%;
  text-align: center;
  margin: auto;
  background-color: #1e1e66;
  color: white;
  padding: 5px 0;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
}
#Top main .sec_price h2 .ttl_jp {
  font-size: 12px;
  display: block;
}
#Top main .sec_price table {
  width: 100%;
  width: 100%;
  border-collapse: collapse;
  border: 4px solid #1e1e66;
  padding: 60px 20px 20px;
  display: inline-block;
}
#Top main .sec_price table tbody {
  width: 100%;
  display: inline-block;
}
#Top main .sec_price table tr {
  border-bottom: 2px solid #1e1e66;
  width: 100%;
  display: inline-block;
}
#Top main .sec_price table tr.lt_box th, #Top main .sec_price table tr .lt_box td {
  width: 100%;
  display: block;
  box-sizing: border-box;
  border-right: none;
}
#Top main .sec_price table tr:last-child {
  border-bottom: none;
}
#Top main .sec_price table tr th, #Top main .sec_price table tr td {
  padding: 20px;
  font-size: 18px;
}
#Top main .sec_price table tr th {
  text-align: left;
  width: 250px;
  font-weight: 600;
}
#Top main .sec_price table tr td {
  vertical-align: middle;
  text-align: center;
  width: 35%;
  font-weight: 500;
}
#Top main .sec_price table tr td:first-child {
  border-right: 2px solid #1e1e66;
}
#Top main .sec_price table tr td.ttl {
  font-size: 22px;
  font-weight: 600;
}
#Top main .sec_price table tr td.font_red {
  text-align: left;
}
#Top main .sec_price table img {
  max-width: 40px;
}
#Top main .sec_qa {
  margin-top: 50px;
  padding: 0px 30px 110px;
  position: relative;
  background-color: #ececec;
  z-index: 0;
  /*&::before {
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    position: absolute;
    top: 44px;
    left: 57%;
    z-index: 10;
    color: white;
    background-color: #40246b;;
    box-shadow: 0px 0px 3px gray;
  }*/
}
#Top main .sec_qa .bg_navy {
  position: inherit;
  padding-bottom: 100px;
  color: #040515;
}
#Top main .sec_qa .sec_qa_text {
  position: relative;
  padding-top: 80px;
}
#Top main .sec_qa h2 {
  font-size: 38px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-right: 100px;
  padding-bottom: 11px;
}
#Top main .sec_qa h2 .title_jp {
  font-size: 12px;
  padding-left: 30px;
}
#Top main .sec_qa .lead_txt {
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.7;
  padding: 0 70px 0;
  text-align: right;
}
#Top main .sec_qa .lead_txt .border01 {
  border-bottom: 4px dotted white;
  display: block;
  width: 100%;
  padding-top: 75px;
}
#Top main .sec_qa dl {
  color: #251143;
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
  margin-top: 30px;
}
#Top main .sec_qa dl dt {
  width: 100%;
  position: relative;
  padding-left: 30px;
  padding-bottom: 20px;
  box-sizing: border-box;
}
#Top main .sec_qa dl dt::before {
  content: "Q";
  font-size: 30px;
  font-family: inter;
  display: block;
  position: absolute;
  left: 0;
  top: 30%;
  transform: translateY(-50%);
}
#Top main .sec_qa dl dd {
  width: 100%;
  border-bottom: 1px solid #0e103d;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
  padding-bottom: 20px;
  box-sizing: border-box;
}
#Top main .sec_qa dl dd::before {
  content: "A";
  font-size: 30px;
  font-family: inter;
  display: block;
  position: absolute;
  left: 0;
  top: 30%;
  transform: translateY(-50%);
}
#Top main .sec_qa .link_btn {
  margin-top: 30px;
  padding-bottom: 40px;
}

/* ＝＝＝＝＝＝Blog＝＝＝＝＝＝　*/
#blog {
  /*==================================
  	ブレッドクラム
  ==================================*/
}
#blog main {
  /*シングルページ*/
}
#blog main .sub-header h1 {
  font-size: 35px;
}
#blog main .wrapper {
  position: relative;
  background-color: #eee;
  padding-bottom: 50px;
  /*フォント　デザイン*/
  /*margin: 0 0 130px;*/
  /*pager*/
}
#blog main .wrapper .breadcrumbs {
  width: 100%;
  margin: auto;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-bottom: 45px;
  font-size: 12px;
  color: #949494;
}
@media (max-width: 1080px) {
  #blog main .wrapper .breadcrumbs {
    box-sizing: border-box;
  }
}
#blog main .wrapper .breadcrumbs span {
  font-size: 12px;
  line-height: 1.3;
}
#blog main .wrapper .fontBig01 {
  font-size: 25px;
}
#blog main .wrapper .fontBig02 {
  font-size: 20px;
}
#blog main .wrapper .fontBold {
  font-weight: 600;
}
#blog main .wrapper .underL {
  border-bottom: 2px solid #251143;
  padding-top: 20px;
}
#blog main .wrapper .padBottom {
  padding-bottom: 15px;
}
#blog main .wrapper .padtop10 {
  padding-top: 10px;
}
#blog main .wrapper .padtop20 {
  padding-top: 20px;
}
#blog main .wrapper .squareLine {
  border: 1px solid #251143;
  padding: 20px;
}
#blog main .wrapper .list01 {
  padding-bottom: 10px;
}
#blog main .wrapper .list01 > li {
  position: relative;
  padding-left: 20px;
}
#blog main .wrapper .list01 > li::after {
  content: "■";
  color: #251143;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 50%;
}
#blog main .wrapper .marB20 {
  margin-bottom: 20px;
}
#blog main .wrapper .test {
  font-size: large;
}
#blog main .wrapper .container02 {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
#blog main .wrapper .container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
#blog main .wrapper ul.blog_con {
  margin: 0 -20px auto;
  padding-left: 0;
  justify-content: flex-start;
}
#blog main .wrapper ul.blog_con > li {
  width: 33.333%;
  list-style: none;
  box-sizing: border-box;
  margin-bottom: 40px;
  border-bottom: 1px solid rgb(223, 223, 223);
  padding: 0 22px 30px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper {
  background-color: white;
  height: 100%;
  transition: 0.3s;
  padding-bottom: 40px;
  position: relative;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .blog_thumb:hover {
  opacity: 0.7;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper {
  padding: 0 20px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > .category > .post-categories > li > a {
  color: #251143;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 13px;
  display: inline-block;
  width: 70px;
  margin-top: 15px;
  position: relative;
  border: 2px solid #251143;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > a > h4.title_blog {
  padding-top: 13px;
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 1.7;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a {
  background-color: #251143;
  border-radius: 5px;
  color: white;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  margin-bottom: 25px;
  width: 125px;
  height: 30px;
  display: inline-block;
  padding-right: 10px;
  position: absolute;
  bottom: 0;
  line-height: 30px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a:hover {
  opacity: 0.7;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a > .arrow {
  width: 7px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#blog main .wrapper ul.blog_con > li .blog_thumb {
  display: block;
  position: relative;
  padding-top: 53.25%;
  overflow: hidden;
}
#blog main .wrapper ul.blog_con > li .blog_thumb > img {
  /*max-width: 306px;*/
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#blog main .wrapper .page-numbers.current, #blog main .wrapper .page-numbers, #blog main .wrapper .pagination .prev, #blog main .wrapper .next.page-numbers {
  box-sizing: border-box;
  display: block;
  color: #A4A4A4;
  text-decoration: none;
  text-align: center;
  background: #FFF;
  border: 1px solid #A4A4A4;
  border-radius: 50%;
  min-width: 40px;
  transition: all 0.2s;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 38px;
}
#blog main .wrapper .page-numbers {
  margin: 0 6px;
}
#blog main .wrapper .prev.page-numbers, #blog main .wrapper .next.page-numbers {
  margin: 0 13px;
}
#blog main .wrapper .page-numbers:hover, #blog main .wrapper .pagination .prev:hover, #blog main .wrapper .next.page-numbers:hover {
  color: #FFF;
  background: #6E6E6E;
  /*border: 1px solid #6E6E6E;*/
}
#blog main .wrapper .page-numbers.current {
  margin: 0 0.28em;
}
#blog main .wrapper .pnavi {
  display: flex;
  justify-content: center;
  color: #A4A4A4;
  line-height: 1;
  margin: 0;
  padding: 2em 0;
}
#blog main .wrapper .page-numbers.current {
  background: #6E6E6E;
  color: #fff;
  font-weight: bold;
  border: none;
  margin: 0 0.28em;
}
#blog main .wrapper .cate_wrap .list_ttl {
  font-weight: 600;
  border-left: 2px solid #251143;
  padding-left: 20px;
  margin-bottom: 7px;
  margin-top: 30px;
}
#blog main .wrapper .cate_wrap > ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
#blog main .wrapper .cate_wrap > ul > li:first-child {
  padding-left: 20px;
}
#blog main .wrapper .cate_wrap > ul > li > a {
  padding: 5px 10px;
  border: 1px solid #251143;
  border-radius: 7px;
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
#blog main .wrapper .cate_wrap > ul > li > a:hover {
  background-color: #9e67a9;
  color: white;
  border: 1px solid #9e67a9;
}
#blog main.single-page .wrapper {
  min-height: 300px;
  padding-bottom: 100px;
  /* スクリーンリーダー限定テキスト： the_post_navigation() 用 */
}
#blog main.single-page .wrapper .cont .entryinfo {
  padding-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#blog main.single-page .wrapper .cont .entryinfo .categories {
  width: 100px;
}
#blog main.single-page .wrapper .cont .entryinfo .categories .post-categories > li > a {
  color: #251143;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 13px;
  display: inline-block;
  width: 70px;
  position: relative;
  border: 2px solid #251143;
}
#blog main.single-page .wrapper .cont .entryinfo time {
  font-weight: bold;
}
#blog main.single-page .wrapper p {
  line-height: 1.7;
  padding-bottom: 15px;
}
#blog main.single-page .wrapper .nav-links {
  clear: both;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
#blog main.single-page .wrapper .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#blog main.single-page .wrapper .nav-previous {
  float: left;
}
#blog main.single-page .wrapper .nav-next {
  float: right;
}
#blog main.single-page .wrapper .nav-previous, #blog main.single-page .wrapper .nav-next {
  max-width: 45%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 20px;
}
#blog main.single-page .wrapper .nav-previous > a, #blog main.single-page .wrapper .nav-next > a {
  font-size: 14px;
  color: #251143;
  letter-spacing: 0.01em;
}

/* ＝＝＝＝＝＝Service＝＝＝＝＝＝　*/
#service main {
  /*共通*/
  /*end*/
}
#service main .lead_sec {
  padding-bottom: 108px;
}
#service main .lead_sec .sec_anc-buttons {
  padding-top: 75px;
  max-width: 890px;
  margin: auto;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  #service main .lead_sec .sec_anc-buttons {
    max-width: 730px;
    padding-top: 65px;
  }
  #service main .lead_sec .sec_anc-buttons > a {
    width: 200px !important;
    height: 200px !important;
  }
  #service main .lead_sec .sec_anc-buttons > a div.anc-btn h3 {
    font-size: 26px;
  }
  #service main .lead_sec .sec_anc-buttons > a div.anc-btn h3.ttl_exterior, #service main .lead_sec .sec_anc-buttons > a div.anc-btn h3 .ttl_const {
    font-size: 22px;
  }
}
#service main .lead_sec .sec_anc-buttons > a {
  transition: 0.3s;
  display: block;
  border: 3px solid black;
  border-radius: 50%;
  height: 230px;
  width: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  transition: 0.3s;
}
#service main .lead_sec .sec_anc-buttons > a:hover {
  background-color: #000000;
  color: white;
}
#service main .lead_sec .sec_anc-buttons > a:hover::after {
  background: url(/images/service/arrow_w.svg) no-repeat center bottom;
}
#service main .lead_sec .sec_anc-buttons > a::after {
  content: "";
  display: block;
  width: 40px;
  height: 30px;
  position: relative;
  bottom: -29px;
  left: 0%;
  background: url(/images/service/arrow.svg) no-repeat center bottom;
}
#service main .lead_sec .sec_anc-buttons > a .anc-btn h3 {
  font-size: 30px;
  text-align: center;
}
#service main .lead_sec .sec_anc-buttons > a .anc-btn h3 > .btn_en {
  display: block;
}
#service main .lead_sec .sec_anc-buttons > a .anc-btn h3.ttl_exterior, #service main .lead_sec .sec_anc-buttons > a .anc-btn h3.ttl_const {
  font-size: 25px;
  line-height: 1.4;
}
#service main .fix_img {
  background-image: url(/images/service/fix_img01.jpg);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  height: 410px;
}
#service main .ttl_jp {
  font-size: 28px;
  padding-top: 28px;
  display: inline-block;
  text-align: center;
  width: 100%;
  padding-bottom: 38px;
}
#service main .second_lead {
  text-align: center;
  line-height: 1.7;
  padding-bottom: 60px;
}
#service main .box_sec .text_box {
  border: 2px solid black;
  padding: 22px;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
  background-color: white;
  margin-bottom: 33px;
}
#service main .box_sec .text_box h3 {
  font-size: 22px;
  text-align: center;
}
#service main .box_sec .text_box > p {
  text-align: center;
}
#service main .box_sec .text_box::before {
  content: "";
  display: block;
  background-image: url(/images/service/check_icon.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
}
#service main .sec_construction {
  padding-top: 77px;
  padding-bottom: 80px;
}
#service main .sec_construction h2 {
  width: 565px;
  margin: auto;
}
#service main .sec_construction .box_sec {
  justify-content: space-between;
}
#service main .sec_construction .box_sec .text_box {
  width: 48%;
}
#service main .sec_design {
  padding-top: 77px;
  padding-bottom: 80px;
}
#service main .sec_design h2 {
  width: 400px;
  margin: auto;
}
#service main .sec_design .box_sec {
  max-width: 700px;
  margin: auto;
}
#service main .sec_design .box_sec .text_box > dl::after {
  content: "";
  clear: both;
  display: block;
}
#service main .sec_design .box_sec .text_box > dl dt {
  float: right;
  width: 228px;
  border-radius: 10px;
}
#service main .sec_design .box_sec .text_box > dl dt > img {
  border-radius: 10px;
}
#service main .sec_design .box_sec .text_box > dl dd {
  width: calc(100% - 228px);
  padding-right: 20px;
  box-sizing: border-box;
}
#service main .sec_design .box_sec .text_box > dl dd > h3 {
  padding-bottom: 6px;
  padding-top: 15px;
  text-align: left;
}
#service main .sec_gardener {
  padding-top: 77px;
  padding-bottom: 40px;
}
#service main .sec_gardener h2 {
  width: 227px;
  margin: auto;
}
#service main .sec_gardener .box_sec {
  justify-content: center;
  display: flex;
}
#service main .sec_gardener .box_sec .text_box {
  width: 48%;
}
#service main .sec_gardener .box_sec.row.row_center {
  justify-content: center;
}
#service main .last_txt {
  font-size: 18px;
  line-height: 2;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  max-width: 700px;
  margin: auto;
}
#service main .last_txt::before {
  content: "";
  display: block;
  background: url(/images/service/line.svg) no-repeat center left;
  width: 107px;
  height: 100px;
  position: absolute;
  left: 0;
  bottom: 80px;
}
#service main .last_txt::after {
  content: "";
  width: 107px;
  height: 100px;
  transform: rotate(66deg);
  display: block;
  background: url(/images/service/line.svg) no-repeat center right;
  position: absolute;
  right: 15px;
  bottom: 80px;
}

/* ＝＝＝＝＝＝about＝＝＝＝＝＝　*/
#Material main {
  /*stones plants 共通*/
}
#Material main .notice {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 4px;
  padding-top: 5px;
}
#Material main .lead_sec {
  padding-bottom: 0;
}
#Material main .lead_sec > .container {
  max-width: 1100px;
  position: relative;
  background: url(/images/material/lead_img.png) no-repeat bottom -20px left -4px;
  background-size: 30%;
}
#Material main .lead_sec p {
  padding-bottom: 100px;
  text-shadow: 0 -2px 1px #FFF;
}
#Material main .image_box {
  margin: 0 -10px;
}
#Material main .image_box .text {
  padding: 0 10px;
}
#Material main .image_box .text .bg_wh {
  background-color: white;
  height: 100%;
  padding: 45px 27px 35px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 1200px) {
  #Material main .image_box .text .bg_wh {
    padding: 20px 27px 25px;
  }
  #Material main .image_box .text .bg_wh .point {
    bottom: 20%;
    padding-top: 20px;
  }
  #Material main .image_box .text .bg_wh .point > li {
    font-size: 16px;
  }
}
@media (max-width: 1000px) {
  #Material main .image_box .text .bg_wh {
    padding: 15px 20px 15px;
  }
}
#Material main .image_box .text .bg_wh .point {
  position: absolute;
  left: 27px;
  bottom: 26%;
  width: 130px;
  transform: rotate(-15deg);
}
@media (max-width: 1000px) {
  #Material main .image_box .text .bg_wh .point {
    bottom: 12% !important;
    padding-top: 20px;
  }
  #Material main .image_box .text .bg_wh .point > li {
    font-size: 16px;
  }
}
#Material main .image_box .text .bg_wh .list {
  padding-left: 190px;
  padding-top: 16px;
}
#Material main .image_box .text .bg_wh .list > li {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  line-height: 1.7;
}
#Material main .image_box .text .bg_wh .list > li::after {
  content: "●";
  display: inline-block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: -26px;
  top: 0;
}
@media (max-width: 1090px) {
  #Material main .image_box .text .bg_wh .list {
    padding-top: 24px;
  }
}
@media (max-width: 1000px) {
  #Material main .image_box .text .bg_wh .list > li {
    font-size: 16px;
    line-height: 1.3;
  }
}
#Material main .image_box .photo {
  padding: 0 10px;
}
#Material main .image_box .text, #Material main .image_box .photo {
  box-sizing: border-box;
}
#Material main .image_box .stone_type.row {
  padding-top: 20px;
}
#Material main .image_box .stone_type.row > .type_photo.col_4 {
  padding: 0 10px;
  position: relative;
}
#Material main .image_box .stone_type.row > .type_photo.col_4 > .text {
  line-height: 2;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 20px);
  text-align: center;
  position: absolute;
  left: 10px;
}
#Material main .wrapper {
  padding-top: 88px;
  padding-bottom: 120px;
  background-color: #ececec;
}
#Material main .wrapper .container .sec_stones h2 {
  text-align: center;
}
#Material main .wrapper .container .sec_stones .lead_text {
  text-align: center;
  padding-bottom: 72px;
}
#Material main .wrapper .container .sec_stones .stones_ex_wrapper > h2 {
  padding-top: 110px;
  padding-bottom: 30px;
  position: relative;
  font-size: 27px;
  margin-bottom: 35px;
}
#Material main .wrapper .container .sec_stones .stones_ex_wrapper > h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background-color: #1eaa39;
  position: absolute;
  left: 50%;
  bottom: 9px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#Material main .wrapper .container .sec_stones .stones_ex_wrapper .stones_ex.row {
  margin: 0 -10px;
}
#Material main .wrapper .container .sec_stones .stones_ex_wrapper .stones_ex.row > .col_4 {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
}
#Material main .wrapper .container .sec_stones .stones_ex_wrapper .stones_ex.row > .col_4 > .text {
  padding: 30px 20px;
  background-color: white;
  border-radius: 0 0 13px 13px;
  flex: 1 0 auto; /* 値を 3 つ指定: flex-grow | flex-shrink | flex-basis */
  display: flex;
}
@media (max-width: 1090px) {
  #Material main .wrapper .container .sec_stones .stones_ex_wrapper .stones_ex.row > .col_4 > .text {
    padding: 25px 15px;
  }
}
#Material main .wrapper .container .sec_stones .kanri .lead_text {
  padding-bottom: 50px;
}
#Material main .wrapper .container .sec_stones .kanri .row .col_6 {
  width: 50%;
}
#Material main .sec_plants {
  padding-bottom: 120px;
}
@media (max-width: 950px) {
  #Material main .sec_plants {
    padding-bottom: 90px;
  }
}
#Material main .sec_plants .title {
  padding-top: 88px;
  padding-bottom: 70px;
  width: 226px;
  margin: auto;
}
#Material main .sec_plants .lead_text {
  padding-bottom: 72px;
  text-align: center;
}
#Material main .sec_plants .image_box .text .bg_wh {
  background-color: #e5e6e7;
}
#Material main .sec_plants .image_box .stone_type.row > .type_photo.col_4 > .text {
  line-height: 1.3;
  font-size: 14px;
  padding: 6px 15px;
  background-color: rgba(255, 255, 255, 0.6);
  text-align: left;
}
@media (max-width: 1100px) {
  #Material main .sec_plants .image_box .stone_type.row > .type_photo.col_4 > .text {
    height: 75px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 950px) {
  #Material main .sec_plants .image_box .stone_type.row > .type_photo.col_4 > .text {
    line-height: 1.2;
    align-items: flex-start;
    height: auto;
  }
}
#Material main .info01 {
  padding-bottom: 90px;
  text-align: center;
}
#Material main .info01 > span {
  border-bottom: 1px solid #1eaa39;
  line-height: 1.7;
  font-size: 22px;
}
#Material main .sec_works {
  background-color: #ececec;
}
#Material main .sec_material {
  display: none;
}

/* ＝＝＝＝＝＝Blog＝＝＝＝＝＝　*/
/* ＝＝＝＝＝＝flow＝＝＝＝＝＝　*/
#Flow main .flow_boxes {
  padding-bottom: 60px;
  margin: auto;
}
#Flow main .flow_boxes .box {
  background-color: white;
  border: 1px solid #40246b;
  max-width: 855px;
  box-sizing: border-box;
  margin: auto auto 50px;
}
#Flow main .flow_boxes .box h3 {
  font-size: 25px;
  padding: 20px 30px;
  position: relative;
}
#Flow main .flow_boxes .box h3::after {
  display: block;
  height: 1px;
  background-color: #40246b;
  content: "";
  width: 92%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4px;
}
#Flow main .flow_boxes .box h3 > .num {
  font-size: 28px;
  position: relative;
  color: white;
  padding-left: 10px;
  display: inline-block;
  margin-right: 20px;
  z-index: 10;
}
#Flow main .flow_boxes .box h3 > .num::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 40px;
  left: -1px;
  bottom: -1px;
  background-color: #40246b;
  border-radius: 50%;
  z-index: -1;
}
#Flow main .flow_boxes .box .row {
  align-items: center;
  justify-content: flex-end;
  padding: 34px 35px 40px;
}
#Flow main .flow_boxes .box .row .text_box {
  padding-right: 25px;
  width: calc(100% - 240px);
  box-sizing: border-box;
}
#Flow main .flow_boxes .box .row .text_box .kome {
  text-indent: -16px;
  padding-left: 16px;
  font-size: 14px;
}
#Flow main .flow_boxes .box .row .text_box h3 {
  font-size: 30px;
}
#Flow main .flow_boxes .box .row .text_box h4 {
  padding-top: 30px;
}
#Flow main .flow_boxes .box .row .text_box .howto > ul > li {
  font-size: 14px;
  padding-bottom: 8px;
}
#Flow main .flow_boxes .box .row .text_box .howto > ul > li > a {
  text-decoration: underline;
}
#Flow main .flow_boxes .box .row .text_box .howto > ul > li .icon {
  padding-bottom: 4px;
  padding-right: 10px;
}
#Flow main .flow_boxes .box .row .text_box .howto > ul > li .icon > img {
  max-width: 20px;
  vertical-align: middle;
}
#Flow main .flow_boxes .box .row .photo {
  display: flex;
  justify-content: flex-end;
  width: 240px;
}
#Flow main .flow_boxes .box.support .text_box h4 {
  padding-top: 0px;
  padding-bottom: 10px;
}
#Flow main .flow_boxes .box.support .text_box h4.support_ttl {
  padding-top: 20px;
}

/* ＝＝＝＝＝＝company＝＝＝＝＝＝　*/
#company main .sub-header h1 {
  font-size: 35px;
}
#company main .detail_box {
  padding-top: 77px;
  padding-bottom: 120px;
}
#company main .detail_box .tbl01 {
  width: 100%;
  margin: auto;
}
#company main .detail_box .tbl01 th {
  background-color: #838383;
  border-bottom: 1px solid #fff;
  color: white;
  font-weight: bold;
  line-height: 1.2;
  padding: 30px 60px;
  text-align: center;
  white-space: nowrap;
  width: 5em;
  font-size: 18px;
  vertical-align: middle;
}
#company main .detail_box .tbl01 td {
  background: white;
  border-bottom: 1px dotted #b1b1b1;
  padding: 30px 20px 30px 40px;
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
}
#company main .detail_box .tbl01 td > ul > li {
  position: relative;
  padding-left: 30px;
  line-height: 1.7;
}
#company main .detail_box .tbl01 td > ul > li::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #1eaa39;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 50%;
}

/* ＝＝＝＝＝＝about＝＝＝＝＝＝ */
#about main {
  /*共通*/
}
#about main .lead_sec {
  padding-bottom: 0;
}
#about main .lead_sec .comment_box {
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}
#about main .lead_sec .comment_box > .text_box > img {
  width: 600px;
}
#about main .title {
  padding-bottom: 37px;
}
#about main .container02 {
  max-width: 850px;
  padding-right: 20px;
  padding-left: 20px;
  margin: auto;
}
#about main .ttl_jp {
  text-align: center;
  margin: auto;
  font-size: 28px;
  padding-top: 20px;
  font-weight: bold;
  position: relative;
  /* &::after {
       content: "";
       display: block;
       position: absolute;
       bottom: -25px;
       left: 50%;
       -webkit-transform: translateX(-50%);
       transform: translateX(-50%);
       width: 80px;
       height: 5px;
       background-color: black;
   }*/
}
#about main .sec_cont01, #about main .sec_cont02, #about main .sec_cont03, #about main .sec_cont04 {
  padding-top: 90px;
  padding-bottom: 90px;
}
#about main .sec_cont01 .text_box p, #about main .sec_cont02 .text_box p, #about main .sec_cont03 .text_box p, #about main .sec_cont04 .text_box p {
  padding-bottom: 25px;
  line-height: 1.7;
}
#about main .sec_cont02 h2.title {
  position: relative;
}
#about main .sec_cont02 h2.title::after {
  content: "";
  display: block;
  width: 70px;
  height: 122px;
  background: url(/images/about/bulb2.svg) no-repeat;
  position: absolute;
  right: 107px;
  top: -157px;
}
#about main .sec_cont02 .ukeoi {
  width: 400px;
  margin: auto;
  padding-top: 30px;
}
#about main .sec_cont03 .pers {
  text-align: center;
  padding-top: 20px;
  max-width: 600px;
  margin: auto;
}
#about main .sec_cont04 .stones {
  text-align: center;
  padding-top: 20px;
  max-width: 300px;
  margin: auto;
}
#about main .sec_works, #about main .sec_area {
  background-color: #ececec;
}
#about main .sec_material .bg_gray {
  background-color: white;
}

/* ＝＝＝＝＝＝Feature＝＝＝＝＝＝　*/
#Feature main .feature_box {
  padding-bottom: 220px;
}
#Feature main .feature_box .text_boxes.boxes01 {
  position: relative;
  z-index: 0;
}
#Feature main .feature_box .text_boxes.boxes01::after {
  content: "ENGLISH";
  font-size: 140px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  position: absolute;
  bottom: 100px;
  right: 0;
  color: rgba(223, 207, 240, 0.39);
  z-index: -1;
}
#Feature main .feature_box .text_boxes.boxes02 {
  padding-top: 90px;
  position: relative;
  z-index: 0;
}
#Feature main .feature_box .text_boxes.boxes02::after {
  content: "LEARNING";
  font-size: 140px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  position: absolute;
  bottom: 100px;
  right: 0;
  color: rgba(209, 238, 211, 0.46);
  z-index: -1;
}
#Feature main .feature_box .text_boxes.boxes03 {
  padding-top: 90px;
  position: relative;
  z-index: 0;
}
#Feature main .feature_box .text_boxes.boxes03::after {
  content: "FUN FUN FUN";
  font-size: 140px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  position: absolute;
  bottom: -100px;
  right: 0;
  color: rgba(239, 202, 222, 0.33);
  z-index: -1;
}
@media (max-width: 1000px) {
  #Feature main .feature_box .text_boxes.boxes03::after {
    font-size: 120px;
  }
}
#Feature main .feature_box .text_boxes h2.title_feature {
  font-size: 30px;
  text-align: center;
  width: 100%;
  margin: auto;
  height: 200px;
  background-size: contain;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}
#Feature main .feature_box .text_boxes h2.title_feature::after {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#Feature main .feature_box .text_boxes h2.title_feature.title01 {
  background: url(/images/feature/title_bg01.png) no-repeat center;
  background-size: contain;
}
#Feature main .feature_box .text_boxes h2.title_feature.title02 {
  background: url(/images/feature/title_bg02.png) no-repeat center;
  background-size: contain;
  padding-bottom: 20px;
}
#Feature main .feature_box .text_boxes h2.title_feature.title03 {
  background: url(/images/feature/title_bg03.png) no-repeat center;
  background-size: contain;
  padding-bottom: 20px;
}
#Feature main .feature_box .text_boxes .sub_text {
  font-size: 16px;
  text-align: center;
  padding-top: 10px;
}
#Feature main .feature_box .text_boxes h3 {
  font-size: 22px;
  padding: 30px 0 5px;
}
#Feature main .feature_box .text_boxes dl > dt {
  padding-left: 40px;
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: rgb(96, 199, 142);
}
#Feature main .feature_box .text_boxes dl > dt::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: rgb(131, 228, 174);
  position: absolute;
  left: 0;
  top: 5px;
}
#Feature main .feature_box .text_boxes dl > dd {
  padding-bottom: 20px;
}
#Feature main .feature_box .text_boxes.text-box03 {
  padding-top: 20px;
}

/*==========================================
  Base
==========================================*/
/*==================================
  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: #dddddd;
}
main#Contact .ERR {
  color: #cc0303;
}
main#Contact input[type=text] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  padding: 12px 21px;
  border: 1px solid #dddddd;
  background: #dddddd;
  box-sizing: border-box;
  color: #000;
  width: 100%;
}
main#Contact input[type=text].zip {
  max-width: 247px;
  width: 100%;
}
main#Contact .zip-wrap {
  background: #dddddd;
  display: inline-block;
  position: relative;
  max-width: 247px;
  width: 100%;
  margin-right: 3px;
}
main#Contact .zip-wrap::before {
  content: "〒";
  font-size: 18px;
  position: absolute;
  top: 0.8em;
  left: 24px;
  margin: auto;
}
main#Contact .zip-wrap input {
  padding: 12px 21px 12px 55px;
  width: 100%;
}
main#Contact input[type=button] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #000;
  max-width: 140px;
  width: 100%;
  background: #dddddd;
  border: 3px solid #dddddd;
  padding: 10px 19px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
}
main#Contact input[type=button]:hover {
  background: none;
}
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: #dddddd;
  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: #dddddd;
  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: #dddddd;
}
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;
  border: 1px solid #dddddd;
  background: #dddddd;
  box-sizing: border-box;
  width: 100%;
  padding: 12px 21px;
  min-height: 174px;
}
main#Contact .overscroll {
  overflow-y: scroll;
  height: 237px;
  padding: 25px 21px;
  background: #dddddd;
}
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: center;
}
main#Contact .submit_area span {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  width: 262px;
  background: #dddddd;
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #dddddd;
  transition: all 0.3s ease;
}
main#Contact .submit_area span input[type=submit] {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  cursor: pointer;
  width: 100%;
  height: 58px;
  box-sizing: border-box;
}
main#Contact .submit_area span:hover {
  background: none;
}
main#Contact .submit_area span:hover input[type=submit] {
  color: #000;
}
main#Contact .submit_area ul.koumoku {
  max-width: 590px;
  margin: 20px auto 0;
}
main#Contact .submit_area ul.koumoku li {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  width: 262px;
  background: #5f4b08;
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #5f4b08;
  transition: all 0.3s ease;
}
main#Contact .submit_area ul.koumoku li input[type=submit] {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  cursor: pointer;
  width: 100%;
  height: 58px;
  box-sizing: border-box;
}
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;
}
main#Contact .btn_back {
  margin-top: 25px;
  text-align: center;
}
main#Contact .btn_back input {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #fff;
  width: 262px;
  background: #dddddd;
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #dddddd;
  transition: all 0.3s ease;
  height: 58px;
  padding: 15px 15px 14px;
}
main#Contact .contact_back {
  margin-top: 25px;
  text-align: center;
}
main#Contact .contact_back a {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #fff;
  width: 262px;
  background: #dddddd;
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #dddddd;
  transition: all 0.3s ease;
  height: 58px;
  padding: 15px 15px 14px;
}
main#Contact .contact_back a:hover {
  color: #000;
  background: none;
}

/*==================================
  Contact
==================================*/
main#Contact .container {
  margin: auto;
}
main#Contact .container p > a {
  background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
  background-size: 100% 1px;
  padding-bottom: 2px;
  display: inline;
}
main#Contact .container p > a:hover {
  color: #704f00;
  background: linear-gradient(#704f00, #704f00) 0 100%/0 1px no-repeat;
  background-size: 100% 1px;
}
main#Contact .agree_area {
  margin: 30px 0 0;
  text-align: center;
}
main#Contact .need {
  color: #cc0303;
}
main#Contact table {
  display: block;
}
main#Contact table tbody {
  display: block;
}
main#Contact table tr {
  display: block;
  margin-bottom: 30px;
}
main#Contact table tr th {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 500;
  display: block;
  text-align: left;
  margin-bottom: 13px;
}
main#Contact table tr td {
  display: block;
}
main#Contact table tr td .text02 {
  margin-top: 8px;
}
main#Contact .check-list {
  padding-top: 5px;
  padding-left: 0;
}
main#Contact .check-list li {
  display: inline-block;
}
main#Contact > p {
  margin-top: 0 !important;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}