@charset "UTF-8";
/************************** reset設定 **************************/
:root {
  font-size: 10px;
}

abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

*:after,
*:before,
a,
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
button,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
textarea,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -ms-overflow-style: scrollbar;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
  left: 0;
  right: 0;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
  color: #000;
  font-size: clamp(14px, 1.42vw, 20px);
  overflow-x: hidden;
}

.mincho {
  font-family: "游明朝体", YuMincho, "Yu Mincho", "游明朝", "Noto Serif JP", serif;
}

.shippori-b1 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}

.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #000;
  outline: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

img {
  border: 0;
  vertical-align: middle;
}
img:not([width]) {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 575px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

em,
i {
  font-style: normal;
}

button,
input:not([type=checkbox]):not([type=radio]),
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  background: #fff;
  vertical-align: middle;
  font-size: inherit;
  color: #333;
}

input::-webkit-input-placeholder {
  color: #bfbfbf;
}

input:-ms-input-placeholder {
  color: #bfbfbf;
}

input::-moz-placeholder {
  color: #bfbfbf;
}

option {
  outline: 0;
}

sup {
  position: relative;
  top: -0.7em;
  font-size: 70%;
}

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

@-ms-viewport {
  width: device-width;
}
header {
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 99;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1024px) {
  header {
    height: 60px;
    background-color: #fff;
  }
}
header.scrolled {
  background-color: #fff;
}
header h1 {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -99;
}
header .header_inner {
  max-width: 1920px;
  margin: 0 auto;
  height: 100%;
}
header .header_inner .header_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 100%;
  padding-left: 2.1vw;
}
@media screen and (max-width: 1024px) {
  header .header_inner .header_flex {
    padding-left: 5vw;
  }
}
header .header_inner .header_flex .header_logo {
  max-width: 316px;
}
@media screen and (max-width: 1024px) {
  header .header_inner .header_flex .header_logo {
    max-width: 192px;
  }
}
header .header_inner .header_flex .header_logo a {
  display: block;
}
header .header_inner .header_flex .header_logo a img {
  width: 100%;
  height: auto;
}
header .header_inner .header_flex .header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  header .header_inner .header_flex .header_nav {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  header .header_inner .header_flex .header_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #f8f8f8;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 100;
    padding: 0;
    overflow-y: auto;
  }
  header .header_inner .header_flex .header_nav.active {
    opacity: 1;
    visibility: visible;
  }
}
header .header_inner .header_flex .header_nav .sp-menu-header {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header_inner .header_flex .header_nav .sp-menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 60px;
    padding-left: 5vw;
    background-color: #fff;
  }
  header .header_inner .header_flex .header_nav .sp-menu-header .sp-menu-logo {
    max-width: 192px;
  }
  header .header_inner .header_flex .header_nav .sp-menu-header .sp-menu-logo img {
    width: 100%;
    height: auto;
  }
  header .header_inner .header_flex .header_nav .sp-menu-header .sp-menu-close {
    width: 26px;
    height: 26px;
    position: relative;
    cursor: pointer;
    margin-right: 3.5vw;
  }
  header .header_inner .header_flex .header_nav .sp-menu-header .sp-menu-close::before, header .header_inner .header_flex .header_nav .sp-menu-header .sp-menu-close::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    top: 50%;
    left: 0;
  }
  header .header_inner .header_flex .header_nav .sp-menu-header .sp-menu-close::before {
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  header .header_inner .header_flex .header_nav .sp-menu-header .sp-menu-close::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
}
header .header_inner .header_flex .header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  header .header_inner .header_flex .header_nav ul {
    gap: 12px;
  }
}
@media screen and (max-width: 1024px) {
  header .header_inner .header_flex .header_nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: 46px;
  }
}
header .header_inner .header_flex .header_nav ul li {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  header .header_inner .header_flex .header_nav ul li {
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    height: auto;
    max-width: 360px;
    margin: 0 auto;
  }
}
header .header_inner .header_flex .header_nav ul li a {
  font-size: clamp(14px, 0.78vw, 15px);
  font-weight: 500;
  color: #000;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  header .header_inner .header_flex .header_nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 17px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    position: relative;
  }
  header .header_inner .header_flex .header_nav ul li a::after {
    content: "";
    width: 8px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14'%3E%3Cpath d='M1 1l6 6-6 6' stroke='%23333' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
header .header_inner .header_flex .header_nav .header_contact {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  header .header_inner .header_flex .header_nav .header_contact {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0;
  }
}
header .header_inner .header_flex .header_nav .header_contact a {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2px 0 32px;
  width: 240px;
  white-space: nowrap;
  font-size: clamp(14px, 0.78vw, 15px);
  font-weight: 500;
  color: #fff;
  background-color: #C30D23;
}
@media screen and (max-width: 1024px) {
  header .header_inner .header_flex .header_nav .header_contact a {
    width: 100%;
    height: 60px;
    font-size: 15px;
    padding: 0 10px 0 40px;
  }
}
header .header_inner .header_flex .header_nav .header_contact a::before {
  position: absolute;
  content: "";
  display: block;
  width: 22.6px;
  height: 15px;
  background-image: url("../images/common/mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: 58px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  header .header_inner .header_flex .header_nav .header_contact a::before {
    left: 70px;
  }
}
header .header_inner .header_flex .hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header_inner .header_flex .hamburger {
    display: block;
    width: 26px;
    height: 18px;
    position: relative;
    cursor: pointer;
    z-index: 99;
    margin-right: 3.5vw;
  }
  header .header_inner .header_flex .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .header_inner .header_flex .hamburger span:nth-child(1) {
    top: 0;
  }
  header .header_inner .header_flex .hamburger span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  header .header_inner .header_flex .hamburger span:nth-child(3) {
    bottom: 0;
  }
  header .header_inner .header_flex .hamburger.active {
    display: none;
  }
}
header .fixed_contact {
  position: fixed;
  bottom: 222px;
  right: 0;
}
@media screen and (max-width: 767px) {
  header .fixed_contact {
    display: none;
  }
}
header .fixed_contact a {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* padding: 0 1.9vw 0 4.5vw; */
  padding-top: 34px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background-color: #c30d23;
  width: 58px;
  height: 280px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 5px;
}
header .fixed_contact a::before {
  position: absolute;
  content: "";
  display: block;
  width: 24px;
  height: 15px;
  background-image: url(../images/common/mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 27px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.owabi-main {
  padding-top: 80px;
}
@media screen and (max-width: 1024px) {
  .owabi-main {
    padding-top: 60px;
  }
}

.owabi-site .fixed_contact_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .owabi-site .fixed_contact_sp {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #2c2c2c;
    z-index: 98;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .owabi-site .fixed_contact_sp .inner {
    max-width: none;
    padding: 0 30px;
    margin: 0 auto;
  }
  .owabi-site .fixed_contact_sp .inner .contact_btn {
    width: 100%;
  }
  .owabi-site .fixed_contact_sp .inner .contact_btn a {
    height: 50px;
    margin: 0 auto;
  }
  .owabi-site .fixed_contact_sp .inner .contact_btn a::after {
    display: none;
  }
}
.owabi-site .sec_contact {
  position: relative;
  background-color: #2c2c2c;
  padding: 90px 10px 88px;
  margin-top: 270px;
}
@media screen and (max-width: 1024px) {
  .owabi-site .sec_contact {
    padding: 48px 10px 60px;
    margin-top: 160px;
  }
}
.owabi-site .sec_contact::before {
  position: absolute;
  content: "";
  background-image: url("../images/contact.svg");
  background-size: cover;
  background-position: center;
  top: 8px;
  left: 10.41vw;
  width: 785px;
  height: 124px;
  -webkit-transform: translate(0%, -100%);
          transform: translate(0%, -100%);
}
@media screen and (min-width: 1921px) {
  .owabi-site .sec_contact::before {
    left: calc(50% + 28px);
    -webkit-transform: translate(-100%, -100%);
            transform: translate(-100%, -100%);
  }
}
@media screen and (max-width: 1024px) {
  .owabi-site .sec_contact::before {
    top: 6px;
    left: 0;
    width: 100vw;
    max-width: 393px;
    height: 62px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.owabi-site .sec_contact .inner {
  max-width: 1260px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .owabi-site .sec_contact .inner {
    max-width: 330px;
    padding: 0;
  }
}
.owabi-site .sec_contact .inner .contact_wrap h3 {
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .owabi-site .sec_contact .inner .contact_wrap h3 {
    font-size: clamp(18px, 5.12vw, 20px);
    margin-bottom: -2px;
  }
}
.owabi-site .sec_contact .inner .contact_wrap p {
  font-size: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .owabi-site .sec_contact .inner .contact_wrap p {
    font-size: 14px;
    margin-bottom: 18px;
  }
}
.owabi-site .sec_contact .inner .contact_wrap .contact_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8%;
}
@media screen and (max-width: 1024px) {
  .owabi-site .sec_contact .inner .contact_wrap .contact_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.owabi-site .sec_contact .inner .contact_wrap .contact_flex .tel_wrap {
  width: calc(92% - 480px);
}
@media screen and (max-width: 1024px) {
  .owabi-site .sec_contact .inner .contact_wrap .contact_flex .tel_wrap {
    width: 100%;
  }
}
.owabi-site .sec_contact .inner .contact_wrap .contact_flex .tel_wrap .tel {
  font-family: "Jost", sans-serif;
  font-size: clamp(48px, 3.33vw, 64px);
  letter-spacing: 1.2px;
  margin-bottom: -20px;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .owabi-site .sec_contact .inner .contact_wrap .contact_flex .tel_wrap .tel {
    font-size: 28px;
    letter-spacing: 0.6px;
    margin-bottom: -14px;
  }
}
.owabi-site .sec_contact .inner .contact_wrap .contact_flex .tel_wrap .hours {
  font-size: clamp(18px, 1.25vw, 24px);
  letter-spacing: -0.4px;
}
@media screen and (max-width: 1024px) {
  .owabi-site .sec_contact .inner .contact_wrap .contact_flex .tel_wrap .hours {
    font-size: 14px;
    letter-spacing: -0.2px;
  }
}
.owabi-site .sec_contact .inner .contact_wrap .contact_flex .contact_btn {
  margin-top: 32px;
  width: 480px;
}
@media screen and (max-width: 1024px) {
  .owabi-site .sec_contact .inner .contact_wrap .contact_flex .contact_btn {
    margin-top: 15px;
    width: 100%;
    max-width: 330px;
    height: 60px;
  }
}
.owabi-site .group_sec {
  padding: 102px 0 80px;
}
@media screen and (max-width: 1024px) {
  .owabi-site .group_sec {
    padding: 48px 0 58px;
  }
}
.owabi-site .group_sec .under_wrap {
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding: 0 15px;
}
.owabi-site .group_sec .under_wrap h2 {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}
.owabi-site .group_sec .under_wrap ul {
  text-align: center;
  letter-spacing: -0.5em;
}
.owabi-site .group_sec .under_wrap ul > li {
  display: inline-block;
  letter-spacing: normal;
  margin-right: 55px;
  margin-bottom: 30px;
}
.owabi-site .group_sec .under_wrap ul > li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .owabi-site .group_sec .under_wrap h2 {
    font-size: 26px;
  }
  .owabi-site .group_sec .under_wrap ul > li {
    margin-right: 25px;
    margin-bottom: 20px;
  }
  .owabi-site .group_sec .under_wrap ul > li:nth-child(1) {
    max-width: 132px;
  }
  .owabi-site .group_sec .under_wrap ul > li:nth-child(2) {
    max-width: 155px;
  }
  .owabi-site .group_sec .under_wrap ul > li:nth-child(3) {
    max-width: 155px;
  }
  .owabi-site .group_sec .under_wrap ul > li:nth-child(4) {
    max-width: 80px;
  }
  .owabi-site .group_sec .under_wrap ul > li:nth-child(5) {
    max-width: 43px;
  }
  .owabi-site .group_sec .under_wrap ul > li:nth-child(6) {
    max-width: 122px;
  }
  .owabi-site .group_sec .under_wrap ul > li:nth-child(7) {
    max-width: 143px;
  }
  .owabi-site .group_sec .under_wrap ul > li:nth-child(8) {
    max-width: 133px;
  }
  .owabi-site .group_sec .under_wrap ul > li:nth-child(9) {
    max-width: 63px;
  }
}
.owabi-site.owabi-owabi .sec_contact {
  margin-top: 0px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi .sec_contact {
    margin-top: 0px;
  }
}

footer#ft {
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  footer#ft {
    padding-bottom: 70px;
  }
}
footer#ft .ft_inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 10px 40px;
}
@media screen and (max-width: 1024px) {
  footer#ft .ft_inner {
    padding: 40px 10px 40px;
  }
}
footer#ft .ft_inner .footer_logo {
  width: 316px;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  footer#ft .ft_inner .footer_logo {
    margin-bottom: 22px;
  }
}
footer#ft .ft_inner .address {
  font-size: clamp(16px, 1.42vw, 20px);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  margin-bottom: 46px;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  footer#ft .ft_inner .address {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 22px;
  }
}
footer#ft .ft_inner .footer_nav {
  border-top: #cccccc 1px solid;
  border-bottom: #cccccc 1px solid;
  margin-bottom: 40px;
  padding: 28px 20px;
}
@media screen and (max-width: 1024px) {
  footer#ft .ft_inner .footer_nav {
    padding: 20px 10px;
    max-width: 326px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
footer#ft .ft_inner .footer_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  footer#ft .ft_inner .footer_nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px 0;
  }
}
@media screen and (max-width: 1024px) {
  footer#ft .ft_inner .footer_nav ul li {
    height: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
footer#ft .ft_inner .footer_nav ul li a {
  font-size: clamp(14px, 0.78vw, 15px);
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  footer#ft .ft_inner .footer_nav ul li a {
    font-size: 12px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 1024px) {
  footer#ft .ft_inner .footer_nav ul li {
    border-right: #ccc 1px solid;
  }
  footer#ft .ft_inner .footer_nav ul li:nth-of-type(4) {
    border-right: none;
  }
  footer#ft .ft_inner .footer_nav ul li:last-of-type {
    border-right: none;
  }
}
footer#ft .ft_inner .copyright {
  font-size: clamp(14px, 0.78vw, 15px);
  font-family: "Jost", sans-serif;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  footer#ft .ft_inner .copyright {
    font-size: 10px;
  }
}

@media screen and (max-width: 1024px) {
  .owabi-site .pc {
    display: none !important;
  }
}
.owabi-site .tab {
  display: none;
}
@media screen and (min-width: 1024px) {
  .owabi-site .tab {
    display: block;
  }
}
.owabi-site .sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .owabi-site .sp {
    display: block;
  }
}
.owabi-site .inline-block {
  display: inline-block;
}
.owabi-site .more_btn a {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  color: #fff;
  background-color: #2c2c2c;
  width: 400px;
  height: 100px;
}
@media screen and (max-width: 1024px) {
  .owabi-site .more_btn a {
    font-size: 15px;
    width: 100%;
    max-width: 330px;
    height: 60px;
    margin: 0 auto;
  }
}
.owabi-site .more_btn a::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 24px;
  background-image: url("../images/arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  right: 2.1vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .owabi-site .more_btn a::after {
    width: 8px;
    height: 15px;
    right: 18px;
  }
}
.owabi-site .inner {
  max-width: 1610px;
  padding: 0 30px;
  margin: 0 auto;
}
.owabi-site .inner .contact_btn a {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.9vw 0 4.5vw;
  white-space: nowrap;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  color: #fff;
  background-color: #C30D23;
  width: 480px;
  height: 100px;
}
@media screen and (max-width: 1024px) {
  .owabi-site .inner .contact_btn a {
    padding: 0 10px 0 40px;
    width: 100%;
    max-width: 330px;
    height: 60px;
    font-size: clamp(14px, 3.85vw, 15px);
  }
}
.owabi-site .inner .contact_btn a::before, .owabi-site .inner .contact_btn a::after {
  position: absolute;
  content: "";
  display: block;
}
.owabi-site .inner .contact_btn a::before {
  width: 38px;
  height: 26px;
  background-image: url(../images/common/mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: calc(50% + 2px);
  left: 92px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .owabi-site .inner .contact_btn a::before {
    width: 21px;
    height: 14px;
    top: calc(50% + 1px);
    left: 75px;
  }
}
@media screen and (max-width: 540px) {
  .owabi-site .inner .contact_btn a::before {
    left: 60px;
  }
}
.owabi-site .inner .contact_btn a::after {
  width: 12px;
  height: 24px;
  background-image: url("../images/arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  right: 2.1vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .owabi-site .inner .contact_btn a::after {
    width: 8px;
    height: 15px;
    right: 29px;
  }
}
.owabi-site .inner .sub_title {
  font-family: "Jost", sans-serif;
  font-size: clamp(16px, 1.42vw, 20px);
  font-weight: 500;
  color: #C30D23;
  margin-bottom: 20px;
  margin-left: 14px;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 1024px) {
  .owabi-site .inner .sub_title {
    font-size: 12px;
    margin-bottom: 8px;
    margin-left: 1px;
    letter-spacing: 0.8px;
  }
}
.owabi-site .inner .sec_title {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 600;
  margin-bottom: 36px;
  margin-left: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .owabi-site .inner .sec_title {
    font-size: clamp(20px, 6.15vw, 24px);
    margin-bottom: 26px;
    margin-left: 1px;
  }
}
.owabi-site p {
  margin-bottom: 38px;
}
@media screen and (max-width: 1024px) {
  .owabi-site p {
    margin-bottom: 28px;
  }
}
.owabi-site p:last-of-type {
  margin-bottom: 0;
}
.owabi-site .plain_text {
  font-size: clamp(18px, 1.42vw, 20px);
  margin-bottom: 60px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .owabi-site .plain_text {
    margin-bottom: 40px;
  }
}
.owabi-site .page_top {
  padding: 128px 0 66px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .owabi-site .page_top {
    padding: 80px 0 40px;
  }
}
.owabi-site .page_top::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url("../images/bg_1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 29.2vw;
  max-width: 560px;
  height: 29.2vw;
  max-height: 560px;
  top: -80px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .owabi-site .page_top::before {
    max-width: 255.94px;
    max-height: 255.94px;
    top: 0;
  }
}
.owabi-site .page_top .inner {
  max-width: 1580px;
  padding: 0 30px;
  margin: 0 auto;
}
.owabi-site .page_top .inner h2 {
  position: relative;
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(40px, 2.92vw, 56px);
  font-weight: 500;
  padding-left: 40px;
  margin-bottom: 122px;
}
@media screen and (max-width: 1024px) {
  .owabi-site .page_top .inner h2 {
    font-size: clamp(24px, 4.17vw, 32px);
    margin-bottom: 50px;
    padding-left: 32px;
  }
}
.owabi-site .page_top .inner h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 20px;
  height: 5px;
  background-color: #c30d23;
}
.owabi-site .page_top .inner .breadcrumb_wrap .breadcrumb_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.owabi-site .page_top .inner .breadcrumb_wrap .breadcrumb_list li {
  font-size: clamp(14px, 4.1vw, 16px);
  text-indent: -2em;
  padding-left: 2em;
}
.owabi-site .page_top .inner .breadcrumb_wrap .breadcrumb_list li + li::before {
  content: "|";
  margin: 0 14px;
  color: #ddd;
}
.owabi-site .page_top .inner .breadcrumb_wrap .breadcrumb_list li a {
  text-decoration: none;
}
.owabi-site #sec_about {
  position: relative;
  padding-bottom: 146px;
}
@media screen and (max-width: 1024px) {
  .owabi-site #sec_about {
    padding-bottom: 80px;
  }
}
.owabi-site #sec_about::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url("../images/bg_2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 41.7vw;
  max-width: 800px;
  height: 41.7vw;
  max-height: 800px;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .owabi-site #sec_about::after {
    max-width: 162.5px;
    max-height: 162.5px;
  }
}
.owabi-site #sec_about .inner {
  max-width: 1580px;
  padding: 0 30px;
  margin: 0 auto;
}
.owabi-site #sec_about .inner .h3_text {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 500;
  margin-bottom: 44px;
}
@media screen and (max-width: 1024px) {
  .owabi-site #sec_about .inner .h3_text {
    font-size: clamp(20px, 3.13vw, 24px);
    margin-bottom: 24px;
  }
}
.owabi-site #sec_about .inner .h3_text .black {
  background-color: #2c2c2c;
  color: #fff;
  padding: 2px 10px;
  font-weight: 500;
  line-height: 1.4;
  display: inline-block;
  letter-spacing: 0.4px;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .owabi-site #sec_about .inner .h3_text .black {
    padding: 0px 4px;
  }
}
.owabi-site #sec_about .inner .h3_text .black .small_space {
  letter-spacing: 0px;
}

.owabi-site.owabi-owabi #sec_1 {
  position: relative;
  padding: 18px 0 150px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 {
    padding: 35px 0 72px;
  }
}
.owabi-site.owabi-owabi #sec_1::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url("../images/bg_1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 65.8vw;
  max-width: 1260px;
  height: 65.8vw;
  max-height: 1260px;
  top: -80px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1::before {
    max-width: 255.94px;
    max-height: 255.94px;
    top: 0;
  }
}
.owabi-site.owabi-owabi #sec_1::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url("../images/bg_2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 41.7vw;
  max-width: 800px;
  height: 41.7vw;
  max-height: 800px;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1::after {
    max-width: 162.5px;
    max-height: 162.5px;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.9%;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .title_wrap {
  width: 25.5%;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .title_wrap {
    width: 100%;
    height: 471px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1%;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .title_wrap h2 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: clamp(170px, 15.63vw, 300px);
  color: #6c6c6c;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .title_wrap h2 {
    font-size: clamp(64px, 23.08vw, 90px);
    width: 54%;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap {
  padding-top: 111px;
  width: 69.8%;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap {
    width: 100%;
    padding-top: 14px;
    margin: 0 auto;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_1,
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_2 {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(48px, 3.33vw, 64px);
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_1,
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_2 {
    font-size: clamp(18px, 5.64vw, 22px);
    max-width: 330px;
    margin: 0 auto;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_1 {
  font-size: clamp(40px, 2.92vw, 56px);
  margin-bottom: 6px;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_1 {
    font-size: clamp(16px, 4.87vw, 19px);
    margin-bottom: 2px;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_1 .small {
  font-size: clamp(36px, 2.5vw, 48px);
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_1 .small {
    font-size: clamp(14px, 4.1vw, 16px);
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_2 {
  margin-bottom: 50px;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_2 {
    margin-bottom: 31px;
    line-height: 1.6;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_2 .black {
  background-color: #2c2c2c;
  color: #fff;
  padding: 2px 14px;
  font-weight: 500;
  line-height: 1.2;
  display: inline-block;
  letter-spacing: 0.4px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_2 .black {
    padding: 0px 4px;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_2 .black.black_2 {
  margin-left: -24px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_2 .black.black_2 {
    margin-left: -8px;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .sample_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .sample_wrap {
    gap: 10px;
    margin-left: 6px;
    margin-bottom: 33px;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .sample_wrap .img_wrap {
  max-width: 436px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .sample_wrap .img_wrap {
    max-width: 240px;
    margin: 0 auto;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .sample_wrap .img_wrap .sample_text {
  font-size: clamp(16px, 1.42vw, 20px);
  text-align: right;
  max-width: 914px;
  margin-top: 8px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .sample_wrap .img_wrap .sample_text {
    font-size: clamp(14px, 3.85vw, 15px);
    margin-top: 2px;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .contact_btn {
  margin-bottom: 94px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .contact_btn {
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .contact_btn a {
    margin: 0 auto;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_wrap h3 {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(36px, 2.5vw, 48px);
  margin-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_wrap h3 {
    font-size: clamp(20px, 6.15vw, 24px);
    line-height: 1.4;
    max-width: 330px;
    margin: 0 auto;
    margin-bottom: 24px;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_wrap p {
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .detail_wrap .text_wrap p {
    letter-spacing: -1.4px;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list,
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list.sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 21px;
  margin-bottom: 46px;
  padding-left: 6px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list,
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list.sp {
    width: 46%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    max-height: 471px;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
    padding-top: 51px;
    gap: 11px;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list li,
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list.sp li {
  position: relative;
  width: calc((100% - 63px) / 4);
  height: 160px;
  max-width: 240px;
  border: #ddd 4px solid;
  background-color: #fff;
  font-size: clamp(24px, 1.88vw, 36px);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  line-height: 1.2;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list li,
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list.sp li {
    font-size: clamp(14px, 3.85vw, 15px);
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    width: 45px;
    height: auto;
    letter-spacing: 4px;
    text-orientation: upright;
    border: #ddd 2px solid;
    padding: 19px 0 15px;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list li::before,
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list.sp li::before {
  position: absolute;
  content: "";
  background-image: url("../images/feature_icon.svg");
  background-size: contain;
  width: 60px;
  height: 60px;
  top: -36px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list li::before,
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list.sp li::before {
    width: 30px;
    height: 30px;
    top: -10px;
    left: 6px;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list li.list_1::before,
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list.sp li.list_1::before {
  background-image: url("../images/feature_icon_1.svg");
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list li.list_2::before,
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list.sp li.list_2::before {
  background-image: url("../images/feature_icon_2.svg");
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list li.list_3::before,
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list.sp li.list_3::before {
  background-image: url("../images/feature_icon_3.svg");
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list li.list_4::before,
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list.sp li.list_4::before {
  background-image: url("../images/feature_icon_4.svg");
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list {
    display: none !important;
  }
}
.owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list.sp {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_1 .inner .flex_wrap .feature_list.sp {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.owabi-site.owabi-owabi #sec_2 {
  position: relative;
  padding: 150px 0;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 {
    padding: 72px 0 80px;
  }
}
.owabi-site.owabi-owabi #sec_2::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url("../images/bg_3.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2::before {
    background-image: url("../images/bg_3_sp.svg");
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6%;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .text_wrap {
  width: 40%;
  margin-left: 14px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .text_wrap {
    width: 100%;
    margin-left: 1px;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .text_wrap .sub_title {
  margin-left: 0;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .text_wrap .sub_title {
    margin-bottom: 8px;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .text_wrap .sec_title {
  margin-left: 0;
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .text_wrap p {
  line-height: 2;
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .text_wrap p:last-of-type {
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .text_wrap p:last-of-type {
    margin-bottom: 12px;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap {
  width: 58%;
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap {
    width: 100%;
    padding: 10px 0 41px;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 18px 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 784px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap {
    gap: 21px 28px;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img {
  border: #ddd 1px solid;
  padding: 18px 20px;
  background-color: #fff;
  max-width: 476px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img {
    max-width: 240px;
    padding: 9px 9px 5px;
    margin-left: 2px;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img .img {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img .img {
    margin-bottom: 5px;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img p {
  text-align: center;
  white-space: nowrap;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img p {
    font-size: 12px;
    line-height: 1.4;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img.img_2 {
  max-width: 226px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img.img_2 {
    max-width: 133px;
    margin-left: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img.img_2 {
    margin-left: 0;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img.img_3 {
  padding-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img.img_3 {
    padding-bottom: 5px;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img.img_3 .img {
  margin-bottom: 4px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .sample_wrap .sample_flex_wrap .sample_img.img_3 .img {
    margin-bottom: 5px;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .more_btn a {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  color: #fff;
  background-color: #2c2c2c;
  width: 400px;
  height: 100px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .more_btn a {
    font-size: 15px;
    width: 100%;
    max-width: 330px;
    height: 60px;
    margin: 0 auto;
  }
}
.owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .more_btn a::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 24px;
  background-image: url("../images/arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  right: 2.1vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_2 .inner .flex_wrap .more_btn a::after {
    width: 8px;
    height: 15px;
    right: 18px;
  }
}
.owabi-site.owabi-owabi #sec_3 {
  padding: 150px 0 160px;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 {
    padding: 71px 0 80px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .sec_title {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .sec_title {
    margin-bottom: 27px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner > p:not(.sub_title) {
  display: none;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner > p:not(.sub_title) {
    display: block;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner > p:not(.sub_title):last-of-type {
    margin-bottom: 50px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 12px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 79px;
    margin-left: 2px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box {
  position: relative;
  width: 19.9vw;
  max-width: 324px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box {
    width: 40vw;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    text-align: center;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box::after {
  position: absolute;
  content: "";
  background-image: url("../images/step_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 34px;
  height: 68px;
  top: calc(50% + 10px);
  right: -20.6%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
@media screen and (min-width: 1921px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box::after {
    right: -66px;
  }
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box::after {
    background-image: url(../images/step_arrow_sp.svg);
    width: 36px;
    height: 20px;
    top: auto;
    bottom: -34px;
    right: 50%;
    -webkit-transform: translate(50%, 100%);
            transform: translate(50%, 100%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box:nth-of-type(2)::after {
    display: none;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box:last-of-type::after {
  display: none;
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box .step_img_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box .step_img_wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box .step_img_wrap .step_img {
    width: 65px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box .step_img_wrap .step_icon {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box .step_img_wrap .step_icon {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box .step_text {
    margin-left: -2px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box .step_text h4 {
  font-size: clamp(20px, 1.25vw, 24px);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box .step_text h4 {
    margin-bottom: 10px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box .step_text p {
  font-weight: 400;
  line-height: 1.5;
  padding-left: 2px;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box .step_text p {
    line-height: 2.2;
    padding-left: 0px;
    letter-spacing: -0.4px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_1 {
  gap: 56px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_1 {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_1 {
    gap: 10px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_1 .step_icon {
  width: 86px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_1 .step_icon {
    width: 58px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_2 {
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_2 {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_2 {
    gap: 8px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_2 .step_icon {
  width: 126px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_2 .step_icon {
    width: 85px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_3 {
  gap: 26px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_3 {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_3 {
    gap: 8px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_3 .step_icon {
  width: 102px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_3 .step_icon {
    width: 63px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_4 {
  gap: 26px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_4 {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_4 {
    gap: 8px;
  }
}
.owabi-site.owabi-owabi #sec_3 .inner .flow_flex .flow_box.step_4 .step_icon {
  width: 79px;
}
.owabi-site.owabi-owabi #sec_4 {
  position: relative;
  padding: 120px 0 138px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_4 {
    padding: 74px 0 82px;
  }
}
.owabi-site.owabi-owabi #sec_4::before, .owabi-site.owabi-owabi #sec_4::after {
  position: absolute;
  content: "";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 800px;
  height: 800px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_4::before, .owabi-site.owabi-owabi #sec_4::after {
    width: 162.5px;
    height: 162.5px;
  }
}
.owabi-site.owabi-owabi #sec_4::before {
  background-image: url("../images/bg_4.svg");
  top: 0;
  left: 0;
}
.owabi-site.owabi-owabi #sec_4::after {
  background-image: url("../images/bg_5.svg");
  bottom: 0;
  right: 0;
}
.owabi-site.owabi-owabi #sec_4 .inner .flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6%;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_4 .inner .flex_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .title_wrap {
  width: 27%;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .title_wrap {
    width: 100%;
    margin-left: 2px;
  }
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .title_wrap .sec_title {
    margin-bottom: 27px;
  }
}
.owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .qa_wrap {
  width: 67%;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .qa_wrap {
    width: 100%;
  }
}
.owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .qa_wrap .qa_box {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .qa_wrap .qa_box {
    margin-bottom: 29px;
  }
}
.owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .qa_wrap .qa_box h4 {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 600;
  margin-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .qa_wrap .qa_box h4 {
    font-size: 16px;
    margin-bottom: 11px;
    gap: 9px;
    line-height: 1.6;
  }
}
.owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .qa_wrap .qa_box h4 .Q {
  font-family: "Jost", sans-serif;
  font-size: clamp(24px, 1.67vw, 32px);
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .qa_wrap .qa_box h4 .Q {
    font-size: 20px;
    line-height: 1.6;
  }
}
.owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .qa_wrap .qa_box p {
  font-size: clamp(16px, 1.42vw, 20px);
  margin-left: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .qa_wrap .qa_box p {
    font-size: 14px;
    margin-left: 1px;
    line-height: 1.5;
  }
}
.owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .qa_wrap .qa_box p .a {
  font-family: "Jost", sans-serif;
  font-size: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi #sec_4 .inner .flex_wrap .qa_wrap .qa_box p .a {
    font-size: 20px;
    line-height: 1.2;
  }
}

.owabi-site.owabi-about #sec_1 {
  padding: 158px 0 0;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-about #sec_1 {
    padding: 80px 0 0;
  }
}
.owabi-site.owabi-about #sec_1 .inner {
  max-width: 1920px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-about #sec_1 .inner {
    padding: 0 30px;
  }
}
.owabi-site.owabi-about #sec_1 .inner .flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 110px;
  max-width: 1750px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-about #sec_1 .inner .flex_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.owabi-site.owabi-about #sec_1 .inner .flex_wrap:last-of-type {
  margin-bottom: 0;
}
.owabi-site.owabi-about #sec_1 .inner .flex_wrap .img_wrap {
  width: 100%;
  max-width: 840px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-about #sec_1 .inner .flex_wrap .img_wrap {
    max-width: 640px;
    margin: 0 auto;
  }
}
.owabi-site.owabi-about #sec_1 .inner .flex_wrap .text_wrap {
  width: 100%;
  max-width: 870px;
  padding: 24px 0;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-about #sec_1 .inner .flex_wrap .text_wrap {
    padding: 0;
  }
}
.owabi-site.owabi-about #sec_1 .inner .flex_wrap .text_wrap h4 {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(32px, 2.08vw, 40px);
  line-height: 1.5;
  margin-bottom: 31px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-about #sec_1 .inner .flex_wrap .text_wrap h4 {
    font-size: clamp(20px, 3.13vw, 24px);
  }
}
.owabi-site.owabi-about #sec_1 .inner .flex_wrap .text_wrap p {
  line-height: 2;
}
.owabi-site.owabi-about #sec_1 .inner .flex_wrap .text_wrap .more_btn {
  margin-top: 84px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-about #sec_1 .inner .flex_wrap .text_wrap .more_btn {
    margin-top: 60px;
  }
}
.owabi-site.owabi-about #sec_1 .inner .flex_wrap.flex_1 .text_wrap {
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-about #sec_1 .inner .flex_wrap.flex_1 .text_wrap {
    padding-right: 0;
  }
}
.owabi-site.owabi-about #sec_1 .inner .flex_wrap.flex_2 {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-about #sec_1 .inner .flex_wrap.flex_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.owabi-site.owabi-about #sec_1 .inner .flex_wrap.flex_2 .text_wrap {
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-about #sec_1 .inner .flex_wrap.flex_2 .text_wrap {
    padding-left: 0;
  }
}
.owabi-site.owabi-about #sec_1 .inner .flex_wrap.flex_3 .text_wrap {
  padding: 0 0;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-about #sec_1 .inner .flex_wrap.flex_3 .text_wrap {
    padding-right: 0;
  }
}
.owabi-site.owabi-about #sec_1 .inner .flex_wrap.flex_3 .text_wrap h4 {
  margin-top: -6px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-about #sec_1 .inner .flex_wrap.flex_3 .text_wrap h4 {
    margin-bottom: 40px;
  }
}

.owabi-site.owabi-price #sec_1 {
  padding: 30px 0 0;
  margin-bottom: 310px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-price #sec_1 {
    margin-bottom: 180px;
  }
}
.owabi-site.owabi-price #sec_1 .inner {
  max-width: 1580px;
}
.owabi-site.owabi-price #sec_1 .inner .price_box {
  margin-bottom: 132px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-price #sec_1 .inner .price_box {
    margin-bottom: 80px;
  }
}
.owabi-site.owabi-price #sec_1 .inner .price_box:last-of-type {
  margin-bottom: 0;
}
.owabi-site.owabi-price #sec_1 .inner .price_box h3 {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(32px, 2.08vw, 40px);
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-price #sec_1 .inner .price_box h3 {
    font-size: clamp(20px, 3.13vw, 24px);
  }
}
.owabi-site.owabi-price #sec_1 .inner .price_box .flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin-bottom: 110px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-price #sec_1 .inner .price_box .flex_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }
}
.owabi-site.owabi-price #sec_1 .inner .price_box .flex_wrap .img_wrap {
  width: 100%;
  max-width: 600px;
  padding: 12px 0;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-price #sec_1 .inner .price_box .flex_wrap .img_wrap {
    margin: 0 auto;
  }
}
.owabi-site.owabi-price #sec_1 .inner .price_box .flex_wrap .text_wrap {
  width: 100%;
  max-width: 840px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-price #sec_1 .inner .price_box .flex_wrap .text_wrap {
    padding: 0;
  }
}
.owabi-site.owabi-price #sec_1 .inner .price_box .flex_wrap .text_wrap p {
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-price #sec_1 .inner .price_box .flex_wrap .text_wrap p {
    margin-bottom: 24px;
  }
}
.owabi-site.owabi-price #sec_1 .inner .price_box .flex_wrap .text_wrap .more_btn {
  margin-top: 88px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-price #sec_1 .inner .price_box .flex_wrap .text_wrap .more_btn {
    margin-top: 60px;
  }
}
.owabi-site.owabi-price #sec_1 .inner .price_box.box_2 {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-price #sec_1 .inner .price_box.box_2 {
    margin-bottom: 80px;
  }
}
.owabi-site.owabi-price #sec_1 .inner .price_box.box_3 .flex_wrap .text_wrap .more_btn {
  margin-top: 168px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-price #sec_1 .inner .price_box.box_3 .flex_wrap .text_wrap .more_btn {
    margin-top: 80px;
  }
}
.owabi-site.owabi-recall #sec_about, .owabi-site.owabi-misrepresentation #sec_about, .owabi-site.owabi-other #sec_about {
  padding-bottom: 100px;
}
.owabi-site.owabi-recall #sec_about .inner .h3_text, .owabi-site.owabi-misrepresentation #sec_about .inner .h3_text, .owabi-site.owabi-other #sec_about .inner .h3_text {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_about .inner .h3_text, .owabi-site.owabi-misrepresentation #sec_about .inner .h3_text, .owabi-site.owabi-other #sec_about .inner .h3_text {
    margin-bottom: 40px;
  }
}
.owabi-site.owabi-recall #sec_about .inner .h3_text .mr12, .owabi-site.owabi-misrepresentation #sec_about .inner .h3_text .mr12, .owabi-site.owabi-other #sec_about .inner .h3_text .mr12 {
  margin-right: 12px;
}
.owabi-site.owabi-recall #sec_about .inner .plain_text, .owabi-site.owabi-misrepresentation #sec_about .inner .plain_text, .owabi-site.owabi-other #sec_about .inner .plain_text {
  line-height: 2;
  margin-bottom: 44px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_about .inner .plain_text, .owabi-site.owabi-misrepresentation #sec_about .inner .plain_text, .owabi-site.owabi-other #sec_about .inner .plain_text {
    margin-bottom: 28px;
  }
}
.owabi-site.owabi-recall #sec_1, .owabi-site.owabi-misrepresentation #sec_1, .owabi-site.owabi-other #sec_1 {
  padding: 142px 0 100px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_1, .owabi-site.owabi-misrepresentation #sec_1, .owabi-site.owabi-other #sec_1 {
    padding: 80px 0 60px;
  }
}
.owabi-site.owabi-recall #sec_1 .inner, .owabi-site.owabi-misrepresentation #sec_1 .inner, .owabi-site.owabi-other #sec_1 .inner {
  max-width: 1580px;
}
.owabi-site.owabi-recall #sec_1 .inner h4, .owabi-site.owabi-misrepresentation #sec_1 .inner h4, .owabi-site.owabi-other #sec_1 .inner h4 {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(32px, 2.08vw, 40px);
  line-height: 1.5;
  margin-bottom: 43px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_1 .inner h4, .owabi-site.owabi-misrepresentation #sec_1 .inner h4, .owabi-site.owabi-other #sec_1 .inner h4 {
    font-size: clamp(20px, 3.13vw, 24px);
  }
}
.owabi-site.owabi-recall #sec_1 .inner .flex_wrap, .owabi-site.owabi-misrepresentation #sec_1 .inner .flex_wrap, .owabi-site.owabi-other #sec_1 .inner .flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_1 .inner .flex_wrap, .owabi-site.owabi-misrepresentation #sec_1 .inner .flex_wrap, .owabi-site.owabi-other #sec_1 .inner .flex_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.owabi-site.owabi-recall #sec_1 .inner .flex_wrap .sample_wrap .img_wrap, .owabi-site.owabi-misrepresentation #sec_1 .inner .flex_wrap .sample_wrap .img_wrap, .owabi-site.owabi-other #sec_1 .inner .flex_wrap .sample_wrap .img_wrap {
  margin-bottom: 9px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_1 .inner .flex_wrap .sample_wrap .img_wrap, .owabi-site.owabi-misrepresentation #sec_1 .inner .flex_wrap .sample_wrap .img_wrap, .owabi-site.owabi-other #sec_1 .inner .flex_wrap .sample_wrap .img_wrap {
    margin-bottom: 4px;
  }
}
.owabi-site.owabi-recall #sec_1 .inner .flex_wrap .sample_wrap .img_wrap img, .owabi-site.owabi-misrepresentation #sec_1 .inner .flex_wrap .sample_wrap .img_wrap img, .owabi-site.owabi-other #sec_1 .inner .flex_wrap .sample_wrap .img_wrap img {
  max-height: 320px;
}
.owabi-site.owabi-recall #sec_2, .owabi-site.owabi-misrepresentation #sec_2, .owabi-site.owabi-other #sec_2 {
  padding: 22px 0 220px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_2, .owabi-site.owabi-misrepresentation #sec_2, .owabi-site.owabi-other #sec_2 {
    padding: 22px 0 120px;
  }
}
.owabi-site.owabi-recall #sec_2 .inner, .owabi-site.owabi-misrepresentation #sec_2 .inner, .owabi-site.owabi-other #sec_2 .inner {
  max-width: 1580px;
}
.owabi-site.owabi-recall #sec_2 .inner h4, .owabi-site.owabi-misrepresentation #sec_2 .inner h4, .owabi-site.owabi-other #sec_2 .inner h4 {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(32px, 2.08vw, 40px);
  line-height: 1.5;
  margin-bottom: 78px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_2 .inner h4, .owabi-site.owabi-misrepresentation #sec_2 .inner h4, .owabi-site.owabi-other #sec_2 .inner h4 {
    font-size: clamp(20px, 3.13vw, 24px);
    margin-bottom: 50px;
  }
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap h5, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap h5, .owabi-site.owabi-other #sec_2 .inner .price_wrap h5 {
  position: relative;
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(24px, 1.67vw, 32px);
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_2 .inner .price_wrap h5, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap h5, .owabi-site.owabi-other #sec_2 .inner .price_wrap h5 {
    font-size: clamp(20px, 3.13vw, 24px);
  }
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap h5::before, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap h5::before, .owabi-site.owabi-other #sec_2 .inner .price_wrap h5::before {
  content: "";
  position: absolute;
  top: calc(50% + 2px);
  right: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: calc(100% - 168px);
  height: 1px;
  background-color: #2c2c2c;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_2 .inner .price_wrap h5::before, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap h5::before, .owabi-site.owabi-other #sec_2 .inner .price_wrap h5::before {
    width: calc(100% - 110px);
  }
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table {
  margin-bottom: 92px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table {
    margin-bottom: 60px;
  }
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table::-webkit-scrollbar, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table::-webkit-scrollbar, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table::-webkit-scrollbar {
  height: 8px;
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table::-webkit-scrollbar-track, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table::-webkit-scrollbar-track, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table::-webkit-scrollbar-thumb, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table::-webkit-scrollbar-thumb, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table::-webkit-scrollbar-thumb:hover, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table::-webkit-scrollbar-thumb:hover, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table {
  width: 100%;
  min-width: 800px;
  border-collapse: separate;
  border-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table {
    min-width: 600px;
  }
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table thead tr th, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table thead tr th, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table thead tr th {
  background-color: #f8f8f8;
  border-top: #2c2c2c 1px solid;
  border-left: #2c2c2c 1px solid;
  padding: 22px 0 17px;
  font-size: clamp(18px, 1.04vw, 20px);
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  width: 221px;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table thead tr th, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table thead tr th, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table thead tr th {
    font-size: clamp(14px, 2.08vw, 16px);
    padding: 12px 0;
  }
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table thead tr th .modal_open, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table thead tr th .modal_open, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table thead tr th .modal_open {
  cursor: pointer;
  font-size: clamp(14px, 0.83vw, 16px);
  text-decoration: underline;
  margin-top: 2px;
  padding: 40px 15px 20px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table thead tr th .modal_open, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table thead tr th .modal_open, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table thead tr th .modal_open {
    font-size: clamp(12px, 1.88vw, 14px);
    margin-top: 4px;
    padding: 40px 8px 20px;
  }
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table thead tr th:first-of-type, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table thead tr th:first-of-type, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table thead tr th:first-of-type {
  background: none;
  border: none;
  width: auto;
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table thead tr th:nth-of-type(2), .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table thead tr th:nth-of-type(2), .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table thead tr th:nth-of-type(2) {
  border-left: #2c2c2c 1px solid;
  border-radius: 15px 0 0 0;
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table thead tr th:last-of-type, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table thead tr th:last-of-type, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table thead tr th:last-of-type {
  border-right: #2c2c2c 1px solid;
  border-radius: 0 15px 0 0;
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table tbody tr:first-of-type td:first-of-type, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table tbody tr:first-of-type td:first-of-type, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table tbody tr:first-of-type td:first-of-type {
  border-top: #2c2c2c 1px solid;
  border-radius: 15px 0 0 0;
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table tbody tr:last-of-type td, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table tbody tr:last-of-type td, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table tbody tr:last-of-type td {
  border-bottom: #2c2c2c 1px solid;
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table tbody tr:last-of-type td:first-of-type, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table tbody tr:last-of-type td:first-of-type, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table tbody tr:last-of-type td:first-of-type {
  border-radius: 0 0 0 15px;
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table tbody tr:last-of-type td:last-of-type, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table tbody tr:last-of-type td:last-of-type, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table tbody tr:last-of-type td:last-of-type {
  border-radius: 0 0 15px 0;
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table tbody tr td, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table tbody tr td, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table tbody tr td {
  border-left: #2c2c2c 1px solid;
  border-top: #2c2c2c 1px solid;
  padding: 18px 10px;
  background-color: #fff;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table tbody tr td, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table tbody tr td, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table tbody tr td {
    padding: 12px 8px;
    font-size: clamp(12px, 1.88vw, 14px);
  }
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table tbody tr td:first-of-type, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table tbody tr td:first-of-type, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table tbody tr td:first-of-type {
  border-left: #2c2c2c 1px solid;
  font-size: clamp(16px, 0.94vw, 18px);
  font-weight: 600;
  background-color: #fafafa;
  padding: 5px;
  width: 201px;
  min-width: 150px;
  height: 100px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table tbody tr td:first-of-type, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table tbody tr td:first-of-type, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table tbody tr td:first-of-type {
    font-size: clamp(14px, 2.08vw, 16px);
    height: auto;
    padding: 8px;
  }
}
@media screen and (max-width: 600px) {
  .owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table tbody tr td:first-of-type, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table tbody tr td:first-of-type, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table tbody tr td:first-of-type {
    min-width: 136px;
  }
}
.owabi-site.owabi-recall #sec_2 .inner .price_wrap .price_table table tbody tr td:last-of-type, .owabi-site.owabi-misrepresentation #sec_2 .inner .price_wrap .price_table table tbody tr td:last-of-type, .owabi-site.owabi-other #sec_2 .inner .price_wrap .price_table table tbody tr td:last-of-type {
  border-right: #2c2c2c 1px solid;
}
.owabi-site.owabi-recall .sec_contact, .owabi-site.owabi-misrepresentation .sec_contact, .owabi-site.owabi-other .sec_contact {
  margin-top: 0;
}
.owabi-site.owabi-misrepresentation #sec_1 .inner .flex_wrap {
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-misrepresentation #sec_1 .inner .flex_wrap {
    gap: 24px;
  }
}
.owabi-site.owabi-other #sec_about {
  padding-bottom: 16px;
}
.owabi-site.owabi-other #sec_about .inner .h3_text {
  margin-bottom: 52px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-other #sec_about .inner .h3_text {
    margin-bottom: 40px;
  }
}
.owabi-site.owabi-other #sec_1 {
  padding: 143px 0 100px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-other #sec_1 {
    padding: 80px 0 60px;
  }
}
.owabi-site.owabi-other #sec_1 .inner .flex_wrap {
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-other #sec_1 .inner .flex_wrap {
    gap: 24px;
  }
}
.owabi-site .size-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.owabi-site .size-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.owabi-site .size-modal .size-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.owabi-site .size-modal .size-modal-content {
  position: relative;
  z-index: 10001;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  max-width: 90%;
  max-height: 90vh;
  overflow: auto;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .owabi-site .size-modal .size-modal-content {
    padding: 20px;
    max-width: 95%;
  }
}
.owabi-site .size-modal .size-modal-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.owabi-site .size-modal .size-modal-content .size-modal-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
}
@media screen and (max-width: 768px) {
  .owabi-site .size-modal .size-modal-content .size-modal-caption {
    font-size: 16px;
    margin-top: 15px;
  }
}
.owabi-site .size-modal .size-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 36px;
  font-weight: 300;
  color: #666;
  cursor: pointer;
  line-height: 1;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  z-index: 10002;
}
.owabi-site .size-modal .size-modal-close:hover {
  color: #c00;
}
@media screen and (max-width: 768px) {
  .owabi-site .size-modal .size-modal-close {
    font-size: 30px;
    top: 5px;
    right: 10px;
  }
}

.owabi-site.owabi-owabi_contact #sec_1 {
  position: relative;
  padding: 36px 0 160px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_1 {
    padding: 60px 0 80px;
  }
}
.owabi-site.owabi-owabi_contact #sec_1::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url("../images/bg_2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 41.7vw;
  max-width: 800px;
  height: 41.7vw;
  max-height: 800px;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_1::after {
    max-width: 162.5px;
    max-height: 162.5px;
  }
}
.owabi-site.owabi-owabi_contact #sec_1 .inner .center_text {
  font-size: clamp(16px, 1.42vw, 20px);
  text-align: center;
  margin-bottom: 86px;
  line-height: 2;
}
.owabi-site.owabi-owabi_contact #sec_1 .inner .tel_box {
  border: 1px solid #2c2c2c;
  padding: 60px 10px 68px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
}
.owabi-site.owabi-owabi_contact #sec_1 .inner .tel_box .tel_text {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(24px, 1.67vw, 32px);
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_1 .inner .tel_box .tel_text {
    font-size: clamp(18px, 2.08vw, 24px);
  }
}
.owabi-site.owabi-owabi_contact #sec_1 .inner .tel_box .tel_link {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(36px, 2.5vw, 48px);
  margin-bottom: 30px;
  pointer-events: none;
  letter-spacing: 2.6px;
  font-weight: 600;
  display: block;
  margin-bottom: -10px;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_1 .inner .tel_box .tel_link {
    pointer-events: auto;
    font-size: clamp(24px, 3.13vw, 32px);
  }
}
.owabi-site.owabi-owabi_contact #sec_1 .inner .tel_box .hours_text {
  font-size: clamp(16px, 1.42vw, 20px);
}
.owabi-site.owabi-owabi_contact #sec_form,
.owabi-site.owabi-owabi_contact #sec_complete {
  padding: 142px 0 42px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_form,
  .owabi-site.owabi-owabi_contact #sec_complete {
    padding: 80px 0 20px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner h3,
.owabi-site.owabi-owabi_contact #sec_complete .inner h3 {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(32px, 2.08vw, 40px);
  line-height: 1.5;
  margin-bottom: 63px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner h3,
  .owabi-site.owabi-owabi_contact #sec_complete .inner h3 {
    font-size: clamp(20px, 3.13vw, 24px);
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap,
.owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap {
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 72px;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table,
.owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table {
  width: 100%;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr,
.owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr {
  border-bottom: 1px solid #2c2c2c;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr th,
.owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr th {
  font-size: clamp(16px, 1.42vw, 20px);
  font-weight: 400;
  text-align: left;
  padding: 30px 20px 20px;
  width: 30%;
  min-width: 300px;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr th,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr th {
    padding: 20px 20px 0;
    width: 100%;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td,
.owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td {
  padding: 24px 31px 24px;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td {
    padding: 20px 10px;
    width: 100%;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td input,
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td textarea,
.owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td input,
.owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td textarea {
  width: 100%;
  padding: 15px 25px 16px;
  font-size: clamp(16px, 1.42vw, 20px);
  border: 1px solid #616161;
  border-radius: 10px;
  background-color: #f8f8f8;
  max-width: 824px;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td input,
  .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td textarea,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td input,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td textarea {
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td input,
  .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td textarea,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td input,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td textarea {
    padding: 10px 20px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td input ::-webkit-input-placeholder, .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td textarea ::-webkit-input-placeholder, .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td input ::-webkit-input-placeholder, .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td textarea ::-webkit-input-placeholder {
  color: #aaaaaa;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td input ::-moz-placeholder, .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td textarea ::-moz-placeholder, .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td input ::-moz-placeholder, .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td textarea ::-moz-placeholder {
  color: #aaaaaa;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td input :-ms-input-placeholder, .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td textarea :-ms-input-placeholder, .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td input :-ms-input-placeholder, .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td textarea :-ms-input-placeholder {
  color: #aaaaaa;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td input ::-ms-input-placeholder, .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td textarea ::-ms-input-placeholder, .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td input ::-ms-input-placeholder, .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td textarea ::-ms-input-placeholder {
  color: #aaaaaa;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td input ::placeholder,
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td textarea ::placeholder,
.owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td input ::placeholder,
.owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td textarea ::placeholder {
  color: #aaaaaa;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td textarea,
.owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td textarea {
  max-width: 839px;
  height: 320px;
  min-height: 320px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr td textarea,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr td textarea {
    min-height: 200px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr.required th .required,
.owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr.required th .required {
  color: #fff;
  background-color: #d40004;
  font-size: clamp(16px, 1.42vw, 20px);
  display: inline-block;
  padding: 0px 20px;
  line-height: 1.6;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .form_wrap table tbody tr.required th .required,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .form_wrap table tbody tr.required th .required {
    margin-left: 20px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap,
.owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap {
  text-align: center;
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap {
    margin-bottom: 60px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field,
.owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field {
  display: inline-block;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field label,
.owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field label {
  font-size: clamp(16px, 1.42vw, 20px);
  cursor: pointer;
  padding-left: 55px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field label,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field label {
    padding-left: 44px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field label input[type=checkbox],
.owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-checkbox-field-text::before,
.owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
  background-color: #f3f4f5;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-checkbox-field-text::after,
.owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field-text,
.owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field-text {
  font-size: clamp(16px, 1.42vw, 20px);
  position: relative;
  display: inline-block;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field-text::before,
.owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  left: -55px;
  top: calc(50% + 4px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 1px solid #777;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field-text::before,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field-text::before {
    left: -44px;
    top: 50%;
    width: 28px;
    height: 28px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field-text::after,
.owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field-text::after {
  content: "";
  position: absolute;
  left: -51px;
  top: calc(50% + 4px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../images/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field-text::after,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field-text::after {
    left: -42px;
    top: calc(50% + 2px);
    width: 22px;
    height: 22px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field-text a,
.owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field-text a {
  text-decoration: underline;
  color: inherit;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .agree_wrap .mwform-checkbox-field-text a:hover,
.owabi-site.owabi-owabi_contact #sec_complete .inner .agree_wrap .mwform-checkbox-field-text a:hover {
  opacity: 0.7;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn_flex,
.owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 820px;
}
@media screen and (max-width: 767px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn_flex,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .mw_wp_form_input .contact_form_btn_back,
.owabi-site.owabi-owabi_contact #sec_complete .inner .mw_wp_form_input .contact_form_btn_back {
  display: none !important;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn,
.owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn {
  position: relative;
  width: 400px;
  height: 100px;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn {
    width: 100%;
    max-width: 330px;
    height: 60px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn:hover,
.owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn:hover {
  opacity: 0.7;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn span,
.owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn span {
  display: block;
  width: 100%;
  height: 100%;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn span label,
.owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn span label {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn .contact_form_btn_input,
.owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn .contact_form_btn_input {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  color: #fff;
  background-color: #2c2c2c;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn .contact_form_btn_input,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn .contact_form_btn_input {
    font-size: 15px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn::after,
.owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 24px;
  background-image: url("../images/arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  right: 2.1vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn::after,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn::after {
    width: 8px;
    height: 15px;
    right: 18px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn.contact_form_btn_back::after,
.owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn.contact_form_btn_back::after {
  display: none;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn.contact_form_btn_back::before,
.owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn.contact_form_btn_back::before {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 24px;
  background-image: url("../images/arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: 2.1vw;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .contact_form_btn.contact_form_btn_back::before,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .contact_form_btn.contact_form_btn_back::before {
    width: 8px;
    height: 15px;
    left: 18px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .submit_btn,
.owabi-site.owabi-owabi_contact #sec_complete .inner .submit_btn {
  position: relative;
  width: 400px;
  height: 100px;
  margin: 60px auto 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .submit_btn,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .submit_btn {
    width: 100%;
    max-width: 330px;
    height: 60px;
  }
}
.owabi-site.owabi-owabi_contact #sec_form .inner .submit_btn:hover,
.owabi-site.owabi-owabi_contact #sec_complete .inner .submit_btn:hover {
  opacity: 0.7;
}
.owabi-site.owabi-owabi_contact #sec_form .inner .submit_btn a,
.owabi-site.owabi-owabi_contact #sec_complete .inner .submit_btn a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  color: #fff;
  background-color: #2c2c2c;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .owabi-site.owabi-owabi_contact #sec_form .inner .submit_btn a,
  .owabi-site.owabi-owabi_contact #sec_complete .inner .submit_btn a {
    font-size: 15px;
  }
}
.owabi-site.owabi-owabi_contact .fixed_contact,
.owabi-site.owabi-owabi_contact .fixed_contact_sp {
  display: none !important;
}
/*# sourceMappingURL=owabi.css.map */