@charset "UTF-8";
/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
@font-face {
  font-family: "line-rg";
  src: url("../font/LINESeedJP_A_OTF_Rg.woff") format("woff");
}
@font-face {
  font-family: "line-bd";
  src: url("../font/LINESeedJP_A_OTF_Bd.woff") format("woff");
}
@font-face {
  font-family: "line-eb";
  src: url("../font/LINESeedJP_A_OTF_Eb.woff") format("woff");
}
@font-face {
  font-family: "line-th";
  src: url("../font/LINESeedJP_A_OTF_Th.woff") format("woff");
}
/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up.delay {
  transition-delay: 0.5s;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

.fadeIn.delay {
  transition-delay: 0.5s;
}

.oneTxt {
  visibility: hidden;
}
.oneTxt.is-ready {
  visibility: visible;
}
.oneTxt span {
  opacity: 0;
  transition: 0.6s ease-in-out;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "line-bd";
  overflow-x: hidden;
  background: #fff;
}

img {
  width: 100%;
  vertical-align: top;
}

.inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 15px;
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  width: calc(100% - 90px);
  padding: 0 45px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 999;
}
.header .logo {
  width: 190px;
}
.header .mail_icon {
  width: 200px;
  height: 50px;
  border-radius: 50px;
  background: #707070;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.header .mail_icon .link {
  position: absolute;
  inset: 0;
}
.header .mail_icon .text {
  font-size: 18px;
  color: #fff;
}
.header .mail_icon .icon {
  width: 30px;
}

@media (max-width: 767px) {
  .header {
    width: calc(100% - 40px);
    padding: 0 20px;
    top: 30px;
  }
  .header .logo {
    width: 190px;
  }
  .header .mail_icon {
    display: none;
  }
}
/* ---------------------------------------------------------
    side
--------------------------------------------------------- */
.side {
  width: 65px;
  height: 280px;
  border-radius: 10px 0 0 10px;
  background: #ff9300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.side .link {
  position: absolute;
  inset: 0;
}
.side .text {
  font-size: 18px;
  color: #fff;
  letter-spacing: -8px;
  writing-mode: vertical-lr;
  font-feature-settings: initial;
}
.side .icon {
  width: 30px;
}

@media (max-width: 767px) {
  .side {
    width: 100%;
    height: auto;
    padding: 1.5em 0;
    border-radius: 0;
    flex-direction: row;
    gap: 10px;
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    transform: none;
  }
  .side .link {
    position: absolute;
    inset: 0;
  }
  .side .text {
    font-size: 18px;
    letter-spacing: 0.01rem;
    writing-mode: horizontal-tb;
    font-feature-settings: initial;
  }
  .side .icon {
    width: 30px;
  }
}
/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer {
  padding: 30px 0;
}
.footer .logo {
  width: 200px;
  margin: auto;
}
.footer .copy {
  font-size: 14px;
  text-align: center;
  margin-top: 35px;
  font-family: "line-rg";
}

@media (max-width: 767px) {
  .footer .copy {
    font-size: 12px;
  }
}
.rotate_image {
  display: inline-block; /* 中心で回転させるため */
  animation: rotation 20s linear infinite; /* 8秒で1周・一定速度・無限ループ */
}

@keyframes rotation {
  from {
    transform: rotate(0deg); /* スタート */
  }
  to {
    transform: rotate(360deg); /* 時計回りに1周 */
  }
}
/* ---------------------------------------------------------
    mainvisual
--------------------------------------------------------- */
.sect_main_visual {
  width: 100%;
  height: 100vh;
  position: relative;
}
.sect_main_visual .circle_top {
  width: 660px;
  position: absolute;
  top: -230px;
  left: -230px;
  z-index: 1;
}
.sect_main_visual .circle_bottom {
  width: 490px;
  position: absolute;
  bottom: -150px;
  right: -200px;
  z-index: 1;
}
.sect_main_visual .inner {
  height: 100%;
  display: grid;
  place-content: center;
}
.sect_main_visual .inner .main_visual {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.sect_main_visual .inner .main_visual .text_content .page_title {
  width: 500px;
}
.sect_main_visual .inner .main_visual .text_content .sentence {
  font-size: 18px;
  line-height: 1.8rem;
  text-align: center;
  margin-top: 35px;
}
.sect_main_visual .inner .main_visual .mockUp {
  width: 350px;
}
.sect_main_visual .campaign {
  width: 370px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sect_main_visual .scrolldown {
  position: absolute;
  bottom: 1%;
  right: 45px;
  animation: arrowmove 2s ease-in-out infinite;
  z-index: 2;
}
.sect_main_visual .scrolldown::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: calc(50% + 10px);
  width: 2px;
  height: 20px;
  background: #000;
  transform: skewX(31deg);
}
.sect_main_visual .scrolldown::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: calc(50% + 18px);
  transform: translateX(-50%);
  width: 2px;
  height: 140px;
  background: #000;
}
.sect_main_visual .scrolldown--span {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  font-size: 22px;
  letter-spacing: 0.05em;
  writing-mode: sideways-lr;
}

@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
@media (max-width: 1025px) {
  .sect_main_visual {
    height: auto;
  }
  .sect_main_visual .circle_top {
    width: 450px;
    top: -180px;
    left: -180px;
  }
  .sect_main_visual .circle_bottom {
    width: 300px;
    bottom: -80px;
    right: -100px;
  }
  .sect_main_visual .inner {
    display: block;
  }
  .sect_main_visual .inner .main_visual {
    margin: 130px 0 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sect_main_visual .inner .main_visual .text_content .page_title {
    width: 300px;
    margin: auto;
  }
  .sect_main_visual .inner .main_visual .text_content .sentence {
    font-size: 14px;
    margin-top: 25px;
  }
  .sect_main_visual .inner .main_visual .mockUp {
    width: 280px;
    margin: auto;
  }
  .sect_main_visual .campaign {
    display: none;
  }
}
/* ---------------------------------------------------------
    works
--------------------------------------------------------- */
.triangle {
  width: 100%;
  position: relative;
}

.sect_works {
  background: #C3E8D5;
  position: relative;
}
.sect_works .works {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.sect_works .works .sect_title {
  font-family: "line-eb";
  font-size: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.sect_works .works .sect_title .ja {
  font-size: 18px;
  font-family: "line-bd";
}
.sect_works .works .scrollable {
  width: 800px;
  height: 500px;
  margin-top: 75px;
  margin: 75px auto 0;
  perspective: 800px;
  perspective-origin: center center;
  overflow-x: hidden;
  /* フリップ時（スクロールしていない時）のみトランジションを有効化 */
}
.sect_works .works .scrollable.lenis:not(.lenis-scrolling) .face {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  transition: rotate 0.8s var(--ease-out-quart);
}
.sect_works .works .scrollable .cardList {
  --base-deg: 0; /* 円周の回転角度（度） */
  position: relative;
  height: 100%;
  pointer-events: none; /* カード要素へのインタラクションを有効化するため、ラッパー要素はインタラクションが透過するよう設定 */
  transform-style: preserve-3d;
  perspective: 100%;
}
.sect_works .works .scrollable .cardList .sampleCard {
  /* 実際に配置する大きさなどに応じて適宜変更してください */
  --r: 600px; /* 円周の半径 */
  --z-offset: 600px; /* 円周の奥行き方向の距離 */
  --rotate-deg: calc( 360 / var(--card-count) ); /* 個別のカードの回転角度（度） */
  position: absolute;
  top: 0;
  left: calc(50% - 150px); /* 50%の位置からカードの横幅の半分で中央寄せにする */
  list-style: none;
  transform-style: preserve-3d;
  height: 100%;
  /* フリップ時 */
}
.sect_works .works .scrollable .cardList .sampleCard .face {
  position: absolute;
  backface-visibility: hidden;
  pointer-events: auto; /* カード要素へのインタラクションを有効化する */
  width: auto;
  height: 100%;
  aspect-ratio: 20/39;
  cursor: pointer;
}
.sect_works .works .scrollable .cardList .sampleCard .face.front {
  rotate: 0 1 0 calc((var(--base-deg) + var(--index) * var(--rotate-deg)) * 1deg);
  translate: calc(sin((var(--base-deg) + var(--index) * var(--rotate-deg)) * 1deg) * var(--r)) 0 calc(cos((var(--base-deg) + var(--index) * var(--rotate-deg)) * 1deg) * var(--r) - var(--z-offset));
}
.sect_works .works .scrollable .cardList .sampleCard .face.front .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sect_works .works .scrollable .cardList .sampleCard .face.back {
  rotate: 0 1 0 calc((var(--base-deg) + var(--index) * var(--rotate-deg) + 180) * 1deg);
  translate: calc(sin((var(--base-deg) + var(--index) * var(--rotate-deg)) * 1deg) * var(--r)) 0 calc(cos((var(--base-deg) + var(--index) * var(--rotate-deg)) * 1deg) * var(--r) - var(--z-offset));
}
.sect_works .works .scrollable .cardList .sampleCard .face.back .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.sect_works .works .scrollable .cardList .sampleCard.isActive .front {
  rotate: 0 1 0 calc((var(--base-deg) + var(--index) * var(--rotate-deg) + 179.9) * 1deg);
}
.sect_works .works .scrollable .cardList .sampleCard.isActive .back {
  rotate: 0 1 0 calc((var(--base-deg) + var(--index) * var(--rotate-deg) + 359.9) * 1deg);
}
.sect_works .works .btn {
  margin: 150px auto 0;
  width: 350px;
  height: 50px;
  border-radius: 100px;
  background: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
}
.sect_works .works .btn:hover {
  background: #fff;
}
.sect_works .works .btn:hover span {
  color: #555;
}
.sect_works .works .btn .link {
  position: absolute;
  inset: 0;
}
.sect_works .works .btn span {
  font-size: 18px;
  color: #fff;
}

@media (max-width: 767px) {
  .sect_works .works {
    padding: 50px 0;
  }
  .sect_works .works .sect_title {
    font-size: 32px;
  }
  .sect_works .works .sect_title .ja {
    font-size: 14px;
  }
  .sect_works .works .scrollable {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    perspective: 1200px;
  }
  .sect_works .works .scrollable .cardList .sampleCard {
    /* 実際に配置する大きさなどに応じて適宜変更してください */
    --r: 320px; /* 円周の半径 */
    top: 0;
    left: calc(50% - 105px); /* 50%の位置からカードの横幅の半分で中央寄せにする */
  }
  .sect_works .works .btn {
    margin: 30px auto 0;
    width: 250px;
    height: 40px;
  }
  .sect_works .works .btn span {
    font-size: 16px;
  }
}
/* ---------------------------------------------------------
    service
--------------------------------------------------------- */
.sect_service {
  background: #F7C8E0;
  padding: 8vw 0;
  position: relative;
}
.sect_service .triangle_rotate {
  width: 400px;
  position: absolute;
  top: -150px;
  left: -150px;
  z-index: 1;
}
.sect_service .triangle_top {
  position: absolute;
  top: 0;
}
.sect_service .triangle_bottom {
  position: absolute;
  bottom: 0;
}
.sect_service .service {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.sect_service .service .sect_title {
  font-family: "line-eb";
  font-size: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.sect_service .service .sect_title .ja {
  font-size: 18px;
  font-family: "line-bd";
}
.sect_service .service .recruit-tabs {
  margin: 70px auto 0;
  display: flex;
  align-items: center;
  gap: 80px;
}
.sect_service .service .recruit-tabs .recruit-tabs__content {
  max-width: 550px;
  flex: 1 1 auto;
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-sizing: border-box;
}
.sect_service .service .recruit-tabs .recruit-tabs__content .tab-panel {
  display: none;
}
.sect_service .service .recruit-tabs .recruit-tabs__content .tab-panel.is-active {
  display: block;
}
.sect_service .service .recruit-tabs .recruit-tabs__content .tab-panel .panel-image {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
.sect_service .service .recruit-tabs .recruit-tabs__content .tab-panel .panel-image img {
  width: 390px;
}
.sect_service .service .recruit-tabs .recruit-tabs__content .tab-panel .panel-title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  text-align: center;
  padding-bottom: 15px;
  margin: 0 auto 15px;
  border-bottom: 1px solid #000;
  letter-spacing: 0.1em;
}
.sect_service .service .recruit-tabs .recruit-tabs__content .tab-panel .panel-text {
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
.sect_service .service .recruit-tabs .recruit-tabs__nav {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sect_service .service .recruit-tabs .recruit-tabs__nav .tab-btn {
  font-family: "line-bd";
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 15px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  color: #333;
  transition: 0.2s;
}
.sect_service .service .recruit-tabs .recruit-tabs__nav .tab-btn.is-active {
  position: relative;
  background: #fff;
}
.sect_service .service .recruit-tabs .recruit-tabs__nav .tab-btn.is-active::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 12px 18px 12px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}
.sect_service .service .btn {
  margin: 70px auto 0;
  width: 350px;
  height: 50px;
  border-radius: 100px;
  background: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
}
.sect_service .service .btn:hover {
  background: #fff;
}
.sect_service .service .btn:hover span {
  color: #555;
}
.sect_service .service .btn .link {
  position: absolute;
  inset: 0;
}
.sect_service .service .btn span {
  font-size: 18px;
  color: #fff;
}

@media (max-width: 767px) {
  .sect_service {
    padding: 8vw 0;
  }
  .sect_service .triangle_rotate {
    width: 280px;
    top: -100px;
    left: -100px;
    margin: 0;
  }
  .sect_service .service {
    padding: 50px 0;
  }
  .sect_service .service .sect_title {
    font-size: 32px;
  }
  .sect_service .service .sect_title .ja {
    font-size: 14px;
  }
  .sect_service .service .recruit-tabs {
    margin: 30px auto 0;
    flex-direction: column-reverse;
    gap: 50px;
  }
  .sect_service .service .recruit-tabs .recruit-tabs__content {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    padding: 25px;
  }
  .sect_service .service .recruit-tabs .recruit-tabs__content .tab-panel .panel-image {
    margin-bottom: 40px;
  }
  .sect_service .service .recruit-tabs .recruit-tabs__content .tab-panel .panel-image img {
    width: 100%;
  }
  .sect_service .service .recruit-tabs .recruit-tabs__content .tab-panel .panel-title {
    font-size: 24px;
  }
  .sect_service .service .recruit-tabs .recruit-tabs__nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .sect_service .service .recruit-tabs .recruit-tabs__nav .tab-btn {
    font-size: 14px;
    padding: 8px 20px;
  }
  .sect_service .service .recruit-tabs .recruit-tabs__nav .tab-btn.is-active::before {
    display: none;
  }
  .sect_service .service .btn {
    margin: 50px auto 0;
    width: 250px;
    height: 40px;
  }
  .sect_service .service .btn span {
    font-size: 16px;
  }
}
/* ---------------------------------------------------------
    flow
--------------------------------------------------------- */
.sect_flow {
  background: #CFE9FF;
  position: relative;
}
.sect_flow .square_rotate {
  width: 300px;
  position: absolute;
  top: -180px;
  right: -120px;
  z-index: 1;
}
.sect_flow .flow {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.sect_flow .flow .sect_title {
  font-family: "line-eb";
  font-size: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.sect_flow .flow .sect_title .ja {
  font-size: 18px;
  font-family: "line-bd";
}
.sect_flow .flow .flow_content {
  margin-top: 65px;
  width: 100%;
}
.sect_flow .flow .flow_content .image.pc {
  display: block;
}
.sect_flow .flow .flow_content .image.sp {
  display: none;
}
.sect_flow .flow .btn {
  margin: 70px auto 0;
  width: 350px;
  height: 50px;
  border-radius: 100px;
  background: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
}
.sect_flow .flow .btn:hover {
  background: #fff;
}
.sect_flow .flow .btn:hover span {
  color: #555;
}
.sect_flow .flow .btn .link {
  position: absolute;
  inset: 0;
}
.sect_flow .flow .btn span {
  font-size: 18px;
  color: #fff;
}

@media (max-width: 767px) {
  .sect_flow .square_rotate {
    width: 220px;
    top: -120px;
    right: -90px;
    z-index: 1;
  }
  .sect_flow .flow {
    padding: 50px 0;
  }
  .sect_flow .flow .sect_title {
    font-size: 32px;
  }
  .sect_flow .flow .sect_title .ja {
    font-size: 14px;
  }
  .sect_flow .flow .flow_content {
    margin: 45px auto 0;
    width: 100%;
    max-width: 250px;
  }
  .sect_flow .flow .flow_content .image.pc {
    display: none;
  }
  .sect_flow .flow .flow_content .image.sp {
    display: block;
  }
  .sect_flow .flow .btn {
    margin: 50px auto 0;
    width: 250px;
    height: 40px;
  }
  .sect_flow .flow .btn span {
    font-size: 16px;
  }
}
/* ---------------------------------------------------------
    effect
--------------------------------------------------------- */
.sect_effect {
  background: #C3E8D5;
  padding: 8vw 0;
  position: relative;
}
.sect_effect .triangle_rotate {
  width: 400px;
  position: absolute;
  top: -150px;
  left: -150px;
  z-index: 1;
}
.sect_effect .triangle_top {
  position: absolute;
  top: 0;
}
.sect_effect .triangle_bottom {
  position: absolute;
  bottom: 0;
}
.sect_effect .effect {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.sect_effect .effect .sect_title {
  font-family: "line-eb";
  font-size: 40px;
  text-align: center;
}
.sect_effect .effect .contents {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.sect_effect .effect .contents .content:first-child {
  width: 60%;
  max-width: 745px;
  margin: 0 0 0 auto;
}
.sect_effect .effect .contents .content:nth-child(2) {
  width: 48%;
  max-width: 580px;
}
.sect_effect .effect .contents .content:last-child {
  width: 65%;
  max-width: 795px;
  margin: 0 0 0 auto;
}
.sect_effect .effect .btn {
  margin: 70px auto 0;
  width: 350px;
  height: 50px;
  border-radius: 100px;
  background: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
}
.sect_effect .effect .btn:hover {
  background: #fff;
}
.sect_effect .effect .btn:hover span {
  color: #555;
}
.sect_effect .effect .btn .link {
  position: absolute;
  inset: 0;
}
.sect_effect .effect .btn span {
  font-size: 18px;
  color: #fff;
}

@media (max-width: 767px) {
  .sect_effect .triangle_rotate {
    width: 280px;
    top: -100px;
    left: -100px;
    margin: 0;
  }
  .sect_effect .effect {
    padding: 50px 0;
    padding: 50px 0;
  }
  .sect_effect .effect .sect_title {
    font-size: 32px;
  }
  .sect_effect .effect .contents {
    margin-top: 40px;
    gap: 15px;
  }
  .sect_effect .effect .contents .content:first-child {
    width: 80%;
  }
  .sect_effect .effect .contents .content:nth-child(2) {
    width: 68%;
  }
  .sect_effect .effect .contents .content:last-child {
    width: 85%;
  }
  .sect_effect .effect .btn {
    margin: 50px auto 0;
    width: 250px;
    height: 40px;
  }
  .sect_effect .effect .btn span {
    font-size: 16px;
  }
}
/* ---------------------------------------------------------
    contact
--------------------------------------------------------- */
.sect_contact {
  background: #F7C8E0;
  position: relative;
}
.sect_contact .square_rotate {
  width: 300px;
  position: absolute;
  top: -180px;
  right: -120px;
  z-index: 1;
}
.sect_contact .contact {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.sect_contact .contact .sect_title {
  font-family: "line-eb";
  font-size: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 50px;
}
.sect_contact .contact .sect_title .ja {
  font-size: 18px;
  font-family: "line-bd";
}
.sect_contact .contact input[type=text],
.sect_contact .contact input[type=email],
.sect_contact .contact input[type=tel],
.sect_contact .contact select,
.sect_contact .contact textarea {
  display: block;
  width: calc(100% - 24px);
  height: 45px;
  margin-bottom: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 3px;
  background-color: #eff1f5;
  box-shadow: none;
  color: #5c6b80;
  font-size: 1em;
  line-height: 45px;
}
.sect_contact .contact input,
.sect_contact .contact select,
.sect_contact .contact textarea {
  letter-spacing: 1px;
  margin: 0;
  max-width: 100%;
  resize: none;
}
.sect_contact .contact textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
  padding: 0.8em;
  overflow: auto;
}
.sect_contact .contact .inquiry {
  width: 100%;
}
.sect_contact .contact .inquiry th {
  text-align: left;
  font-size: 14px;
  color: #444;
  padding-right: 5px;
  width: 30%;
  background: #f8f8f8;
  border: solid 1px #ddd;
  font-weight: 700;
  text-transform: uppercase;
  padding: 13px;
}
.sect_contact .contact .inquiry th .req { /* 必須 */
  font-size: 12px;
  padding: 5px;
  background: #e44141;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px;
}
.sect_contact .contact .inquiry th .any { /* 任意 */
  font-size: 12px;
  padding: 5px;
  background: #f09f4d;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px;
}
.sect_contact .contact .inquiry td {
  font-size: 14px;
  border: solid 1px #ddd;
  border-top: 1px solid #ededed;
  padding: 12px;
  background: #fff;
}
.sect_contact .contact .inquiry td .verticallist .wpcf7-list-item {
  display: block;
}
.sect_contact .contact .text-center {
  text-align: center;
}
.sect_contact .contact .text-center .wpcf7-submit {
  display: block;
  border: none;
  width: 350px;
  margin: 25px auto 0;
  padding: 15px;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  transition: box-shadow 0.25s;
  background: #ff9300;
}
.sect_contact .contact .text-center .wpcf7-submit:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 12px 24px -12px rgba(0, 0, 0, 0.2);
  opacity: 1;
}
.sect_contact .contact .wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 1em;
  border-radius: 0.25rem;
  border: 2px solid #00a0d2;
}
.sect_contact .contact .wpcf7 form.init .wpcf7-response-output {
  display: none;
}
.sect_contact .contact .wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
}
.sect_contact .contact .wpcf7 form.failed .wpcf7-response-output {
  border-color: #dc3232;
}
.sect_contact .contact .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
}
.sect_contact .contact .wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28;
}
.sect_contact .contact .wpcf7 form.invalid .wpcf7-response-output {
  border-color: #ffb900;
}
.sect_contact .contact .wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #ffb900;
}

@media (max-width: 767px) {
  .sect_contact .square_rotate {
    width: 220px;
    top: -120px;
    right: -90px;
    z-index: 1;
  }
  .sect_contact .contact {
    padding: 50px 0;
  }
  .sect_contact .contact .sect_title {
    font-size: 32px;
  }
  .sect_contact .contact .sect_title .ja {
    font-size: 14px;
  }
}
@media (max-width: 599px) {
  .inquiry td,
  .inquiry th {
    display: block !important;
    width: 100% !important;
    border-top: none !important;
    box-sizing: border-box !important;
  }
  .inquiry tr:first-child th {
    border-top: 1px solid #ddd !important;
  }
}/*# sourceMappingURL=top.css.map */