@charset "UTF-8";

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    display: block;
    pointer-events: auto
  }

  99% {
    opacity: 0;
    display: block;
    pointer-events: auto
  }

  to {
    opacity: 0;
    overflow: hidden;
    display: none;
    pointer-events: none
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    display: block;
    pointer-events: auto
  }

  99% {
    opacity: 0;
    display: block;
    pointer-events: auto
  }

  to {
    opacity: 0;
    overflow: hidden;
    display: none;
    pointer-events: none
  }
}

#loader .bar {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1)
}

.loaded #loader {
  -webkit-animation: fadeOut 0.9s alternate forwards 0.8s;
  animation: fadeOut 0.9s alternate forwards 0.8s
}

.loaded #loader .bar {
  -webkit-transform: scaleX(1);
  transform: scaleX(1)
}

.scEv {}

.view {}

.msk {
  width: auto;
  height: auto;
  position: relative;
  overflow: hidden;
  -webkit-animation-name: play;
  animation-name: play;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative
}

.msk:before {
  position: absolute;
  content: "";
  width: 0%;
  left: 0;
  top: 0;
  height: 100%;
  background: #000;
  -webkit-transition: width 0.4s cubic-bezier(0.8, 0, 0.5, 1);
  transition: width 0.4s cubic-bezier(0.8, 0, 0.5, 1)
}

.view .msk:before {
  -webkit-animation-name: maskOut;
  animation-name: maskOut;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: #000
}

@-webkit-keyframes play {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes play {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@-webkit-keyframes maskOut {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
  }
}

@keyframes maskOut {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
  }
}

.form-submit-button {
  display: block;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem);
  width: 30%;
  padding: 1.5rem 1rem;
  border: none;
  color: #000;
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 20px auto 60px auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: #7B7B7B !important
}

@media screen and (max-width:1024px) {
  .form-submit-button {
    width: 80%
  }
}

.form-submit-button:hover {
  background: #8D8D8D !important;
  color: #fff
}

.form-submit-button:focus {
  background: #000 !important;
  color: #fff;
  outline: 0
}

.grayBg {
  background: #F5F5F5;
  margin: 0 0 -100px 0
}

.red {
  color: #CC0306
}

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
  }

  35% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
  }

  35.1% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%
  }

  70%,
  to {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%
  }
}

@keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
  }

  35% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
  }

  35.1% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%
  }

  70%,
  to {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%
  }
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1
  }

  40% {
    opacity: 1
  }

  90% {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
    opacity: 0
  }

  to {
    opacity: 0
  }
}

@keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1
  }

  40% {
    opacity: 1
  }

  90% {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
    opacity: 0
  }

  to {
    opacity: 0
  }
}

.vmBtn {
  display: inline-block;
  background: translate;
  margin: 30px auto 60px auto;
  font-family: "ff-basic-gothic-pro", sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.086rem + 0.13vw, 1.25rem);
  padding: 1%;
  color: #000;
  text-align: center;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 20%;
  line-height: 1
}

@media screen and (max-width:1024px) {
  .vmBtn {
    width: 80%;
    padding: 3% 0%
  }
}

.vmBtn:after {
  content: "";
  display: inline-block;
  margin: 0 0 0 1rem;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.vmBtn:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #000;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.2s 0.1s;
  transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.2s 0.1s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.2s 0.1s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.2s 0.1s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.2s 0.1s
}

.vmBtn:hover {
  text-decoration: none;
  color: #fff
}

.vmBtn:hover:before {
  -webkit-transform-origin: 59% 100%;
  transform-origin: 59% 100%;
  -webkit-transform: scaleY(1);
  transform: scaleY(1)
}

.vmBtn:hover:after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff
}

body {
  position: relative;
  color: #454545;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column
}

body.loaded {
  height: 100%;
  overflow-y: visible
}

a {
  color: #454545;
  text-decoration: none;
  outline: none
}

a:visited {
  color: #454545;
  text-decoration: none;
  outline: none
}

a:hover {
  color: #454545;
  text-decoration: underline;
  outline: none
}

a:active {
  color: #454545;
  text-decoration: none;
  outline: none
}

.sp {
  display: none !important
}

@media screen and (max-width:1024px) {
  .sp {
    display: block !important
  }
}

.pc {
  display: block
}

@media screen and (max-width:1024px) {
  .pc {
    display: none !important
  }
}

.textL {
  text-align: left
}

.textC {
  text-align: center
}

.textR {
  text-align: right
}

.bgGray {
  background: #F7F7F8
}

.pt65 {
  padding-top: 65px
}

@media screen and (max-width:1024px) {
  .pt65 {
    padding-top: 32px
  }
}

.pt100 {
  padding-top: 100px
}

@media screen and (max-width:1024px) {
  .pt100 {
    padding-top: 40px
  }
}

.pb65 {
  padding-bottom: 65px
}

@media screen and (max-width:1024px) {
  .pb65 {
    padding-bottom: 32px
  }
}

.pb30 {
  padding-bottom: 30px
}

@media screen and (max-width:1024px) {
  .pb30 {
    padding-bottom: 15px
  }
}

.pb15 {
  padding-bottom: 15px
}

@media screen and (max-width:1024px) {
  .pb15 {
    padding-bottom: 7px
  }
}

.pb100 {
  padding-bottom: 100px
}

@media screen and (max-width:1024px) {
  .pb100 {
    padding-bottom: 40px
  }
}

.m10 {
  margin: 10px
}

@media screen and (max-width:1024px) {
  .m10 {
    margin: 7px
  }
}

.m5 {
  margin: 5px
}

@media screen and (max-width:1024px) {
  .m5 {
    margin: 5px
  }
}

.mt10 {
  margin-top: 10px
}

.mb10 {
  margin-bottom: 10px
}

.mt20 {
  margin-top: 20px
}

.mb20 {
  margin-bottom: 20px
}

.mb40 {
  margin-bottom: 40px
}

.Btnborder {
  line-height: 2;
  font-size: clamp(0.938rem, 0.921rem + 0.06vw, 1rem);
  margin: 10px auto;
  padding: 0.5rem;
  border: 1px solid #8D8D8D;
  display: inline-block;
  border-radius: 5px;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

.Btnborder:hover {
  opacity: 0.6
}

.w1000 {
  width: 1000px;
  margin: 0 auto
}

@media screen and (max-width:1024px) {
  .w1000 {
    width: 90%
  }
}

.w100 {
  width: 100%;
  margin: 0 auto
}

@media screen and (max-width:1024px) {
  .w100 {
    width: 100%
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.flex--wrap {
  flex: 1;
  flex-wrap: wrap;
  justify-content: right;
  margin-left: 24px;
}

.datalist {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.datalist .dataBtn {
  width: 30%;
  border: 2px solid #0F0F0F;
  border-radius: 5px;
  margin: 0 1.5% 3% 1.5% !important
}

@media screen and (max-width:1024px) {
  .datalist .dataBtn {
    width: 100%;
    margin: 0 1.5% 1.5% 1.5%
  }
}

.datalist .dataBtn a {
  padding: 10px 10px;
  display: block;
  position: relative
}

.datalist .dataBtn a p.word {
  text-align: left;
  padding: 0.5rem 0.5rem 0.5rem 2.5rem;
  background: url("../images/icon_word.png") no-repeat 0;
  background-size: 30px;
  line-height: 1.5 !important
}

.datalist .dataBtn a p.excel {
  text-align: left;
  padding: 0.5rem 0.5rem 0.5rem 2.5rem;
  background: url("../images/icon_excel.png") no-repeat 0;
  background-size: 30px;
  line-height: 1.5 !important
}

.datalist .dataBtn a p.pdf {
  text-align: left;
  padding: 0.5rem 0.5rem 0.5rem 2.5rem;
  background: url("../images/icon_pdf.png") no-repeat 0;
  background-size: 30px;
  line-height: 1.5 !important
}

.partnerlist {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0px auto
}

.partnerlist li {
  width: 25%;
  position: relative
}

.partnerlist li:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  display: inline-block;
  width: 50%;
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #CCCCCC
}

.partnerlist li:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  display: inline-block;
  width: 50%;
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #CCCCCC
}

.partnerlist li .logo {
  /* margin: 30px auto; */
  /* margin: 20px auto; */
  /* padding: 30px 0; */
  display: block;
  height: 100%;
  border-left: 1px solid #CCCCCC
}

@media screen and (max-width:1024px) {
  .partnerlist li .logo {
    /* margin: 20px auto !important */
  }
}

.partnerlist li .logo.logo--sample {
  align-content: center;
}

.partnerlist li .logo img {
  width: 78%;
  margin: 20px auto;
  /* width: 60%; */
}

@media screen and (max-width:1024px) {
  .partnerlist li .logo img {
    width: 70% !important;
    margin: 20px auto !important;
  }
}

.partnerlist li:last-child .logo {
  border-right: 1px solid #CCCCCC
}

@media screen and (max-width:1024px) {
  .partnerlist li {
    width: 50%
  }

  .partnerlist li:nth-child(2n) .logo {
    border-right: 1px solid #CCCCCC
  }
}

.partnerlist .wts {
  width: 50%
}

.partnerlist .wts p {
  padding: 0 20px
}

@media screen and (max-width:1024px) {
  .partnerlist .wts {
    width: 100%
  }

  .partnerlist .wts:nth-child(n) .logo {
    border-right: 1px solid #CCCCCC
  }
}

.partnerlist .wts .logo img {
  width: auto;
  max-height: 50px;
  margin: 0 0 20px 0
}

@media screen and (max-width:1024px) {
  .partnerlist .wts .logo img {
    max-height: 100%
  }
}

.partnerlist .wts .logo .templogo {
  max-height: 100px
}

@media screen and (max-width:1024px) {
  .partnerlist .wts .logo .templogo {
    max-height: 60%
  }
}

.partnerlist .wts:nth-child(2n) .logo {
  border-right: 1px solid #CCCCCC
}

.flow {
  background: #F7F7F7;
  width: 100%;
  margin: 0px auto;
  padding: 40px 60px
}

@media screen and (max-width:1024px) {
  .flow {
    padding: 20px 20px
  }
}

.flow li {
  background: #fff;
  position: relative;
  margin: 0 0 70px 0
}

.flow li .mi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.flow li .mi .num {
  background: #3E5889;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  width: 60px;
  color: #fff;
  font-size: clamp(1.563rem, 1.069rem + 1.64vw, 3.125rem);
  font-weight: 700;
  -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) {
  .flow li .mi .num {
    height: 50px;
    width: 50px
  }
}

.flow li .mi strong {
  font-weight: 600;
  font-size: clamp(1.063rem, 1.003rem + 0.2vw, 1.25rem);
  padding: 0 20px;
  display: block
}

@media screen and (max-width:1024px) {
  .flow li .mi strong {
    padding: 0 10px
  }
}

.flow li:after {
  content: url(../images/dn_yajirushi.png);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
  display: inline-block
}

@media screen and (max-width:1024px) {
  .flow li:after {
    content: url(../images/dn_yajirushi_s.png)
  }
}

.flow li:last-child {
  margin: 0 0 0px 0
}

.flow li:last-child:after {
  content: none
}

.flow li .address {
  border: 2px solid #CCCCCC;
  background: #F7F7F7;
  text-align: center;
  padding: 20px 30px;
  margin: 20px 0 0 0;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem);
  line-height: 1.8
}

@media screen and (max-width:1024px) {
  .flow li .address {
    padding: 10px 5px
  }
}

.flow .box {
  padding: 20px 60px 40px 60px;
  text-align: left
}

@media screen and (max-width:1024px) {
  .flow .box {
    padding: 10px 30px 20px 30px
  }
}

.info_cat {
  display: inline-block;
  text-align: center;
  font-size: clamp(0.875rem, 0.855rem + 0.07vw, 0.938rem);
  line-height: 1;
  display: block;
  border-radius: 0;
  padding: 8px 10px !important;
  font-weight: 500 !important;
  background: #F7F7F7;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

.info_cat--campaign {
  color: #4C72D1
}

.info_cat--new {
  color: #C4657B
}

.info_cat--press {
  color: #43A23F
}

.info_cat--project {
  color: #835FA2
}

.contactForm {
  width: 100%;
  margin: 0px auto;
  text-align: left
}

.contactForm--bg {
  background: #F7F7F7;
  padding: 40px 80px 60px 80px;
  margin: 0 0 20px 0
}

@media screen and (max-width:1024px) {
  .contactForm--bg {
    padding: 20px 20px 40px 20px
  }
}

.contactForm p {
  margin: 2px 0
}

.contactForm input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.contactForm input[type=checkbox] {
  cursor: pointer;
  padding-left: 30px;
  vertical-align: middle;
  position: relative
}

.contactForm input[type=checkbox]:after,
.contactForm input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute
}

.contactForm input[type=checkbox]:before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #cacaca;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 5px
}

.contactForm input[type=checkbox]:after {
  border-bottom: 3px solid #666464;
  border-left: 3px solid #666464;
  opacity: 0;
  height: 6px;
  width: 11px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -4px;
  left: 10px
}

.contactForm input[type=checkbox]:checked:after {
  opacity: 1
}

.contactForm .cb {
  line-height: 1.8;
  margin: 0 0 30px 0
}

.contactForm .cb label {
  display: inline !important
}

.contactForm label span {
  color: #C92F0A
}

.contactForm input[type=email],
.contactForm input[type=tel],
.contactForm input[type=text] {
  background: #fff;
  border-radius: 3px;
  padding: 1rem 1.5rem;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem);
  border: 1px solid #F7F7F7
}

.contactForm .wpcf7-not-valid {
  background: #fde7e2 !important;
  border: 2px solid #C92F0A !important
}

.contactForm textarea {
  background: #fff;
  border-radius: 3px;
  padding: 1.5rem 1.5rem;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem);
  border: 1px solid #F7F7F7
}

.contactForm .f_w100 {
  width: 100%;
  margin: 0px 0 20px 0
}

.contactForm .f_w100_naiyo {
  width: 100%
}

.contactForm input::-webkit-input-placeholder,
.contactForm textarea::-webkit-input-placeholder {
  color: #999;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem)
}

.contactForm input::-moz-placeholder,
.contactForm textarea::-moz-placeholder {
  color: #999;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem)
}

.contactForm input:-ms-input-placeholder,
.contactForm textarea:-ms-input-placeholder {
  color: #999;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem)
}

.contactForm input::-ms-input-placeholder,
.contactForm textarea::-ms-input-placeholder {
  color: #999;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem)
}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
  color: #999;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem)
}

.contactForm label {
  display: inline-block;
  margin: 5px 0 10px 0
}

.contactForm label .hissu {
  color: #C92F0A
}

.contactForm .checkboxW {
  width: 60%;
  margin: 20px auto 0 auto
}

@media screen and (max-width:1024px) {
  .contactForm .checkboxW {
    width: 100%
  }
}

.contactForm .btn-submit {
  display: inline-block;
  font-size: clamp(1.063rem, 1.043rem + 0.07vw, 1.125rem);
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin: 20px auto;
  background: #8D8D8D;
  border-radius: 6px
}

.contactForm span.wpcf7-list-item {
  display: block
}

.submitBtnW {
  text-align: center;
  margin: 0 auto
}

.contact_kubun .wpcf7-not-valid {
  border: none !important
}

.error {
  text-align: center;
  padding: 20px 10px;
  background: #F5F5F5
}

.error h4 {
  margin: 1rem 0;
  font-size: clamp(1rem, 0.98rem + 0.07vw, 1.063rem)
}

.error p {
  margin: 0.1rem 0;
  color: #CC0306;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem)
}

.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px
}

.wpcf7 .wpcf7-validation-errors {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7
}

.wpcf7 .wpcf7-mail-sent-ok {
  color: #3A87AD;
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1
}

.wpcf7-response-output.wpcf7-validation-errors {
  color: #C92F0A;
  text-align: center
}

#loader {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  z-index: 99;
  background: rgb(255, 255, 255)
}

#loader .bar {
  height: 6px;
  width: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#000), to(#000));
  background: linear-gradient(-90deg, #000, #000)
}

.tcon {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  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;
  height: 2.25em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 1.8em;
  background: transparent;
  outline: none;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.tcon>* {
  display: block
}

.tcon:focus,
.tcon:hover {
  outline: none
}

.tcon::-moz-focus-inner {
  border: 0
}

.tcon-menu__lines {
  display: inline-block;
  height: 0.15em;
  width: 1.8em;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #454545;
  position: relative
}

.tcon-menu__lines:after,
.tcon-menu__lines:before {
  display: inline-block;
  height: 0.15em;
  width: 1.8em;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #454545;
  content: "";
  position: absolute;
  left: 0;
  -webkit-transform-origin: 0.1607142857em center;
  transform-origin: 0.1607142857em center;
  width: 100%
}

.tcon-menu__lines:before {
  top: 0.5625em
}

.tcon-menu__lines:after {
  top: -0.5625em
}

.tcon-transform .tcon-menu__lines {
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
  transform: scale3d(0.8, 0.8, 0.8)
}

.tcon:hover .tcon-menu__lines {
  background: #D6D6D6
}

.tcon:hover .tcon-menu__lines:after,
.tcon:hover .tcon-menu__lines:before {
  background: #D6D6D6
}

.tcon-menu--xcross {
  width: auto
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines {
  background: transparent
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines:after,
.tcon-menu--xcross.tcon-transform .tcon-menu__lines:before {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 0;
  width: 2.25em
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg)
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg)
}

.tcon-visuallyhidden {
  border: 0;
  margin: 10px 0 0 0;
  color: #fff;
  height: 0.5rem
}

.tcon-visuallyhidden:active,
.tcon-visuallyhidden:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto
}

#header {
  width: 100%;
  padding: 0;
  height: auto;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 200;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row
}

@media screen and (max-width:1024px) {
  #header {
    background: rgb(255, 255, 255);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }
}

#header .logo {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 0 0 0px;
  padding: 25px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 0px
}

@media screen and (max-width:1024px) {
  #header .logo {
    padding: 10px 0 0 10px;
    background: none
  }
}

#header .logo img {
  height: 104px;
  margin: 0
}

@media screen and (max-width:1024px) {
  #header .logo img {
    height: 50px
  }
}

#header h1.logo {
  position: absolute;
  top: 0px;
  left: 0;
  margin: 0 0 0 0px;
  padding: 25px;
  opacity: 0;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 0px
}

@media screen and (max-width:1024px) {
  #header h1.logo {
    padding: 10px 0 0 10px;
    background: none
  }
}

#header h1.logo img {
  height: 104px;
  margin: 0
}

@media screen and (max-width:1024px) {
  #header h1.logo img {
    height: 50px
  }
}

#header .headerWrap {
  width: auto;
  text-align: left;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font: "Zen Kaku Gothic New", sans-serif
}

@media screen and (max-width:1024px) {
  #header .headerWrap {
    width: 100%
  }
}

@media screen and (max-width:1024px) {
  #header .ham-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9999
  }

  #header .ham-btn .tcon-menu--xcross {
    min-width: 70px;
    min-height: 70px;
    font-size: 1rem
  }
}

#header .h_nav {
  position: absolute;
  right: 0px;
  top: 0px;
  background: rgba(255, 255, 255, 0.7);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 6px
}

@media screen and (max-width:1024px) {
  #header .h_nav {
    position: inherit
  }
}

#header .h_nav .g_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: clamp(0.875rem, 0.836rem + 0.13vw, 1rem);
  padding: 0 0 0 10px
}

@media screen and (max-width:1024px) {
  #header .h_nav .g_nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    position: relative;
    padding: 0
  }
}

#header .h_nav .g_nav li {
  padding: 20px 0.5rem 0 0.5rem
}

@media screen and (max-width:1024px) {
  #header .h_nav .g_nav li {
    padding: 0.2rem 0
  }
}

#header .h_nav .g_nav li a {
  padding: 0rem 0rem;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
  font-weight: 500;
  color: #454545;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

#header .h_nav .g_nav li a:hover {
  opacity: 0.6;
  text-decoration: none
}

#header .h_nav .g_nav .contact {
  padding: 0px;
  margin: 0 0 0 10px
}

@media screen and (max-width:1024px) {
  #header .h_nav .g_nav .contact {
    padding: 20px 0 0 0;
    margin: 0 0 0 0px;
    width: 50%;
    margin: 0 auto
  }
}

#header .h_nav .g_nav .contact a {
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  display: block;
  background: #7B7B7B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  color: #fff;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px
}

@media screen and (max-width:1024px) {
  #header .h_nav .g_nav .contact a {
    display: block;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    text-align: center;
    background: #F7F7F7;
    color: #8D8D8D
  }
}

#header .h_nav .g_nav .contact a:hover {
  opacity: 0.6;
  text-decoration: none
}

@media screen and (max-width:1024px) {
  #header .h_nav {
    width: 100%;
    height: 100vh;
    padding: 4.3636363636em 2.2727272727em 10em;
    background-color: #8D8D8D;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0);
    transform: scale(0);
    overflow-y: auto
  }

  #header .h_nav .g_nav {
    text-align: center;
    margin: -1.1363636364em 0
  }

  #header .h_nav .g_nav li {
    font-size: clamp(0.875rem, 0.836rem + 0.13vw, 1rem)
  }

  #header .h_nav .g_nav li a {
    padding: 1rem 0;
    font-weight: 500;
    display: block;
    color: #fff
  }
}

@media screen and (max-width:1024px) {

  #header.nav_active .ham-btn .tcon-menu__lines:after,
  #header.nav_active .ham-btn .tcon-menu__lines:before {
    background-color: #fff
  }

  #header.nav_active .h_nav {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

#top {
  text-align: center
}

#top p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem);
  line-height: 1.8
}

#top h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1.563rem, 1.069rem + 1.64vw, 3.125rem);
  font-weight: 700;
  letter-spacing: 0.1rem;
  padding: 0 0 0px 0;
  line-height: 1.4;
  display: block
}

@media screen and (max-width:1024px) {
  #top h2 {
    padding: 0 10px 0px 0
  }
}

#top h2 span {
  display: block;
  font-size: clamp(0.875rem, 0.855rem + 0.07vw, 0.938rem);
  font-weight: 400
}

#top h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1.25rem, 0.954rem + 0.99vw, 2.188rem);
  font-weight: 700;
  letter-spacing: 0.1rem;
  padding: 0 0 0px 0;
  line-height: 1.4;
  display: block
}

@media screen and (max-width:1024px) {
  #top h3 {
    padding: 0 10px 0px 0
  }
}

#top .linkW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 20px auto 0 auto
}

#top .linkW img {
  margin: 5px 8px;
  height: 45px
}

#top #mv {
  width: 100vw;
  overflow: hidden;
  margin: 0
}

#top #mv .bg-movie {
  width: 100%;
  height: 660px;
  overflow: hidden;
  position: relative;
  z-index: -1;
  background: url("../images/mv.png") no-repeat center;
  background-size: cover
}

@media screen and (max-width:1024px) {
  #top #mv .bg-movie {
    height: 80vh;
    background: url("../images/mv_sp.png") no-repeat center center;
    background-size: 100%
  }
}

#top #mv .bg-movie .ttl {
  width: 500px;
  height: 120px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute
}

#top #mv .bg-movie .ttl img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 504px
}

@media screen and (max-width:1024px) {
  #top #mv .bg-movie .ttl {
    width: 75%;
    height: auto;
    text-align: center
  }

  #top #mv .bg-movie .ttl img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 auto
  }
}

#top #mv .topinfo {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  text-align: left
}

@media screen and (max-width:1024px) {
  #top #mv .topinfo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

#top #mv .topinfo .mi {
  width: 35%;
  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:1024px) {
  #top #mv .topinfo .mi {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}

#top #mv .topinfo ul li {
  padding: 10px 0
}

#top #mv .topinfo ul li .dayW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 0px 0
}

#top #mv .topinfo ul li .dayW span {
  display: inline-block;
  padding: 0 0 0 10px;
  margin: 0 10px 0 0;
  font-weight: 600;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem)
}

#top #mv .topinfo ul li p {
  padding: 10px 0 0 0
}

#top #mv .topinfo ul li p a {
  text-decoration: none
}

#top #mv .topinfo ul li p a:hover {
  text-decoration: underline
}

#top .concept {
  background: url("../images/top_about.png") no-repeat 100%;
  background-size: cover;
  position: relative;
  padding: 0;
  text-align: left;
  min-height: 600px
}

@media screen and (max-width:1024px) {
  #top .concept {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 500px;
    background-size: cover
  }
}

#top .concept p {
  font-size: clamp(0.938rem, 0.888rem + 0.19vw, 1.125rem);
  line-height: 2;
  color: #fff;
  display: block;
  padding: 100px 0 0 100px;
  line-height: 2
}

@media screen and (max-width:1024px) {
  #top .concept p {
    padding: 10% 5% 5% 5%
  }
}

#top .concept .map {
  position: absolute;
  bottom: -80px;
  right: 0
}

@media screen and (max-width:1024px) {
  #top .concept .map {
    position: relative;
    width: 100%;
    bottom: -20px
  }

  #top .concept .map img {
    width: 100%
  }
}

#top .contBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

#top .contBox .pBox {
  width: 50%;
  margin: 0 0px 0 0;
  text-align: left
}

#top .contBox .imgBox {
  width: 50%;
  margin: 0 30px 0px 0px
}

#top .contBox .imgBox img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%
}

@media screen and (max-width:1024px) {
  #top .contBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  #top .contBox .pBox {
    width: 100%;
    margin: 0 0 0px 0
  }

  #top .contBox .imgBox {
    width: 100%;
    margin: 10px 0 0 0;
    height: auto;
    overflow: hidden
  }

  #top .contBox .imgBox img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
  }
}

#top .contBox .mt20 {
  margin-top: 20px
}

@media screen and (max-width:1024px) {
  #top .contBox .mt20 {
    margin-top: 0px
  }
}

#top .flexRetern {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row
}

@media screen and (max-width:1024px) {
  #top .flexRetern {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

#top .flexRetern .imgBox {
  margin: 0 0px 0px 20px
}

@media screen and (max-width:1024px) {
  #top .flexRetern .imgBox {
    margin: 10px 0 0 0
  }
}

#under {
  margin: 0px 0 0 0;
  text-align: center;
  padding: 0 0 60px 0
}

@media screen and (max-width:1024px) {
  #under {
    padding: 0 0 30px 0
  }
}

#under .ttl {
  width: 100%;
  text-align: center;
  margin: 160px 0 40px 0
}

@media screen and (max-width:1024px) {
  #under .ttl {
    margin: 110px 0 40px 0
  }
}

#under .ttl h1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2.813rem, 2.615rem + 0.66vw, 3.438rem);
  font-weight: 900;
  letter-spacing: 0.1rem;
  display: inline-block
}

#under .ttl .pan {
  padding: 1rem 0;
  font-size: clamp(0.688rem, 0.648rem + 0.13vw, 0.813rem)
}

#under .ttl .pan .before {
  position: relative;
  display: inline-block;
  padding: 0 0.5rem 0 0
}

#under .ttl .pan .before:after {
  padding: 0 0 0 0.5rem;
  content: ">"
}

#under .ttl .pan .before a {
  color: #D6D6D6
}

#under .ttlImg {
  width: 100%;
  height: 380px;
  overflow: hidden
}

@media screen and (max-width:1024px) {
  #under .ttlImg {
    height: 200px
  }
}

#under .ttlImg img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%
}

@media screen and (max-width:1024px) {
  #under .ttlImg img {
    height: 100%;
    width: auto
  }
}

#under h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1.25rem, 0.954rem + 0.99vw, 2.188rem);
  font-weight: 700;
  letter-spacing: 0.1rem;
  padding: 0 0 40px 0;
  line-height: 1.8
}

@media screen and (max-width:1024px) {
  #under h2 {
    padding: 0 0 20px 0
  }
}

#under p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem);
  line-height: 1.8
}

#under .about .bn1 {
  text-align: center;
  margin: 20px auto;
  display: block
}

#under .about .bn1 img {
  width: auto
}

@media screen and (max-width:1024px) {
  #under .about .bn1 img {
    width: 100%
  }
}

#under .about .bnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

#under .about .bnBox li {
  text-align: center;
  list-style: none
}

#under .about .bnBox li p {
  padding: 0 0 0.5rem 0
}

@media screen and (max-width:1024px) {
  #under .about .bnBox li {
    width: 100%;
    margin: 20px auto 0 auto
  }
}

@media screen and (max-width:1024px) {
  #under .about .bnBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

#under .about p a {
  text-decoration: underline
}

#under .about p a:hover {
  text-decoration: none
}

#under .about span {
  line-height: 1.5;
  font-size: clamp(0.875rem, 0.855rem + 0.07vw, 0.938rem)
}

#under .about ul {
  text-align: left;
  margin: 40px 0 40px 0
}

@media screen and (max-width:1024px) {
  #under .about ul {
    margin: 20px 0 20px 0
  }
}

#under .about ul li {
  list-style: disc;
  margin: 0.5rem 0 0.5rem 1.5rem;
  line-height: 1.8
}

@media screen and (max-width:1024px) {
  #under .about img {
    width: 100%
  }
}

#under .about__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 497px;
  margin: 40px 0
}

@media screen and (max-width:1024px) {
  #under .about__image {
    height: 150px;
    margin: 20px 0
  }
}

#under .about__image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 33.3333333333%
}

#under .about__background {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row
}

@media screen and (max-width:1024px) {
  #under .about__background {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

#under .about__background img {
  margin: 0 40px 0 0;
  width: 160px
}

@media screen and (max-width:1024px) {
  #under .about__background img {
    width: 40%;
    margin: 20px auto 20px auto
  }
}

#under .about__cordinater {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row
}

@media screen and (max-width:1024px) {
  #under .about__cordinater {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

#under .about__cordinater .box {
  margin: 0 0 0 40px;
  width: 280px
}

@media screen and (max-width:1024px) {
  #under .about__cordinater .box {
    width: 100%;
    margin: 20px auto 0px auto
  }
}

@media screen and (max-width:1024px) {
  #under .about__cordinater .box img {
    width: 100%
  }
}

#under .about__cordinater .box span {
  display: inline-block
}

#under .donation .exmple li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px 0 50px 0
}

@media screen and (max-width:1024px) {
  #under .donation .exmple li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px 0 30px 0
  }
}

#under .donation .exmple li p {
  width: 50%;
  text-align: left
}

#under .donation .exmple li p strong {
  display: block;
  padding: 0 0 10px 0
}

#under .donation .exmple li img {
  width: 45%
}

@media screen and (max-width:1024px) {
  #under .donation .exmple li p {
    width: 100%;
    margin: 0 0 10px 0
  }

  #under .donation .exmple li img {
    width: 100%
  }
}

#under .donation .exmple li:last-child {
  margin: 50px 0 0 0
}

@media screen and (max-width:1024px) {
  #under .donation .exmple li:last-child {
    margin: 30px 0 0 0
  }
}

@media screen and (max-width:1024px) {
  #under .donation img {
    width: 100%
  }
}

#under .donation .zuTit {
  font-weight: 600;
  margin: 20px 0 10px 0;
  font-size: clamp(1rem, 0.961rem + 0.13vw, 1.125rem)
}

#under .donation a {
  text-decoration: underline
}

#under .donation a:hover {
  text-decoration: none
}

#under .donation table {
  margin: 0px auto
}

@media screen and (max-width:1024px) {
  #under .donation table {
    margin: 20px auto
  }
}

#under .donation table tr:last-child {
  border-bottom: 1px solid #CCCCCC
}

#under .donation table th {
  background: #EDECEC;
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
  text-align: center;
  padding: 1rem 0.5rem;
  font-size: clamp(0.875rem, 0.855rem + 0.07vw, 0.938rem);
  line-height: 1.5;
  vertical-align: middle
}

#under .donation table th:last-child {
  border-right: 1px solid #CCCCCC
}

#under .donation table td {
  padding: 1rem 0.5rem;
  text-align: left;
  font-size: clamp(0.875rem, 0.855rem + 0.07vw, 0.938rem);
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
  line-height: 1.5
}

#under .donation table td:last-child {
  border-right: 1px solid #CCCCCC
}

#under .donation table .w50 {
  width: 40%
}

@media screen and (max-width:1024px) {
  #under .donation table .w50 {
    width: 30%
  }
}

#under .doComp {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4
}

#under .doComp li {
  width: 33.33%;
  padding: 1rem 0.5rem 1rem 1rem;
  text-align: left;
  font-weight: 600;
  border-top: 1px solid #e4e4e4;
  border-left: 1px solid #e4e4e4;
  line-height: 1.5;
  display: flex;
  align-items: center;
  font-size: x-large;
}

#under .doComp li img {
  width: 100%;
}

@media screen and (max-width:1024px) {
  #under .doComp li {
    width: 50%;
    font-size: medium;
  }
}

@media screen and (max-width:1024px) {
  #under .officalpartner img {
    width: 100%
  }
}

#under .officalpartner .contBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

#under .officalpartner .contBox .pBox {
  width: 50%;
  margin: 0 20px 0 0
}

#under .officalpartner .contBox .imgBox {
  width: 50%;
  margin: 0 0 0 0
}

#under .officalpartner .contBox .imgBox img {
  -o-object-fit: cover;
  object-fit: cover
}

@media screen and (max-width:1024px) {
  #under .officalpartner .contBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  #under .officalpartner .contBox .pBox {
    width: 100%;
    margin: 0 0 20px 0
  }

  #under .officalpartner .contBox .imgBox {
    width: 100%;
    margin: 0;
    height: 300px;
    overflow: hidden
  }

  #under .officalpartner .contBox .imgBox img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
  }
}

#under .officalpartner .merit li {
  border-bottom: 1px dotted #3E5889;
  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;
  text-align: left;
  padding: 1rem 0
}

#under .officalpartner .merit li:first-child {
  border-top: 1px dotted #3E5889
}

@media screen and (max-width:1024px) {
  #under .officalpartner .merit li {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }
}

#under .officalpartner .merit li .num {
  color: #3E5889;
  font-weight: 600;
  padding: 0 0px 0 0;
  width: 5%;
  font-size: clamp(1rem, 0.961rem + 0.13vw, 1.125rem)
}

@media screen and (max-width:1024px) {
  #under .officalpartner .merit li .num {
    width: 15%
  }
}

#under .officalpartner .merit li .num strong {
  font-size: 250%;
  display: inline-block;
  padding: 0 0 0 0.2rem
}

#under .officalpartner .merit li p {
  width: 94%
}

@media screen and (max-width:1024px) {
  #under .officalpartner .merit li p {
    width: 82%
  }
}

#under .officalpartner .koumoku {
  margin: 40px auto 0 auto
}

#under .officalpartner .koumoku dl {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0px auto;
  border-top: 1px dotted #CCCCCC;
  border-left: 1px dotted #CCCCCC;
  border-right: 1px dotted #CCCCCC
}

#under .officalpartner .koumoku dl:last-child {
  border-bottom: 1px dotted #CCCCCC
}

@media screen and (max-width:1024px) {
  #under .officalpartner .koumoku dl {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

#under .officalpartner .koumoku dl dt {
  width: 23%;
  text-align: left;
  line-height: 1.8;
  background: #F7F7F7;
  padding: 8px 10px
}

@media screen and (max-width:1024px) {
  #under .officalpartner .koumoku dl dt {
    width: 100%
  }
}

#under .officalpartner .koumoku dl dd {
  text-align: left;
  width: 77%;
  line-height: 1.8;
  padding: 8px 10px
}

@media screen and (max-width:1024px) {
  #under .officalpartner .koumoku dl dd {
    width: 100%
  }
}

#under .officalpartner .conclusion li {
  list-style: decimal;
  list-style-position: inside;
  position: relative;
  margin: 30px auto;
  text-indent: -1rem;
  padding: 20px 20px 20px 40px;
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  background: #F7F7F7;
  width: 60%;
  font-size: clamp(1rem, 0.961rem + 0.13vw, 1.125rem);
  text-align: left;
  line-height: 1.8
}

@media screen and (max-width:1024px) {
  #under .officalpartner .conclusion li {
    width: 100%
  }
}

#under .officalpartner .conclusion li .exe {
  font-size: 90%
}

#under .officalpartner .conclusion li:after {
  content: url(../images/dn_yajirushi_ss.png);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -25px;
  display: inline-block
}

@media screen and (max-width:1024px) {
  #under .officalpartner .conclusion li:after {
    content: url(../images/dn_yajirushi_ss.png)
  }
}

#under .officalpartner .conclusion li:first-child {
  margin: 0px auto 30px auto
}

#under .officalpartner .conclusion li:last-child {
  margin: 0 auto
}

#under .officalpartner .conclusion li:last-child:after {
  content: none
}

#under .contact {
  border-top: 1px solid #F7F7F7
}

#under .contact p a {
  text-decoration: underline
}

#under .contact p a:hover {
  text-decoration: none
}

#under .faq .accordion--container {
  background: #F7F7F7;
  border-radius: 5px;
  margin: 10px 0 20px 0;
  width: 100%
}

#under .faq .accordion--title {
  padding: 2% 5% 2% 5%;
  cursor: pointer;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem);
  text-align: left;
  line-height: 1.8;
  position: relative
}

@media screen and (max-width:1024px) {
  #under .faq .accordion--title {
    padding: 5% 10% 5% 10%
  }
}

#under .faq .accordion--title:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background-color: #454545;
  position: absolute;
  right: 2%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s
}

@media screen and (max-width:1024px) {
  #under .faq .accordion--title:before {
    right: 4%
  }
}

#under .faq .accordion--title:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background-color: #454545;
  position: absolute;
  right: 2%;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s
}

@media screen and (max-width:1024px) {
  #under .faq .accordion--title:after {
    right: 4%
  }
}

#under .faq .accordion--title p {
  padding: 0;
  margin: 0
}

#under .faq .accordion--title p:before {
  content: "Q.";
  margin-left: -1rem
}

#under .faq .accordion .show:before {
  opacity: 0
}

#under .faq .accordion .show:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg)
}

#under .faq .accordion--content {
  display: none;
  padding: 2% 5% 4% 5%;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem);
  text-align: left;
  line-height: 1.8
}

@media screen and (max-width:1024px) {
  #under .faq .accordion--content {
    padding: 2% 10% 6% 10%
  }
}

#under .faq .accordion--content:before {
  content: "A.";
  margin-left: -1rem;
  padding-right: 0.2rem
}

#under .information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

@media screen and (max-width:1024px) {
  #under .information {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

@media screen and (max-width:1024px) {
  #under .information img {
    width: 100%
  }
}

#under .information .contL {
  width: 75%;
  text-align: left
}

@media screen and (max-width:1024px) {
  #under .information .contL {
    width: 100%
  }
}

#under .information .contL ul li {
  border-bottom: 1px dotted #CCCCCC;
  padding: 20px 0
}

#under .information .contL ul li .dayW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 5px 0
}

#under .information .contL ul li .dayW span {
  display: inline-block;
  padding: 0 0 0 10px;
  margin: 0 10px 0 0;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.855rem + 0.07vw, 0.938rem)
}

#under .information .contL ul li h2 {
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem);
  line-height: 1.8;
  padding: 10px 0 0 0;
  font-weight: 500
}

#under .information .contL ul li h2 a {
  text-decoration: none
}

#under .information .contL ul li h2 a:hover {
  text-decoration: underline
}

#under .information .contL .detail a {
  text-decoration: underline
}

#under .information .contL .detail a:hover {
  text-decoration: none
}

#under .information .contL .detail .dayW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

#under .information .contL .detail .dayW span {
  display: inline-block;
  padding: 0 0 0 10px;
  margin: 0 10px 0 0;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.855rem + 0.07vw, 0.938rem)
}

#under .information .contL .detail h2 {
  font-size: clamp(1.375rem, 1.316rem + 0.2vw, 1.563rem);
  line-height: 1.8;
  padding: 25px 0 15px 0
}

#under .information .contL .detail h2 a {
  text-decoration: none
}

#under .information .contL .detail h2 a:hover {
  text-decoration: underline
}

#under .information .contL .detail h3 {
  font-size: clamp(1.125rem, 1.105rem + 0.07vw, 1.188rem);
  line-height: 1.8;
  margin: 20px 0 10px 0;
  font-weight: 600
}

#under .information .contL .detail h4 {
  font-size: clamp(1.063rem, 1.043rem + 0.07vw, 1.125rem);
  line-height: 1.8;
  padding: 2px 0 2px 10px;
  margin: 30px 0 30px 0;
  font-weight: 600;
  border-left: 2px solid
}

#under .information .contL .detail p {
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem);
  padding: 1rem 0
}

#under .information .contL .detail strong {
  line-height: 1.8;
  margin: 10px 0 10px 0
}

#under .information .contL .detail blockquote {
  line-height: 1.8;
  margin: 20px 0;
  background: #F7F7F7;
  padding: 2% 3%;
  color: #8D8D8D;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem)
}

@media screen and (max-width:1024px) {
  #under .information .contL .detail blockquote {
    padding: 3% 5%
  }
}

#under .information .contL .detail .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 20px 0
}

#under .information .contL .detail .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important
}

#under .information .contL .detail .thumbImg {
  width: 100%
}

#under .information .contL .detail .thumbImg img {
  width: 100%
}

#under .information .contL .detail img {
  max-width: 100%;
  display: block;
  height: auto;
  margin: 10px 0
}

#under .information .contR {
  width: 20%
}

@media screen and (max-width:1024px) {
  #under .information .contR {
    width: 100%
  }
}

#under .information .contR h3 {
  display: block;
  padding: 0 0 10px 0;
  text-align: left;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem)
}

@media screen and (max-width:1024px) {
  #under .information .contR h3 {
    padding: 0 0 10px 0
  }
}

#under .information .contR ul {
  splay: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 30px 0
}

#under .information .contR ul li {
  width: 100%;
  margin: 10px 0
}

#under .information .contR ul li .info_cat {
  width: 100% !important;
  text-align: left;
  padding: 8px 10px !important;
  font-size: clamp(0.875rem, 0.855rem + 0.07vw, 0.938rem)
}

#under .information .contR .month {
  text-align: left;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem)
}

#under .information .contR .month li {
  padding: 0.5rem 1.5rem;
  border: 1px solid #F7F7F7;
  margin: 0 0 10px 0
}

@media screen and (max-width:1024px) {
  #under .information .contR {
    widows: 100%;
    margin: 40px 0 0 0
  }
}

#under .project {
  background: #F5F5F5;
  margin-bottom: -60px
}

@media screen and (max-width:1024px) {
  #under .project {
    margin-bottom: -30px
  }
}

#under .project .topCont {
  text-align: center
}

#under .project .topCont .mi {
  font-weight: 500;
  display: block
}

#under .project .topCont .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

#under .project .tagW {
  display: inline-block;
  background: #fff;
  padding: 0.5rem 1rem;
  font-size: clamp(0.813rem, 0.773rem + 0.13vw, 0.938rem);
  border: 1px solid #E3E3E3
}

#under .project .catW {
  padding: 0.5rem 1rem;
  font-size: clamp(0.813rem, 0.773rem + 0.13vw, 0.938rem);
  color: #fff;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}


#under .project .op {
  background: #869DBC;
  color: #fff;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

#under .project .op:hover {
  text-decoration: none !important
}

#under .project .apply {
  background: #d6c498;
  color: #fff;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

#under .project .apply:hover {
  text-decoration: none !important
}

#under .project .dn {
  background: #A3C997;
  color: #fff;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

#under .project .dn:hover {
  text-decoration: none !important
}

#under .project .temp {
  background: #87BFD3;
  color: #fff;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

#under .project .temp:hover {
  text-decoration: none !important
}

#under .project .etc {
  background: #8D8D8D;
  color: #fff;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

#under .project .etc:hover {
  text-decoration: none !important
}

#under .project .advance {
  background: #D38D87;
  color: #fff;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

#under .project .advance:hover {
  text-decoration: none !important
}

#under .project .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

@media screen and (max-width:1024px) {
  #under .project .list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}

#under .project .list li {
  width: 30%;
  position: relative;
  margin: 0 1.5%
}

@media screen and (max-width:1024px) {
  #under .project .list li {
    width: 48%;
    margin: 0
  }
}

#under .project .list li .catW,
#under .project .list li .tagW {
  padding: 0.2rem 0.5rem;
  font-size: clamp(0.75rem, 0.711rem + 0.13vw, 0.875rem);
  display: inline-block
}

#under .project .list li .tagW {
  margin: 0 0 5px 0
}

#under .project .list li .catPos {
  position: absolute;
  top: 3px;
  left: 0
}

@media screen and (max-width:1024px) {
  #under .project .list li .catPos {
    top: 0px
  }
}

#under .project .list li img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover
}

@media screen and (max-width:1024px) {
  #under .project .list li img {
    height: 150px
  }
}

#under .project .list li .txt {
  background: #fff;
  padding: 20px;
  text-align: left
}

@media screen and (max-width:1024px) {
  #under .project .list li .txt {
    padding: 15px 15px
  }
}

#under .project .list li .txt .tagPos {
  margin: 0px 0 5px 0
}

@media screen and (max-width:1024px) {
  #under .project .list li .txt .tagPos {
    margin: 0px 0 0px 0
  }
}



#under .project .list li .txt p {
  padding: 0px 0 0 0;
  font-size: clamp(0.875rem, 0.836rem + 0.13vw, 1rem);
  line-height: 1.8
}

#under .project .month li {
  padding: 0 !important
}

#under .project .dayW {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

#footerContact {
  width: 100%;
  text-align: center
}

#footerContact a {
  color: #fff;
  background: #8D8D8D;
  width: 100%;
  display: block;
  padding: 7% 0;
  z-index: 1;
  line-height: 1;
  position: relative;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

@media screen and (max-width:1024px) {
  #footerContact a {
    padding: 13% 5%
  }
}

#footerContact a h3 {
  font-family: "ff-basic-gothic-pro", sans-serif;
  font-size: clamp(1.875rem, 1.626rem + 0.95vw, 2.813rem);
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin: 0 0 0rem 0
}

#footerContact a p {
  line-height: 2;
  font-size: clamp(0.938rem, 0.921rem + 0.06vw, 1rem);
  margin: 10px 0 0 0;
  padding: 0.5rem;
  border: 1px solid #fff;
  display: inline-block;
  border-radius: 5px
}

#footerContact a:before {
  background: url("../images/footer_logo_img.png") no-repeat right 20px;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%
}

@media screen and (max-width:1024px) {
  #footerContact a:before {
    background-size: contain
  }
}

#footerContact a:hover {
  text-decoration: none;
  opacity: 0.6
}

footer {
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 20px 0
}

@media screen and (max-width:1024px) {
  footer {
    padding: 5% 0;
    width: 90%;
    margin: 0 auto
  }
}

footer .fmenu {
  font-family: "ff-basic-gothic-pro", sans-serif;
  font-weight: 200;
  font-size: clamp(0.688rem, 0.648rem + 0.13vw, 0.813rem);
  padding: 0 0 0px 0;
  text-align: center;
  font-weight: 500;
  line-height: 1.8
}

footer .fbox {
  width: 100%;
  margin: 10px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

@media screen and (max-width:1024px) {
  footer .fbox {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 20px auto 0 auto
  }
}

footer .fbox .logo {
  padding: 0 0 0px 0
}

@media screen and (max-width:1024px) {
  footer .fbox .logo {
    padding: 0 0 10px 0
  }
}

footer .fbox .logo img {
  width: 80px;
  margin: 10px 20px 0 0
}

@media screen and (max-width:1024px) {
  footer .fbox .logo img {
    margin: 0 auto;
    width: 80%
  }
}

footer .fbox p {
  font-size: clamp(0.75rem, 0.73rem + 0.07vw, 0.813rem);
  line-height: 1.8;
  padding: 0 0 10px 0;
  text-align: left
}

footer .sns {
  padding: 0 0 10px 0
}

footer .sns i {
  margin: 0 0.2rem;
  font-size: clamp(0.938rem, 0.918rem + 0.07vw, 1rem);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

footer .sns i:hover {
  opacity: 0.6
}

footer .copyright {
  display: block;
  font-family: "ff-basic-gothic-pro", sans-serif;
  font-weight: 400;
  font-size: clamp(0.625rem, 0.605rem + 0.07vw, 0.688rem);
  color: #454545;
  padding: 0;
  text-align: left
}

@media screen and (max-width:1024px) {
  footer .copyright {
    text-align: left
  }
}

.footerPh {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 226px;
  width: 100%;
  z-index: 99
}

.footerPh img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 33.3333333333%
}

@media screen and (max-width:1024px) {
  .footerPh {
    height: 156px;
    z-index: 0
  }
}

#pagetop {
  position: fixed;
  bottom: -100px;
  right: 0px;
  z-index: 100
}

@media screen and (max-width:1024px) {
  #pagetop {
    display: none
  }
}

#pagetop a {
  background: #F7F7F7;
  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;
  width: 75px;
  height: 75px;
  border-top-left-radius: 6px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

#pagetop a:hover {
  background: #CCCCCC
}

#splash {
  background: #fff;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999
}

#splash_text {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 999;
  width: 100%;
  color: #F0F0F0
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 0px
}

#splash_logo img {
  width: auto;
  height: 50px
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0
}

@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px)
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px)
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@media screen and (max-width:1024px) {

  #accessl,
  #qualityl {
    margin-top: -80px;
    padding-top: 80px
  }
}