@charset "UTF-8";
:root {
  --color-white: #FFF;
  --color-black: #000;
  --color-gray: #555;
  --color-lightGray-bg: #F4F4F4;
  --color-lightGray-frame: #CCC;
  --color-lightGray-note: #777;
  --color-main: #EE6644;
}

/* 初期化-------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  font-family: "Meiryo UI", sans-serif;
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
}

body, form, fildset, h1, h2, h3, h4, h5, h6, p, pre, blockquote, ul, ol, dl, dd, a {
  text-decoration: none;
}

ul {
  list-style-type: none;
  margin: 0;
}

img {
  display: block;
  border-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

object {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  width: 100%;
  height: 100%;
  background-color: var(--color-main);
  font-size: 16px;
  color: var(--color-main);
  min-height: 45rem;
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  html {
    min-height: auto;
  }
}
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  -webkit-tap-highlight-color: transparent;
}

.scrollbar {
  padding-right: 0.75rem;
  overflow-y: scroll;
}

.scrollbar::-webkit-scrollbar {
  width: 1rem;
  background: transparent;
}

.scrollbar::-webkit-scrollbar-thumb {
  width: 1rem;
  border: 0.25rem solid #fff;
  border-radius: 0.5rem;
  background-color: #bbb;
  cursor: pointer;
}

/* common-------------------------------------------------------------- */
#contentsCover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main);
  z-index: 100;
}

#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
#wrapper.en .jpOnly {
  display: none;
}

#display img {
  /*	background-color: rgba( 255, 0, 255, 0.25 );*/
}

ul {
  display: inline-block;
  font-size: 0;
}

ul li {
  display: inline-block;
}

#controller li span {
  display: inline-block;
}

#display li span {
  display: inline-block;
  font-size: 24px;
  /*	margin: 0 16px;*/
}

.cursol {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  z-index: 0;
}

h1 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}
h1 span {
  font-size: 1.5rem;
  line-height: 2rem;
}

@media screen and (max-width: 640px) {
  h1 span {
    display: block;
  }
}
h2 {
  font-size: 1.25rem;
  line-height: 1rem;
  margin-bottom: 2rem;
  transition: all 250ms 0s ease;
}

p {
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 2rem;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
a:hover {
  text-decoration: underline;
}

.arrow {
  display: inline-block;
  width: 1.75rem;
  height: 2rem;
  background-image: url(../img/img_arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.copy {
  font-size: 0.875rem;
  color: var(--color-white);
}

.policy {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--color-white);
  line-height: 1rem;
}
.policy::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  margin-left: 0.5rem;
  background-image: url(../img/img_link_w.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

form dl {
  margin-bottom: 3rem;
}
form dl dt {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1rem;
}
form dl dd input {
  width: 40rem;
  padding: 0.25rem;
  font-size: 1rem;
  line-height: 1rem;
  border: 0.125rem solid var(--color-lightGray-frame);
  border-radius: 0.25rem;
}
form dl dd input::-moz-placeholder {
  font-size: 1rem;
  color: var(--color-lightGray-frame);
}
form dl dd input::placeholder {
  font-size: 1rem;
  color: var(--color-lightGray-frame);
}
form dl dd input:focus {
  outline: 0rem solid var(--color-main);
  border: 0.125rem solid var(--color-main);
}
form dl dd textarea {
  width: 40rem;
  max-height: 10.5rem;
  resize: none;
  padding: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  border: 0.125rem solid var(--color-lightGray-frame);
  border-radius: 0.25rem;
}
form dl dd textarea::-moz-placeholder {
  font-size: 1rem;
  color: var(--color-lightGray-frame);
}
form dl dd textarea::placeholder {
  font-size: 1rem;
  color: var(--color-lightGray-frame);
}
form dl dd textarea:focus {
  outline: 0rem solid var(--color-main);
  border: 0.125rem solid var(--color-main);
}
form dl dd ul li {
  padding-right: 2rem;
}
form dl dd ul li:last-child {
  padding-right: 0;
}
form dl dd ul li label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1rem;
  color: var(--color-black);
  cursor: pointer;
}
form dl dd ul li label input {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0;
  margin-right: 0.5rem;
  background-color: var(--color-lightGray-frame);
  border-radius: 50%;
  background-image: url(../img/img_check.svg);
  background-size: 0rem;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 125ms 0s ease;
  cursor: pointer;
}
form dl dd ul li label input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}
form dl dd ul li label input:checked {
  background-color: var(--color-main);
  background-size: 1rem;
}
form dl dd ul li label span {
  margin-top: 0;
}
form dl dd span {
  display: block;
  font-size: 1rem;
  margin-top: 1rem;
}
form .note {
  display: inline-block;
  position: relative;
  margin-top: 0.375rem;
  margin-bottom: 0;
  padding-left: 1rem;
  font-size: 0.875rem;
  color: var(--color-lightGray-note);
  line-height: 1.25;
}
form .note::before {
  content: "※";
  position: absolute;
  left: 0;
}
form .note .link {
  font-size: 0.875rem;
  text-decoration: underline;
  vertical-align: baseline;
  cursor: pointer;
}
form .send {
  display: block;
}
form .send.active {
  pointer-events: auto;
}
form .send input[type=button]#form_submit_button,
form .send .checkButton,
form .send .cancelButton {
  width: 12.5rem;
  height: 3.5rem;
  font-size: 1.25rem;
  color: var(--color-white);
  background-color: var(--color-main);
  border: none;
  border-radius: 1.75rem;
  cursor: pointer;
  pointer-events: auto;
}
form .send .cancelButton {
  color: var(--color-main);
  background-color: transparent;
}
form .send .sendButton {
  padding-left: 8%;
  text-align: left;
  background-image: var(--img-send);
  background-repeat: no-repeat;
  background-size: 1.5rem;
  background-position: center right 33.3%;
}
form .send input[type=button][disabled]#form_submit_button,
form .send .checkButton[disabled] {
  cursor: default;
  pointer-events: none;
  opacity: 0.25;
}

@media screen and (max-width: 640px) {
  form dl {
    margin-bottom: 2rem;
  }
}
/* contents------------------------------------------------------------- */
.header img {
  width: 100%;
}

.menu .menuOpenButton {
  display: block;
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: var(--img-logo);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  cursor: pointer;
  transition: all 1000ms 0s ease;
}
.menu .menuOpenButton.text {
  font-size: 0;
}
.menu .menuOpenButton::before {
  content: none !important;
}
.menu .btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--color-main);
  z-index: 1;
}
.menu .btn span {
  font-size: 1rem;
  line-height: 1rem;
  opacity: 0.5;
}
.menu .btn span:nth-child(2) {
  opacity: 1;
}
.menu .btn span.text {
  cursor: pointer;
}
.menu .btn span.select {
  opacity: 1;
}
.menu .onepage-pagination {
  display: flex;
  gap: 2rem;
  align-items: center;
  position: absolute;
  top: 2.25rem;
  left: 5.5rem;
  width: calc(100% - 4rem);
  z-index: 1;
}
.menu .onepage-pagination.sp li a {
  transition: none;
}
.menu .onepage-pagination li:first-child {
  display: none;
}
.menu .onepage-pagination li a {
  transition: all 750ms 0s ease;
}
.menu .onepage-pagination li .text {
  position: relative;
  width: auto;
  height: auto;
  padding: 0 0 0.25rem 0;
  font-size: 1rem;
  line-height: 1rem;
  color: var(--color-main);
}
.menu .onepage-pagination li .text::before {
  content: none;
}
.menu .onepage-pagination li .text.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  border: none;
  margin-top: 0;
  left: 0;
  background-color: var(--color-main);
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 500ms;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.menu .onepage-pagination li .text:hover {
  text-decoration: none;
}
.menu.top .btn {
  color: var(--color-white);
}
.menu.top .onepage-pagination li a {
  color: var(--color-white);
}
.menu.top .onepage-pagination li a::before {
  content: none;
}
.menu.top .onepage-pagination li a.active::before {
  background-color: var(--color-white);
}
.menu.top .onepage-pagination li .btn {
  color: var(--color-white);
}

@media screen and (max-width: 640px) {
  .menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu .btn {
    display: none;
  }
  .menu .cancelButton {
    display: none;
  }
  .menu .copy {
    display: none;
  }
  .menu .menuOpenButton {
    top: 1rem;
    left: 1rem;
  }
  .menu section {
    height: 100vh;
  }
  .menu .onepage-pagination {
    position: absolute;
    top: 1.25rem;
    right: auto;
    left: 3rem;
    display: flex;
    gap: 0;
  }
  .menu .onepage-pagination.top li a {
    color: var(--color-white);
  }
  .menu .onepage-pagination.top li a::before {
    content: none;
  }
  .menu .onepage-pagination.top li a.active::before {
    background-color: var(--color-white);
  }
  .menu .onepage-pagination.top li .btn {
    color: var(--color-white);
  }
  .menu .onepage-pagination li:first-child {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
  }
  .menu .onepage-pagination li:first-child .text {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-size: contain;
  }
  .menu .onepage-pagination li .text {
    display: none;
  }
  .menu .onepage-pagination li .text.active {
    display: block;
  }
  .menu .onepage-pagination li .text.active::before {
    content: none;
  }
  .menu.spMenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .menu.spMenu .menuOpenButton {
    display: none;
  }
  .menu.spMenu .onepage-pagination {
    gap: 3rem;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    flex-flow: column;
    background-color: rgb(48, 20, 14);
  }
  .menu.spMenu .onepage-pagination li {
    display: block;
  }
  .menu.spMenu .onepage-pagination li:first-child {
    width: auto;
    margin-top: -1.5rem;
    margin-right: 0;
  }
  .menu.spMenu .onepage-pagination li:first-child a {
    width: auto;
    background-image: none;
  }
  .menu.spMenu .onepage-pagination li a {
    display: block;
    font-size: 1.5rem !important;
    color: var(--color-main) !important;
  }
  .menu.spMenu .onepage-pagination li a:hover {
    color: #f0f;
  }
  .menu.spMenu .btn {
    display: block;
    top: 1.625rem;
    right: 1.25rem;
  }
  .menu.spMenu .btn span {
    display: inline-block;
    font-size: 1.25rem !important;
    color: var(--color-main) !important;
  }
  .menu.spMenu .btn span:nth-child(2) {
    padding: 0 0.25rem;
  }
  .menu.spMenu .btn span:hover {
    color: #f0f;
  }
  .menu.spMenu .closeButton {
    display: block;
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    width: 1.875rem;
    height: 1.875rem;
    background-image: var(--img-close);
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: auto;
    z-index: 1;
    cursor: pointer;
  }
  .menu.spMenu .copy {
    display: block;
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    margin-bottom: 0;
    color: var(--color-main);
    font-size: 0.875rem;
    z-index: 1;
  }
}
.main {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.main section {
  display: flex;
  justify-content: right;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--color-lightGray-bg);
}
.main section:nth-child(2n) {
  background-color: var(--color-white);
}
.main section.top, .main section.footer {
  background-color: var(--color-main);
}
.main section .downArrow,
.main section .downArrowF {
  display: none;
  position: absolute;
  bottom: 1rem;
  width: 2rem;
  height: 2rem;
  background-image: var(--img-downArrow);
  background-repeat: no-repeat;
  background-size: 1.5rem;
  background-position: center;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .main section .downArrow,
  .main section .downArrowF {
    display: block;
  }
}
.main section .contents {
  padding: 0 6rem;
}
@media screen and (max-width: 1366px) {
  .main section .contents {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 640px) {
  .main section .contents {
    padding: 0 1.75rem;
  }
}
.main section.top {
  justify-content: center;
}
.main section.top .contents {
  width: calc(100% - 3rem);
  max-width: 60rem;
}
.main section.top .contents .logoImg {
  width: 100%;
}
.main section.top .contents .logoImg span {
  display: inline-block;
  height: 6.5rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.main section.top .contents .logoImg span.logo1 {
  width: 31.6%;
  background-image: url(../img/img_logo1.svg);
}
.main section.top .contents .logoImg span.logo2 {
  width: 36.6%;
  background-image: url(../img/img_logo2.svg);
}
.main section.top .contents .logoImg span.logo3 {
  width: 31.6%;
  background-image: url(../img/img_logo3.svg);
}
.main section.concept .contents {
  max-width: 40rem;
}
.main section.concept .contents > p {
  margin-bottom: 3rem;
}
.main section.concept .contents .diagram {
  width: auto;
  max-width: 30rem;
  height: 8.5rem;
  background-image: url(../img/img_concept.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
@media screen and (max-width: 1023px) {
  .main section {
    justify-content: center;
  }
}
@media screen and (max-width: 640px) {
  .main section .contents > p {
    margin-bottom: 1rem !important;
  }
}
.main section.service {
  justify-content: center;
}
.main section.service .contents::before {
  content: "";
  display: block;
  width: 21rem;
  height: 2rem;
  margin-bottom: 1rem;
  background-image: url(../img/img_process_title.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.main section.service .contents ul {
  display: flex;
  gap: 1.75rem;
  transition: all 250ms 0s ease;
}
.main section.service .contents ul li {
  vertical-align: top;
}
.main section.service .contents ul li:first-child .figure {
  background-image: url(../img/img_process_1.svg);
}
.main section.service .contents ul li:nth-child(3) .figure {
  background-image: url(../img/img_process_2.svg);
}
.main section.service .contents ul li:nth-child(5) .figure {
  background-image: url(../img/img_process_3.svg);
}
.main section.service .contents ul li:nth-child(7) .figure {
  background-image: url(../img/img_process_4.svg);
}
.main section.service .contents ul li:nth-child(9) .figure {
  background-image: url(../img/img_process_5.svg);
}
.main section.service .contents ul li .figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.5rem;
  height: 12.5rem;
  margin-bottom: 1.5rem;
  background-color: var(--color-main);
  background-size: 100%;
  border-radius: 50%;
  transition: all 250ms 0s ease;
}
.main section.service .contents ul li .figure span {
  font-size: 0;
  line-height: 1.25;
  color: var(--color-white);
  text-align: center;
}
.main section.service .contents ul li.arrow {
  margin-top: 5rem;
}
.main section.service .contents ul li .text h2 {
  margin-bottom: 0.75rem;
  line-height: 1.25;
  font-size: 1rem;
}
.main section.service .contents ul li .text h2::before {
  content: "- ";
}
.main section.service .contents ul li .text h2 br {
  display: none;
}
.main section.service .contents ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1365px) {
  .main section.service .contents ul li {
    margin-right: 0.5;
  }
  .main section.service .contents ul li .figure {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1rem;
  }
  .main section.service .contents ul li .text h2 {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .main section.service .contents ul li.arrow {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .main section.service .contents ul {
    gap: 1rem;
    flex-flow: wrap;
  }
  .main section.service .contents ul li {
    margin-right: 0.5;
  }
  .main section.service .contents ul li .figure {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1rem;
  }
  .main section.service .contents ul li .text h2 {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .main section.service .contents ul li.arrow {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .main section.service .contents ul {
    gap: 1.5vw;
    flex-flow: wrap;
    flex-direction: column;
  }
  .main section.service .contents ul li {
    display: flex;
    align-items: center;
    margin-right: 0;
  }
  .main section.service .contents ul li .figure {
    width: 18vw;
    height: 18vw;
    margin-right: 1rem;
    margin-bottom: 0;
  }
  .main section.service .contents ul li .text h2 {
    font-size: 3vw;
    margin-bottom: 0;
  }
  .main section.service .contents ul li.arrow {
    width: 3.5vw;
    height: 1.25rem;
    margin-top: 0;
    margin-left: 7.5vw;
    transform: rotate(90deg);
  }
}
.main section.project {
  justify-content: center;
}
.main section.designer .contents::before {
  content: "";
  display: inline-block;
  width: 10rem;
  height: 10rem;
  vertical-align: top;
  margin-right: 2rem;
  margin-bottom: 2rem;
  background-image: url(../img/img_designer.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.main section.designer .contents > div {
  display: inline-block;
  vertical-align: top;
}
.main section.designer .contents h1 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.main section.designer .contents p {
  max-width: 41rem;
  font-size: 0.875rem;
}
.main section.company .contents h1 {
  display: block;
  margin-bottom: 0;
}
.main section.company .contents p {
  margin-bottom: 2rem;
}
.main section.company .contents table tr td {
  padding: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.5rem;
  vertical-align: top;
}
.main section.company .contents table tr td:first-child {
  width: 6rem;
  padding-right: 1rem;
  opacity: 0.6;
}
.main section.company .contents table tr td span {
  font-size: 1rem;
  line-height: 1.5rem;
}
.main section.company .contents table tr td .mapLink {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.25rem;
  background-image: var(--img-mapLink);
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: auto;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .main section.company .contents h1 {
    font-size: 1.25rem;
  }
  .main section.company .contents table tr td {
    font-size: 0.875rem;
  }
  .main section.company .contents table tr td:first-child {
    width: 4.5rem;
    font-size: 0.75rem;
  }
}
.main section.contact {
  overflow: hidden;
}
.main section.contact .contents .formWrapper {
  display: flex;
  justify-content: right;
  align-items: center;
}
.main section.contact .contents .formWrapper .send {
  margin-bottom: 0;
  text-align: right;
}
@media screen and (max-height: 959px) {
  .main section.contact .contents .block {
    display: inline-block;
    margin-right: 2rem;
    vertical-align: top;
  }
  .main section.contact .contents .block.left {
    padding-top: 6rem;
    margin-right: 0;
  }
  .main section.contact .contents .block.left .note {
    margin-bottom: 0;
  }
  .main section.contact .contents .block input[type=text] {
    width: 32rem;
  }
  .main section.contact .contents .block textarea {
    width: 32rem;
    height: 5rem;
  }
}
@media screen and (max-height: 959px) and (max-width: 1280px) {
  .main section.contact .contents .block input[type=text] {
    width: 24rem;
  }
  .main section.contact .contents .block textarea {
    width: 24rem;
    height: 5rem;
  }
}
@media screen and (max-height: 959px) and (max-width: 640px) {
  .main section.contact .contents {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
  }
  .main section.contact .contents .formWrapper {
    height: 100%;
  }
  .main section.contact .contents .formWrapper form {
    width: 100%;
  }
  .main section.contact .contents .formWrapper form .block {
    width: 100%;
    margin-right: 0;
  }
  .main section.contact .contents .formWrapper form .block input[type=text] {
    width: calc(100% - 0.5rem);
  }
  .main section.contact .contents .formWrapper form .block textarea {
    width: calc(100% - 1rem);
  }
  .main section.contact .contents .formWrapper form .block.left {
    padding-top: 0;
  }
  .main section.contact .contents .formWrapper form .block.left .note {
    display: inline-block;
    line-height: 1.5;
  }
  .main section.contact .contents .formWrapper form .block.left .note .link {
    vertical-align: baseline;
  }
  .main section.contact .contents .formWrapper form .send {
    text-align: center;
  }
  .main section.contact .contents .formWrapper form .send .checkButton {
    width: calc(100% - 4rem);
  }
  .main section.contact .footer {
    display: none;
    position: absolute;
    bottom: -14rem;
    height: 14rem;
  }
  .main section.contact .footer .left {
    height: auto;
    padding: 1rem 1rem;
  }
  .main section.contact .footer .left .logoImg span {
    display: inline-block;
    height: 2rem;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .main section.contact .footer .left .logoImg span.logo1 {
    width: 4.594rem;
    background-image: url(../img/img_logo1.svg);
  }
  .main section.contact .footer .left .logoImg span.logo2 {
    width: 5.25rem;
    background-image: url(../img/img_logo2.svg);
  }
  .main section.contact .footer .left .logoImg span.logo3 {
    width: 4.5rem;
    background-image: url(../img/img_logo3.svg);
  }
  .main section.contact .footer .left p {
    margin-top: 0.25rem;
    font-size: 0.875rem;
  }
  .main section.contact .footer .right {
    display: block;
    padding: 4rem 1rem 0rem 1rem;
  }
  .main section.contact .footer .right .siteLink {
    display: none;
  }
  .main section.contact .footer .right .copy {
    padding-top: 1.5rem;
  }
  .main section.contact .footer .right p {
    margin-bottom: 0;
    line-height: 1;
  }
  .main section.contact .footer .right p span, .main section.contact .footer .right p a, .main section.contact .footer .right p label {
    display: block;
    font-size: 1rem;
    line-height: 1;
    color: var(--color-white);
  }
  .main section.contact .footer .right p a, .main section.contact .footer .right p label {
    margin-top: 0.375rem;
    font-size: 0.875rem;
    text-decoration: underline;
  }
  .main section.contact .footer .right p a::after, .main section.contact .footer .right p label::after {
    content: "";
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    margin-left: 0.5rem;
    background-image: url(../img/img_link_w.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
  }
}
.main section .footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8.5rem;
  background-color: var(--color-main);
}
.main section .footer .left {
  height: 3.75rem;
  padding: 2.5rem 2rem;
}
.main section .footer .left .logoImg span {
  display: inline-block;
  height: 2rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.main section .footer .left .logoImg span.logo1 {
  width: 6.125rem;
  background-image: url(../img/img_logo1.svg);
}
.main section .footer .left .logoImg span.logo2 {
  width: 7rem;
  background-image: url(../img/img_logo2.svg);
}
.main section .footer .left .logoImg span.logo3 {
  width: 6rem;
  background-image: url(../img/img_logo3.svg);
}
.main section .footer .left p {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.9275rem;
  line-height: 1;
  color: var(--color-white);
}
.main section .footer .right {
  display: flex;
  gap: 2.5rem;
  align-items: end;
  padding: 2.5rem 2rem;
}
.main section .footer .right p {
  margin-bottom: 0;
  line-height: 1;
}
.main section .footer .right p span, .main section .footer .right p a, .main section .footer .right p label {
  display: block;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-white);
}
.main section .footer .right p a, .main section .footer .right p label {
  margin-top: 0.375rem;
  text-decoration: underline;
}
.main section .footer .right p a::after, .main section .footer .right p label::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  margin-left: 0.5rem;
  background-image: url(../img/img_link_w.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.main section.thanks {
  justify-content: center;
}
.main section.thanks p {
  margin-bottom: 0rem;
}
.main section.thanks p.note {
  margin-top: 2rem;
  font-size: 0.875rem;
}

.popupShowHide {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 1rem;
}

.sub {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 12rem;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 10;
}
.sub.noShadow {
  background-color: transparent;
}
.sub.show {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.sub.show .popup .contents {
  text-align: center;
}
.sub.show .popup .contents h1 {
  margin-bottom: 2rem;
}
.sub.show .popup .contents h1::before {
  content: "";
  display: inline-block;
  width: 1.875rem;
  height: 1.375rem;
  margin-right: 0.5rem;
  background-image: var(--img-check);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.sub.show .popup .contents p {
  margin-bottom: 3rem;
  color: var(--color-gray);
  line-height: 2;
}
.sub.show .popup .contents a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 3.5rem;
  background-color: var(--color-main);
  border: none;
  border-radius: 1.75rem;
}
.sub.show .popup .contents a:hover {
  text-decoration: none;
}
.sub.show .popup .contents a span {
  font-size: 1.25rem;
  line-height: 1rem;
  color: var(--color-white);
}
.sub .privacy {
  display: block;
}
.sub .privacy .dlWrapper p, .sub .privacy .dlWrapper dd {
  font-size: 0.875rem;
}
.sub .contact {
  display: none;
}
.sub .thanks {
  width: auto;
  height: auto;
  padding: 4rem 12rem;
}

#privacy:checked ~ .sub {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  animation-name: ppopupFadeIn;
  animation-duration: 500ms;
  animation-fill-mode: forwards;
}
#privacy:checked ~ .sub.contact .privacy {
  display: none;
}
#privacy:checked ~ .sub.contact .contact {
  display: block;
  height: auto;
}
#privacy:checked ~ .sub.contact .contact form {
  position: relative;
  height: 100%;
}
#privacy:checked ~ .sub.contact .contact form .scroll {
  height: calc(100% - 10.5rem);
  overflow-y: auto;
}
#privacy:checked ~ .sub.contact .contact form dl {
  margin-bottom: 2rem;
}
#privacy:checked ~ .sub.contact .contact form dl dd ul li {
  padding-right: 0;
}
#privacy:checked ~ .sub.contact .contact form dl dd ul label {
  display: none;
}
#privacy:checked ~ .sub.contact .contact form dl dd ul label.select {
  display: block;
}
#privacy:checked ~ .sub.contact .contact form dl dd input,
#privacy:checked ~ .sub.contact .contact form dl dd textarea {
  width: 100%;
  padding: 0;
  border: none;
}
#privacy:checked ~ .sub.contact .contact form dl dd input[type=radio],
#privacy:checked ~ .sub.contact .contact form dl dd textarea[type=radio] {
  display: none;
}
#privacy:checked ~ .sub.contact .contact form dl dd textarea {
  field-sizing: content;
}
#privacy:checked ~ .sub.contact .contact form dl dd {
  font-size: 1rem;
  color: var(--color-black);
  line-height: 1.75;
}
#privacy:checked ~ .sub.contact .contact form .adjust01 {
  padding-top: 0.75rem;
  padding-bottom: 0.1rem;
}
#privacy:checked ~ .sub.contact .contact form .block.left dl {
  margin-bottom: 0;
}
#privacy:checked ~ .sub.contact .contact form .block.left .note {
  display: none;
}
#privacy:checked ~ .sub.contact .contact form .send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 0;
}

@keyframes ppopupFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.popup {
  width: calc(100% - 24rem);
  height: calc(100% - 24rem);
  padding: 4rem;
  background-color: var(--color-white);
  border-radius: 1rem;
}
.popup.policy {
  max-width: 60rem;
}
.popup.contact {
  max-width: 50rem;
  max-height: calc(100% - 12rem);
}
.popup .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.popup .header h1 {
  margin-bottom: 0;
}
.popup .header label {
  width: 1.875rem;
  height: 1.875rem;
  background-image: var(--img-close);
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: auto;
  cursor: pointer;
}
.popup .dlWrapper {
  height: calc(100% - 5rem);
  overflow-y: auto;
}
.popup .dlWrapper p {
  margin-bottom: 3rem;
  color: var(--color-lightGray-note);
}
.popup .dlWrapper dl {
  margin-bottom: 3rem;
}
.popup .dlWrapper dl:last-child {
  margin-bottom: 0;
}
.popup .dlWrapper dl dt {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1rem;
}
.popup .dlWrapper dl dd {
  color: var(--color-lightGray-note);
  font-size: 1rem;
  line-height: 1.75;
}

@media screen and (max-width: 640px) {
  .popup {
    width: calc(100% - 8rem);
    height: calc(100% - 8rem);
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 1rem;
  }
  .popup.policy {
    max-width: 60rem;
  }
  .popup.contact {
    max-width: 50rem;
    max-height: 100%;
    min-height: 30rem;
  }
  .popup.contact .header {
    margin-bottom: 0 !important;
    padding-bottom: 3rem;
  }
  .popup.contact form .scroll {
    height: calc(100% - 16rem) !important;
  }
  .popup.contact form .send {
    display: block !important;
    width: calc(100% - 3rem) !important;
    margin-top: 0 !important;
    padding-top: 2rem;
    padding-left: 1.5rem;
  }
  .popup.contact form .send input {
    width: 100% !important;
  }
  .popup.contact form .send .cancelButton {
    margin-bottom: 1rem;
  }
  .popup.contact form .send .sendButton {
    padding-left: 35%;
    background-position: center right 37.5%;
  }
  .popup.thanks {
    width: calc(100% - 8rem);
    height: auto;
    padding: 2rem;
  }
  .popup.thanks p {
    text-align: left;
  }
  .popup .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
  }
  .popup .header h1 {
    margin-bottom: 0;
  }
  .popup .header label {
    width: 1.875rem;
    height: 1.875rem;
    background-image: var(--img-close);
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: auto;
    cursor: pointer;
  }
  .popup .dlWrapper {
    height: calc(100% - 5rem);
    overflow-y: auto;
  }
  .popup .dlWrapper p {
    margin-bottom: 3rem;
    color: var(--color-lightGray-note);
  }
  .popup .dlWrapper dl {
    margin-bottom: 3rem;
  }
  .popup .dlWrapper dl:last-child {
    margin-bottom: 0;
  }
  .popup .dlWrapper dl dt {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .popup .dlWrapper dl dd {
    color: var(--color-lightGray-note);
    font-size: 1rem;
    line-height: 1.75;
  }
}
.map {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.map .mapClose {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  background-color: #EE6644;
  border-radius: 1rem;
}
.map .mapClose .icon {
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: var(--img-close);
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: auto;
  cursor: pointer;
}
.map iframe {
  width: 100%;
  height: 100%;
}

.pageNumber {
  position: absolute;
  top: 1rem;
  left: 50%;
  font-size: 1rem;
  color: #000;
}/*# sourceMappingURL=style.css.map */