@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Forum&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/***
    The new CSS reset - version 1.11.1 (last updated 24.10.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

h2.form_header {
  font-size: clamp(1.5rem, 3vw, 2.5em);
  text-align: center;
}

.form_announce {
  text-align: center;
  margin: 1.5rem 0;
}
.form_announce p {
  margin: 0.5em 0;
}

.form_required {
  color: #f00;
  font-size: 0.65rem;
}

.confirm_label {
  font-weight: bold;
  font-size: 0.85em;
}

.confirm_item {
  background-color: #f3f3f3;
  padding: 0.5em;
}

.message {
  border-radius: 5px;
  padding: 0.8em 1.2em;
  margin: 1rem auto;
  text-align: center;
  max-width: 50em;
}
.message.error {
  background-color: #fee;
  color: #f00;
}

.error-message {
  color: #f00;
  font-size: 0.85rem;
}

select {
  padding: 0.3em 0.6em;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1rem;
}
select:hover, select:focus, select:active {
  background-color: #ffc;
}

input {
  padding: 0.3em 0.6em;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1rem;
  width: 100%;
}
input:hover, input:focus, input:active {
  background-color: #ffc;
}

textarea {
  padding: 0.3em 0.6em;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1rem;
  min-height: 16em;
  width: 100%;
}
textarea:hover, textarea:focus, textarea:active {
  background-color: #ffc;
}

.form_btn_box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.btn_form_submit {
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease 0s;
  bottom: 0;
  bottom: 0;
  padding: 1.2em 2.8em;
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
  border-color: rgb(50, 50, 50);
  background-color: rgb(166, 177, 142);
}
.btn_form_submit.small_text {
  font-size: 90%;
}
.btn_form_submit.rounded {
  border-radius: 3rem;
}
.btn_form_submit:hover {
  border-color: rgb(50, 50, 50);
  background-color: rgb(105, 124, 106);
}

.btn_form_back {
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease 0s;
  bottom: 0;
  margin: 0 1em;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  cursor: pointer;
  background: #eee;
  color: #666;
  border-radius: 3px;
  font-size: 1.2rem;
  border: none;
  padding: 0.8em 1.8em;
  line-height: 1;
}
.btn_form_back.small_text {
  font-size: 90%;
}
.btn_form_back.rounded {
  border-radius: 3rem;
}
.btn_form_back:hover {
  background: #aaa;
  color: #fff;
}

input[type=submit] {
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease 0s;
  bottom: 0;
  bottom: 0;
  padding: 1.2em 0.8em;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  border-color: rgb(50, 50, 50);
  background-color: rgb(166, 177, 142);
}
input[type=submit].small_text {
  font-size: 90%;
}
input[type=submit].rounded {
  border-radius: 3rem;
}
input[type=submit]:hover {
  border-color: rgb(50, 50, 50);
  background-color: rgb(105, 124, 106);
}

.btn_001 {
  line-height: 1;
  position: relative;
  display: inline-block;
  background-color: #fff;
  padding: 0.5em 1.2em;
  border: 1px solid #000;
}
.btn_001::after {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 100%;
  height: 100%;
  background-color: #cbdaad;
}
.btn_type2 {
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease 0s;
  bottom: 0;
  padding: 5em 2em;
  color: #fff;
  border-color: rgb(50, 50, 50);
  background-color: rgb(166, 177, 142);
}
.btn_type2.small_text {
  font-size: 90%;
}
.btn_type2.rounded {
  border-radius: 3rem;
}
.btn_type2:hover {
  border-color: rgb(50, 50, 50);
  background-color: rgb(105, 124, 106);
}

.btn_type3 {
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease 0s;
  bottom: 0;
  border: 2px solid rgb(50, 50, 50);
  padding: 0.8em 2.5em;
  background-color: none;
  color: rgb(50, 50, 50);
}
.btn_type3.small_text {
  font-size: 90%;
}
.btn_type3.rounded {
  border-radius: 3rem;
}
.btn_type3:hover {
  border-color: rgb(50, 50, 50);
  color: #fff;
  background-color: rgb(50, 50, 50);
}

.btn_type4 {
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease 0s;
  bottom: 0;
  bottom: 0;
  padding: 1em 4.5em;
  color: #fff;
  border-color: rgb(50, 50, 50);
  background-color: rgb(166, 177, 142);
}
.btn_type4.small_text {
  font-size: 90%;
}
.btn_type4.rounded {
  border-radius: 3rem;
}
.btn_type4:hover {
  border-color: rgb(50, 50, 50);
  background-color: rgb(105, 124, 106);
}

.btn_type5 {
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease 0s;
  bottom: 0;
  border: 2px solid rgb(50, 50, 50);
  padding: 0.8em 2.5em;
  color: rgb(50, 50, 50);
  background-color: #fff;
}
.btn_type5.small_text {
  font-size: 90%;
}
.btn_type5.rounded {
  border-radius: 3rem;
}
.btn_type5:hover {
  border-color: rgb(50, 50, 50);
  color: #fff;
  background-color: rgb(50, 50, 50);
}

.btn_header_contact {
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease 0s;
  bottom: 0;
  bottom: 0;
  padding: 1.2em 0.8em;
  text-align: center;
  font-size: 0.85rem;
  color: #fff;
  border-color: rgb(50, 50, 50);
  background-color: rgb(166, 177, 142);
}
.btn_header_contact.small_text {
  font-size: 90%;
}
.btn_header_contact.rounded {
  border-radius: 3rem;
}
.btn_header_contact:hover {
  border-color: rgb(50, 50, 50);
  background-color: rgb(105, 124, 106);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
}

.align-center {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 100%;
  text-align: left;
  margin-left: auto !important;
  margin-right: auto !important;
}

.align-right {
  margin-left: auto;
  margin-right: 0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.align-left {
  margin-left: 0;
  margin-right: auto;
  display: block;
}

html * {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

body {
  background-color: #fff;
  scroll-behavior: smooth;
  color: #333;
}

#header {
  position: fixed;
  background-color: #fff;
  z-index: 161;
  top: 0;
  left: 0;
  width: 100%;
}
#header.sticky {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3333333333);
}

#header_spacer {
  height: 80px;
}

#header_logo {
  position: relative;
  z-index: 1104;
  transition: all 0.3s;
  font-size: clamp(0.8rem, 0.127rem + 2.17vw, 1.75rem);
  text-align: center;
}

#header.sticky #header_logo {
  font-size: clamp(0.8rem, 0.127rem + 1.17vw, 1.15rem);
  text-align: center;
}

.logo_with_trademark_wrapper {
  display: inline-flex;
  align-items: center;
}

.company_logo_trademark img {
  fill: #000;
  max-width: 4em;
  height: 4em;
}

.company_logo_type {
  width: -moz-fit-content;
  width: fit-content;
}
.company_logo_type .logotype_str {
  font-size: 1em;
  width: 18em;
}
.company_logo_type .logotype_en {
  font-size: 100%;
  font-family: "Roboto", "Yu Mincho";
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-align: center;
}
.company_logo_type .logotype_ja {
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 0.3em;
  text-align: center;
  font-size: 61%;
}

.home_section {
  position: relative;
  min-height: 100vh;
}

.home_section_content {
  position: relative;
  width: 100%;
  padding: 5rem 0rem;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
}

span.now_prepare {
  display: inline-block;
  line-height: 1;
  background: #fff;
  color: #999;
  padding: 0.2em 0.8em;
  font-size: 1rem;
  text-shadow: none;
}

h3.home_service_title {
  font-size: clamp(1.8rem, 1.8vw, 2rem);
  text-shadow: 1px 1px 6px rgba(102, 102, 102, 0.6);
  color: #fff;
  text-align: center;
}

ruby rt {
  font-size: 66%;
}

.sub_text {
  font-size: 80%;
}

a.btn {
  display: inline-block;
  padding: 0.5em 1.2em;
  line-height: 1;
  background-color: #59702C;
  border-radius: 3px;
  color: #fff;
}
a.btn:hover {
  color: #59702C;
  background-color: #cbdaad;
}

#home_catchcopy {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.6rem, 3.8vw, 2.8rem);
}

h2.home_concept {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 3.8vw, 1.8rem);
}

.dash_line {
  vertical-align: middle;
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  height: 1px;
  background-color: #000;
  width: 5rem;
}
.dash_line.white {
  background-color: #fff;
}

section#section_home_concept p {
  line-height: 2;
}

h2.homeHeader {
  font-family: "Forum", serif;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
}
h2.homeHeader.white {
  color: #fff;
}

.section_home_contept_trademark {
  width: 25vw;
  max-width: 16rem;
  position: absolute;
  display: inline-block;
  padding-top: 3rem;
  right: 5%;
  bottom: 0%;
}

.home_service_panel {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.home_service_panel p {
  line-height: 2.2;
}

#section_home_services {
  background-image: linear-gradient(225deg, #68986f 0%, rgba(166, 177, 142, 0.54) 64.834541187%);
}

.home_service_text {
  margin: 1.5rem auto;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(102, 102, 102, 0.6);
  width: -moz-fit-content;
  width: fit-content;
}

#btn_nav {
  padding: 6px 6px;
  display: grid;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
  line-height: 1;
}
#btn_nav #btn_nav_open,
#btn_nav #btn_nav_close {
  color: #444;
  font-size: 1.65rem;
  grid-area: 1/1;
  transition: all 0.3s ease-in-out;
}
#btn_nav.open #btn_nav_open {
  opacity: 0;
}
#btn_nav.open #btn_nav_close {
  opacity: 1;
}
#btn_nav.close #btn_nav_open {
  opacity: 1;
}
#btn_nav.close #btn_nav_close {
  opacity: 0;
}

#sp_menu_button {
  position: relative;
  z-index: 1101;
}

#sp_menu_panel {
  z-index: 1100;
  padding: 120px 10% 0;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: 0.6s all;
  background-color: #ddd;
}
#sp_menu_panel.show {
  transform: translateX(0);
}

#nav_content ul {
  margin-left: 1.5rem;
}
#nav_content ul li {
  padding: 1rem 0 1rem 0.5rem;
  border-bottom: 1px dotted #fff;
}
#nav_content ul li a {
  display: block;
}

img {
  max-width: 100%;
}

h2.contentHeader {
  margin: 2em 0 1.5em;
  padding: 0.5em 0 0.2;
  text-align: center;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
}
h2.contentHeader.left {
  -moz-text-align-last: left;
       text-align-last: left;
  background-position: bottom left;
}
h2.contentHeader.right {
  -moz-text-align-last: right;
       text-align-last: right;
  background-position: bottom right;
}

#home_message {
  line-height: 2.2;
  letter-spacing: -0.05em;
  font-size: clamp(0.8rem, 0.167rem + 2.67vw, 1.1rem);
  text-shadow: 1px 1px 0 #fff;
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 576px) {
  #home_message {
    letter-spacing: 0.05em;
  }
}
#home_signature {
  margin: 2rem 0;
  display: flex;
  justify-content: end;
  align-items: center;
}
#home_signature .job_title {
  font-size: 0.8rem;
  margin-right: 2em;
}
#home_signature img#signature {
  max-width: 220px;
}

#home_member_box {
  position: relative;
}
#home_member_box #home_member::after {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: -30px;
  left: -5%;
  width: 60%;
  height: 100%;
  background-color: #cbdaad;
}
#home_member_box img#home_str_tsugiki_member {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 50%;
}

.works_panel {
  padding: 1rem 0.5rem;
  max-height: 400px;
}

.works_image img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-height: 300px;
}

.works_subject {
  text-align: right;
}

.works_client_name {
  text-align: right;
}

#btn_to_instagram {
  cursor: pointer;
  position: fixed;
  bottom: 12%;
  right: 0;
  display: block;
  background: #cbdaad;
  width: 40px;
  padding: 22px 2px 18px;
  height: 160px;
  border-radius: 20px 0 0 0;
  box-shadow: 0 0 2px #fff;
  z-index: 160;
}
#btn_to_instagram img {
  display: block;
  margin: 0 auto;
}

#btn_to_top {
  z-index: 160;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  padding: 0.2em 0.8em;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  color: #59702C;
  font-weight: bold;
  transition: 0.2s;
  transform: translateY(200px);
}
#btn_to_top.show {
  transform: none;
}

section#section_services {
  padding: 3rem 0;
}

.service_panel {
  width: 100%;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.service_panel img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transition: all 0.2s;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: brightness(0.6);
}
.service_panel:hover img {
  filter: brightness(0.3);
  transform: translateX(-50%) translateY(-50%) scale(1.13);
}
.service_panel .service_panel_text {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
}
.service_panel .service_panel_now_construction {
  background-color: rgba(255, 255, 255, 0.8666666667);
  position: absolute;
  right: 1%;
  width: 8em;
  text-align: center;
  line-height: 1;
  padding: 0.5em 1.8em;
  bottom: 2%;
}

#home_section_information {
  padding: 4rem 0;
}
#home_section_information .information_inner {
  display: grid;
  grid-template-columns: 1fr;
  place-content: center;
  background: url("../img/home/home_bg_info.jpg") no-repeat;
  background-size: cover;
  min-height: 50vh;
}
#home_section_information .information_inner h2 {
  margin-bottom: 3rem;
  text-align: center;
  font-size: clamp(1.8rem, 3.8vw, 1.8rem);
}
#home_section_information .information_inner h2 span {
  font-size: 77%;
  display: block;
}
#home_section_information .information_inner .information_panel a {
  display: block;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 1.5rem 1.5rem;
}
#home_section_information .information_inner .information_panel a:hover {
  background-color: rgb(255, 255, 255);
}
#home_section_information .information_inner .information_panel .title {
  font-size: 1rem;
  margin: 0.4em 0 0.4em;
}
#home_section_information .information_inner .information_panel .date {
  font-size: 85%;
}

#about_wrapper {
  position: relative;
  overflow: hidden;
}
#about_wrapper #section_about_bg_dynamic {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 180%;
}
#about_wrapper #section_about_bg_dynamic img {
  width: 100%;
}

#section_information .information-title {
  font-weight: bold;
}

ul.information_list li {
  padding: 0.5em 0.2em;
  border-bottom: 2px dotted #999;
}

section.section_member {
  margin: 6.5rem 0;
}

.staff_name_box {
  margin: 1rem 0 2rem;
}
.staff_name_box.align_left {
  text-align: left;
}
.staff_name_box.align_right {
  text-align: right;
}

img.staff_img {
  display: block;
  border-radius: 50%;
}

div.job_subject {
  font-size: 0.8rem;
  letter-spacing: -0.05em;
}
@media (min-width: 576px) {
  div.job_subject {
    font-size: 1.2rem;
  }
}

div.staff_name {
  margin: 0.2rem 0 1.4rem;
  font-size: 1.3rem;
  letter-spacing: -0.05em;
}
@media (min-width: 576px) {
  div.staff_name {
    font-size: 2.2rem;
  }
}

div.staff_name_furigana {
  margin: 0.2rem 0 1.4rem;
  text-align: right;
  font-size: 0.8rem;
}
@media (min-width: 576px) {
  div.staff_name_furigana {
    font-size: 1.6rem;
  }
}

.staff_message {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
  margin: 2em auto;
}
@media (min-width: 576px) {
  .staff_message {
    margin-top: 1em;
    font-size: 1rem;
    line-height: 2.1;
    letter-spacing: 0.05em;
  }
}

.float_photo_box {
  position: relative;
  padding: 15px 7px;
}
.float_photo_box img {
  display: block;
  transform: scaleX(99%) scaleY(99%);
  transform-origin: 0 0;
  position: relative;
  z-index: 150;
}
@media (min-width: 576px) {
  .float_photo_box img {
    transform: scaleX(92%) scaleY(92%);
  }
}
.float_photo_box div {
  transform: scaleX(75%) scaleY(75%);
  transform-origin: right bottom;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #cbdaad;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.float_photo_box_right {
  position: relative;
  padding: 15px 7px;
}
.float_photo_box_right img {
  display: block;
  transform: scaleX(92%) scaleY(92%);
  transform-origin: right top;
  position: relative;
  z-index: 150;
}
.float_photo_box_right div {
  transform: scaleX(75%) scaleY(75%);
  transform-origin: left bottom;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #cbdaad;
  width: 100%;
  height: 100%;
  z-index: 100;
}

section.information {
  background-color: #e6ecef;
  padding-top: 5rem;
  padding-bottom: 1rem;
}
section.information .information_inner {
  padding: 6rem 1rem;
  background-color: #fff;
}

.information_title {
  text-align: center;
  font-size: 1.65rem;
  font-weight: bold;
}

.information_body {
  border-radius: 1em;
  min-height: 14rem;
  margin: 3rem 0 3rem;
  padding: 3rem 0.5rem;
  line-height: 1.8;
}

.information_meta {
  text-align: right;
  margin-right: 3rem;
}

footer {
  padding: 8rem 0 3rem;
  margin-top: 8rem;
  background-color: #a6b18e;
}
footer nav#footer_nav {
  margin: 4rem 0;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  border-top: 1px solid #fff;
}
footer nav#footer_nav ul {
  margin: 1.2rem 0 5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer nav#footer_nav ul li {
  font-size: 0.85rem;
  line-height: 1;
  padding: 0.2rem 1em;
  margin: 1rem 0.5rem;
}
footer nav#footer_nav ul a {
  padding: 0.2rem 0.2rem;
}

#footer_company_logo {
  font-size: clamp(1.4rem, 0.127rem + 2.17vw, 1.8rem);
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}

#footer_copy {
  font-size: 0.6rem;
  text-align: right;
  line-height: 1;
  margin: 0.3em 0;
  color: #fff;
}

.text-center {
  text-align: center;
}

.gmap_wrapper {
  text-align: center;
}
.gmap_wrapper iframe {
  width: 95%;
  height: 50vh;
  max-height: 500px;
  min-height: 300px;
}

.contactFormFrame .formWrap {
  margin: 1.5rem 0 0.5rem;
}
.contactFormFrame .formWrap span.formTitle {
  display: inline-block;
  vertical-align: middle;
  margin: 0.2em 0 0.2em;
}
.contactFormFrame .formWrap span.formTitle.required::after {
  line-height: 1;
  vertical-align: middle;
  margin: 0 0.5em;
  content: "*必須";
  padding: 0.2em 0.5em;
  font-size: 0.85em;
  color: #f00;
  border-radius: 3px;
}
.contactFormFrame .formWrap .formNotes {
  display: block;
  font-size: 0.8em;
  color: #999;
}
.contactFormFrame .formWrap input {
  border-radius: 4px;
  border: 1px solid #888;
  padding: 0.3em 0.2em;
  width: 100%;
}
.contactFormFrame .formWrap textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #888;
  padding: 0.3em 0.2em;
}
.contactFormFrame .formSubmit {
  margin: 3em 0 5em;
  text-align: center;
}
.contactFormFrame .formSubmit .submit_wrapper {
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  position: relative;
  display: inline-block;
  background-color: #fff;
  padding: 0.5em 1.2em;
  border: 1px solid #000;
}
.contactFormFrame .formSubmit .submit_wrapper::after {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 100%;
  height: 100%;
  background-color: #cbdaad;
}

table.table_about {
  border-collapse: collapse;
  max-width: 50em;
  width: 98%;
  margin: 2em auto;
}
table.table_about th {
  font-size: 0.8rem;
  padding: 1em 0.5em;
  max-width: 30%;
  width: 9em;
  text-align: center;
  background-color: #cbdaad;
  color: #333;
  border: 1px solid #fff;
}
table.table_about td {
  padding: 1em 0.5em;
  border: 1px solid #fff;
  background-color: #f8faf3;
}

#hero_text_sns {
  background-color: #5692b4;
  padding: 4rem 0;
  color: #fff;
  text-align: center;
}
#hero_text_sns div.hero_subtext {
  font-size: clamp(1.2rem, 3.5vw, 1.9rem);
  line-height: 1.3;
}
#hero_text_sns h3.hero_text {
  font-size: 4rem;
  font-size: clamp(1.9rem, 4.5vw, 4.1rem);
}
#hero_text_sns .content_detail {
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto;
}

#mv_sns {
  position: relative;
}
#mv_sns #mv_sns_image {
  line-height: 1;
}
#mv_sns #sns_mv_text_01 {
  position: absolute;
  top: 15%;
  left: 5%;
}
@media (min-width: 576px) {
  #mv_sns #sns_mv_text_01 {
    top: 30%;
    left: 5%;
  }
}
#mv_sns #sns_mv_text_01 > div {
  margin: 0.8rem 0;
  padding: 0.2rem 1.2rem;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.085em;
  line-height: 1;
  background: #5592b4;
  color: #fff;
  font-size: clamp(1.2rem, 3vw, 2.5rem);
}
@media (min-width: 576px) {
  #mv_sns #sns_mv_text_01 > div {
    margin: 0.8rem 0;
    padding: 0.4rem 1.8rem;
  }
}
#mv_sns #sns_mv_text_02 {
  bottom: 10%;
  right: 3%;
  letter-spacing: -0.05em;
  position: absolute;
}
@media (min-width: 576px) {
  #mv_sns #sns_mv_text_02 {
    bottom: 20%;
    right: 2%;
    letter-spacing: 0;
  }
}
#mv_sns #sns_mv_text_02 > div {
  font-size: clamp(0.8rem, 2vw, 1.8rem);
  color: #000;
  text-shadow: 1px 1px 1px #fff, -1px 1px 1px #fff, 1px -1px 1px #fff, -1px -1px 1px #fff;
}

section#section_for_recruiter {
  padding: 3rem 0;
  background-color: #f1eddf;
  text-align: center;
}
section#section_for_recruiter h3 {
  margin: 2rem 0;
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
}

section.section_to_contact {
  padding: 8rem 0 4rem;
  background-color: #fff;
  position: relative;
}
section.section_to_contact h3 {
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  margin: 2rem 0;
}
section.section_to_contact p {
  line-height: 2;
}

.section_to_contact_trademark {
  width: 25vw;
  max-width: 16rem;
  position: absolute;
  display: inline-block;
  padding-top: 3rem;
  right: 5%;
  bottom: -5%;
}

section.page_info {
  padding: 3rem 0;
  text-align: center;
}

section#sns_feature {
  padding: 2rem 0;
  background-color: #d0dee0;
}
section#sns_feature h3.our_feature {
  font-size: 3rem;
}
section#sns_feature .panel_our_feature {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 32em;
  margin: 2rem 0;
}
@media (min-width: 576px) {
  section#sns_feature .panel_our_feature {
    margin: 1rem 0;
  }
}
section#sns_feature .panel_our_feature.left {
  margin-right: auto;
  margin-left: 1%;
}
section#sns_feature .panel_our_feature.right {
  margin-right: 1%;
  margin-left: auto;
}
section#sns_feature .panel_our_feature.center {
  margin-right: auto;
  margin-left: auto;
}
section#sns_feature .panel_our_feature .feature_num {
  color: #777;
  font-size: 3rem;
  line-height: 1;
}
@media (min-width: 576px) {
  section#sns_feature .panel_our_feature .feature_num {
    font-size: 5rem;
  }
}
section#sns_feature .panel_our_feature h4.feature_subject {
  font-size: 1.5rem;
  line-height: 1;
  margin: 0.5em 0;
  margin-left: 2rem;
}
@media (min-width: 576px) {
  section#sns_feature .panel_our_feature h4.feature_subject {
    font-size: 2rem;
    margin: 0.5em 0;
  }
}
section#sns_feature .panel_our_feature .feature_desc {
  margin-left: 2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

#mv_social_recruiting_1 {
  height: 100%;
}
#mv_social_recruiting_1 #mv_str_box {
  padding: 2rem 0;
}
#mv_social_recruiting_1 #mv_str_01 {
  margin: 0.2rem auto 0.2rem 20%;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.2rem, 5vw, 3.5rem);
  background: #dbdbdb;
}
#mv_social_recruiting_1 #mv_str_02 {
  margin: 0.2rem 20% 0.2rem auto;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.2rem, 5vw, 3.5rem);
  background: #dbdbdb;
}
#mv_social_recruiting_1 #mv_str_03 {
  text-align: center;
  margin-top: 2rem;
  font-size: clamp(1.2rem, 3vw, 2.5rem);
}
#mv_social_recruiting_1 #mv_str_04 {
  text-align: center;
  margin-top: 0.2rem;
  font-size: clamp(1.2rem, 3vw, 2.5rem);
}

#mv_social_recruiting_2 {
  position: relative;
}
#mv_social_recruiting_2 #mv_social_recruiting_text {
  position: absolute;
  top: 5%;
  right: 5%;
  writing-mode: vertical-rl;
}
@media (min-width: 576px) {
  #mv_social_recruiting_2 #mv_social_recruiting_text {
    top: 10%;
    right: 10%;
  }
}
#mv_social_recruiting_2 #mv_social_recruiting_text div {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  padding: 1rem 0.5rem;
  margin: 0 0.5rem;
  background-color: rgba(255, 255, 255, 0.8666666667);
  color: #333;
  font-size: clamp(1rem, 3.5vw, 2.5rem);
}

.recruit_trouble {
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto;
  position: relative;
  display: block;
  font-size: clamp(1.2rem, 3vw, 5rem);
  font-weight: bold;
}
.recruit_trouble::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #f3f3f3;
  transform: scale(0.8, 0.8);
  transform-origin: left;
}

.recruit_trouble_reason {
  text-align: center;
  margin: 3rem 0;
  font-size: clamp(1.1rem, 2.2vw, 3rem);
}

.social_recruiting_detail {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.social_recruiting_detail li {
  margin: 0.5em 0;
  font-size: clamp(0.85rem, 3vw, 1.2rem);
}

section#section_recruit_story {
  padding: 2rem 0;
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 2.5rem);
}
section#section_recruit_story .parcentage {
  line-height: 1;
  text-align: center;
  font-size: clamp(2rem, 22vw, 15rem);
}
section#section_recruit_story .parcentage .unit_parcent {
  font-size: clamp(1rem, 10vw, 7rem);
}

h3.hotfashion {
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto;
  position: relative;
  display: block;
  font-size: clamp(1.2rem, 3vw, 5rem);
  font-weight: bold;
}
h3.hotfashion::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #f3f3f3;
  transform: scale(0.8, 0.8);
  transform-origin: left;
}

.bg_black {
  display: inline-block;
  background-color: #333;
  margin: 0 0.1em;
  padding: 0.1em 0.2em;
  line-height: 1;
  color: #fff;
}

.gray_highlight {
  line-height: 1;
  display: inline-block;
  padding: 0.3em 0.2em;
  background-color: #eee;
  margin-left: 0.1em;
  margin-right: 0.1em;
}

.sns_brand_highlight {
  line-height: 1;
  display: inline-block;
  padding: 0.3em 0.2em;
  background-color: #eee;
  margin-left: 0.1em;
  margin-right: 0.1em;
}

.lbl_contact_header {
  line-height: 1;
  font-size: 0.8em;
  vertical-align: middle;
  display: inline-block;
  border: 1px solid #999;
  background-color: #fff;
  border-radius: 2px;
  padding: 0.2em 0.5em;
}

.brand_icon {
  line-height: 1;
  padding: 14.5px;
  vertical-align: middle;
}

.leading {
  margin: 1rem 0 2rem;
  line-height: 2.3;
  text-align: center;
  font-size: clamp(1.1rem, 1.9vw, 2rem);
}

.contact_list li {
  vertical-align: middle;
}

img.img_center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}/*# sourceMappingURL=style.css.map */