@charset "UTF-8";
@media print, screen and (min-width: 1025px) {
  .tb {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
}
@media print, screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media print, screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .tc {
    display: none !important;
  }
}
@media print, screen and (min-width: 1025px) {
  .pc-hide {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .sp-hide {
    display: none !important;
  }
}
#wrapper {
  position: relative;
  width: 100%;
}

main {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* input */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
select,
textarea {
  position: relative;
  background-color: transparent;
  box-sizing: border-box;
  padding: 0.9rem 1.6rem;
  width: 100%;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  color: #000000;
  outline: none !important;
}
@media only screen and (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  input[type=password],
  select,
  textarea {
    padding: 1.2rem 1.6rem;
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
select {
  height: 4.8rem;
}
@media only screen and (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  input[type=password],
  select {
    height: 5.6rem;
  }
}

select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../img/select-down.svg);
  background-position: calc(100% - 1.2rem) 50%;
  background-size: 1rem 0.8rem;
  background-repeat: no-repeat;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  select {
    background-position: calc(100% - 1rem) 50%;
  }
}

picture,
figure,
.image_wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

picture img,
figure img,
.image_wrap img {
  width: 100%;
}

.u-inview-fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1200ms, transform 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.u-inview-fadeup.inview {
  opacity: 1;
  transform: translateY(0);
}

.u-inview-img {
  overflow: hidden;
}
.u-inview-img img {
  opacity: 0;
  transform: scale(1.085) translate3d(0, 0, 0);
  transition: opacity 1000ms, transform 1300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.u-inview-img.inview img {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
}

.u-img-cover {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-img-contain {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.u-br-topright-40 {
  border-top-right-radius: 4rem;
  overflow: hidden;
}

.u-ul {
  list-style: disc;
  padding-left: 1.5em;
}

.h-opacity a, a.h-opacity {
  transition: opacity 0.3s;
}
.h-opacity a:hover, a.h-opacity:hover {
  opacity: 0.7;
}

@keyframes scroll {
  from {
    height: 0;
  }
  to {
    height: 15rem;
  }
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotateZ(0);
  }
  to {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes top-slider {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2010px 0;
  }
}
@keyframes bottom-slider {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2557px 0;
  }
}
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password] {
  position: relative;
  width: 100%;
  height: 7rem;
  padding: 0.9rem 1.6rem;
  background: #DBECF6;
  border: 1px solid #666;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none !important;
  font-size: inherit;
  font-weight: normal;
  text-align: left;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=password]:focus {
  border-color: #6B9DCF;
}
@media only screen and (max-width: 768px) {
  input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password] {
    height: 40px;
    border-radius: 4px;
  }
}

select {
  position: relative;
  background-color: #E7E8E8;
  box-sizing: border-box;
  padding: 0.9rem 1.6rem;
  width: 100%;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  color: #000000;
  outline: none !important;
  height: 4.8rem;
  border: none;
}
select:focus {
  border-color: #6B9DCF;
}

textarea {
  position: relative;
  width: 100%;
  padding: 0.9rem 1.6rem;
  background: #DBECF6;
  border: 1px solid #666;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none !important;
  font-weight: normal;
  font-size: inherit;
  text-align: left;
}
textarea:focus {
  border-color: #6B9DCF;
}

picture {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
picture img {
  width: 100%;
}

figure {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
figure img {
  width: 100%;
}

.image_wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.image_wrap img {
  width: 100%;
}

.common-page {
  position: relative;
  padding: 8rem 0 12rem;
}
@media only screen and (max-width: 768px) {
  .common-page {
    padding: 6rem 0 18rem;
  }
}

.p-lead-section {
  position: relative;
  padding: 4.8rem 0 7rem;
}
@media only screen and (max-width: 768px) {
  .p-lead-section {
    padding: 4rem 0 6rem;
  }
}

.column-section {
  position: relative;
  padding: 6rem 0;
}
@media only screen and (max-width: 768px) {
  .column-section {
    padding: 5rem 0;
  }
}

.p-archive-section {
  position: relative;
  padding: 7rem 0;
}
@media only screen and (max-width: 768px) {
  .p-archive-section {
    padding: 6rem 0;
  }
}

.ms-text {
  position: relative;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 3.2rem;
  text-align: center;
  color: black;
}
@media only screen and (max-width: 768px) {
  .ms-text {
    font-size: 2.4rem;
    line-height: 2;
  }
}

.m-text {
  position: relative;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 3.2rem;
  text-align: left;
  color: black;
}
@media only screen and (max-width: 768px) {
  .m-text {
    font-size: 2rem;
    line-height: 4rem;
  }
}

.m-subttl {
  font-size: 3.6rem;
  color: white;
  font-weight: bold;
  letter-spacing: 1.5rem;
  text-align: center;
  line-height: 1.8;
}

.mx-text {
  position: relative;
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 2;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .mx-text {
    font-size: 2.4rem;
  }
}

.lead-title {
  position: relative;
  font-family: MiGoMB1Std-DeBold;
  font-weight: bold;
  font-size: 6rem;
  line-height: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .lead-title {
    margin-bottom: 2rem;
  }
}

.text-list {
  position: relative;
  list-style-type: "・";
  padding-left: 1.8rem;
}

.underline_bg {
  display: inline;
  background: linear-gradient(transparent 68%, #FBB03B 0%);
}

.section-title {
  position: relative;
}
.section-title .lead {
  position: relative;
  font-family: "AvenirNext-Bold";
  font-size: 4.6rem;
  line-height: 1.3;
  text-align: left;
  color: black;
}
.section-title .sub {
  position: relative;
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: left;
  color: #000000;
}
.section-title.c_white::before {
  background: #FFFFFF;
}
.section-title.c_white .lead {
  color: #FFFFFF;
}
.section-title.c_white .sub {
  color: #FFFFFF;
}
.section-title.c_white.c_main::before {
  background: #0069D4;
}
.section-title.inline {
  display: block;
}
.section-title.inline .lead {
  display: inline-block;
}
.section-title.inline .sub {
  display: inline-block;
  margin: 0 0 0 3rem;
}
.section-title.clearfix .link-btn {
  float: right;
}

.arrow-btn {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  border: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.arrow-btn span {
  width: 4px;
  height: 4px;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  transform: rotate(45deg);
}

.color-line {
  margin: 1.3rem 0 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-line .line {
  width: 2.4rem;
  height: 0.24rem;
}
.color-line .line-blue {
  background-color: #3074B2;
}
.color-line .line-sky {
  background-color: #92BCD6;
}
.color-line .line-red {
  background-color: #E36C49;
}

.breadcrumbs {
  position: relative;
  padding: 1.5rem 0;
  background: #ECEDEE;
}
@media only screen and (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs ol {
  display: block;
  list-style: none;
  margin: 0;
  font-family: notoSansCJKjp-Regular;
  font-size: 1rem;
  font-weight: normal;
  color: #3E3A39;
}
@media only screen and (max-width: 768px) {
  .breadcrumbs ol {
    font-size: 1.2rem;
  }
}
.breadcrumbs ol a {
  color: #0069D4;
}
.breadcrumbs ol li {
  position: relative;
  display: inline;
}
.breadcrumbs ol li + li::before {
  content: "＞";
  display: inline-block;
  font-family: notoSansCJKjp-Regular;
  font-size: 0.8rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .breadcrumbs ol li + li::before {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.section-lead {
  position: relative;
}
.section-lead .title {
  position: relative;
  font-family: gothicMB101Pro-Medium;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .section-lead .title {
    font-size: 2.4rem;
  }
}
.section-lead .text {
  position: relative;
  font-family: gothicMB101Pro-Regular;
  font-size: 1.4rem;
  line-height: 2;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .section-lead .text {
    font-size: 1.8rem;
  }
}

/* btn */
.btn-wrap {
  position: relative;
}

.btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  max-width: 240px;
  width: 100%;
  height: 50px;
  background: #F2F2F2;
  border: 1px solid #858585;
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  color: #1A1A1A;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all 0.4s;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .btn {
    height: 45px;
    max-width: 200px;
  }
}
.btn span {
  position: relative;
  color: inherit;
  text-decoration: none;
  z-index: 3;
}
.btn:hover {
  background: #A10707;
  border-color: #A10707;
  color: #FFFFFF;
}

.viewmore_link_wrap {
  position: relative;
}
.viewmore_link_wrap .viewmore_link {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
  line-height: 26px;
  color: #FF8D54;
  text-decoration: none;
}
.viewmore_link_wrap .viewmore_link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FF8D54;
}
.viewmore_link_wrap .viewmore_link::after {
  content: ">";
  display: inline-block;
  line-height: 1;
  margin-left: 6px;
  vertical-align: text-bottom;
}
.viewmore_link_wrap .viewmore_link:hover::before {
  width: 100%;
  animation: link-lineloop 0.6s ease-out;
  -webkit-animation: link-lineloop 0.6s ease-out;
}

.view-more {
  position: relative;
}

.link-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  outline: none;
  transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  cursor: pointer;
  width: 16rem;
  height: 4.5rem;
  border-radius: 3rem;
  background: white;
  overflow: hidden;
  border: 1px solid black;
  z-index: 90;
}
.link-btn span {
  position: relative;
  font-family: noto-bold;
  font-size: 1.4rem;
  color: black;
  text-decoration: none;
  line-height: 1;
  z-index: 3;
}
.link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #F6EEE4;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transform-origin: right top;
  transform: scale(0, 1);
  z-index: 1;
  border-radius: 3rem;
}
.link-btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.link-btn:hover span {
  color: white;
}

.form-btn {
  position: relative;
  display: inline-block;
  padding: 2rem 3rem;
  max-width: 100%;
  width: 30rem;
  background-color: #672E2B;
  border: 1px solid #672E2B;
  border-radius: 0.6rem;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3.6rem;
  text-align: center;
  color: #FFFFFF;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  margin: 0 2rem;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .form-btn {
    width: 32rem;
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .form-btn:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.form-btn span {
  position: relative;
  color: inherit;
  text-decoration: none;
  z-index: 3;
}
.form-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transform-origin: right top;
  transform: scale(0, 1);
  z-index: 1;
}
.form-btn:hover {
  color: #672E2B;
}
.form-btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  outline: 0;
  opacity: 0;
  transition: opacity 0.1s linear;
  padding: 1.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.5);
}
.modal .modal-dialog {
  position: relative;
  max-width: 70rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.3s ease-out;
  transform: translate(0, -15%);
  margin: auto;
}
.modal .modal-content {
  position: relative;
  display: block;
  width: 100%;
  background: #FFFFFF;
  border-radius: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}
.modal .close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.6rem;
  width: 3rem;
  height: 3rem;
  background-color: #FCEE21;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  z-index: 3;
}
.modal .modal-body {
  position: relative;
  padding: 2rem;
}
.modal.show {
  opacity: 1;
}
.modal.show .modal-dialog {
  transform: translate(0, 0);
}

.modal-open {
  overflow: hidden;
}

.wp-pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
}
@media only screen and (max-width: 768px) {
  .wp-pagination {
    margin-top: 7rem;
  }
}
.wp-pagination .link-btn {
  border: 1px solid #0069D4;
  background: #0069D4;
}
@media only screen and (max-width: 768px) {
  .wp-pagination .link-btn {
    width: 20rem;
    height: 4rem;
    border-radius: 2rem;
    font-size: 1.8rem;
    padding: 1rem 10rem 0.8rem 4rem;
  }
  .wp-pagination .link-btn::after {
    width: 4.8rem;
    height: 2rem;
  }
}
.wp-pagination .wp-pagenavi {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-pagination .wp-pagenavi span,
.wp-pagination .wp-pagenavi a {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  color: #E2E3E3;
  border: 1px solid #E2E3E3;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .wp-pagination .wp-pagenavi span,
  .wp-pagination .wp-pagenavi a {
    font-size: 2rem;
  }
}
.wp-pagination .wp-pagenavi .smaller:hover {
  position: relative;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  padding: 0;
  line-height: 1;
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-color: #FFA4DF;
  color: #FFA4DF;
}
.wp-pagination .wp-pagenavi .larger:hover {
  position: relative;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  padding: 0;
  line-height: 1;
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-color: #FFA4DF;
  color: #FFA4DF;
}
.wp-pagination .wp-pagenavi .current {
  position: relative;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  padding: 0;
  line-height: 1;
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-color: #FFA4DF;
  color: #FFA4DF;
}
.wp-pagination .wp-pagenavi .smaller + .current {
  margin-left: 3rem;
}
.wp-pagination .wp-pagenavi .current + .larger {
  margin-left: 2.5rem;
}
.wp-pagination .wp-pagenavi .first,
.wp-pagination .wp-pagenavi .last {
  display: none;
}
.wp-pagination .wp-pagenavi .previouspostslink,
.wp-pagination .wp-pagenavi .nextpostslink {
  width: 16rem;
  height: 4.5rem;
  border-radius: 2.3rem;
  border: 1px solid black;
  background-color: white;
  color: #000000;
  display: block;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.wp-pagination .wp-pagenavi .previouspostslink {
  position: absolute;
  top: 50%;
  left: 34%;
  transform: translateY(-50%);
}
.wp-pagination .wp-pagenavi .nextpostslink {
  position: absolute;
  top: 50%;
  right: 34%;
  transform: translateY(-50%);
}
.wp-pagination .wp-pagenavi .pages {
  width: 15rem;
  height: 3.5rem;
  border-radius: 1.75rem;
  border: 1px solid #8B8C8C;
  display: none;
  color: #8B8C8C;
  order: 1;
  margin-left: 1.5rem;
}
.wp-pagination .link-btn {
  margin-left: 3.6rem;
}

#toc_container {
  position: relative;
  display: block;
  max-width: 100%;
  width: 100%;
  border: 1px solid #D9D9D9;
  border-radius: 1.5rem;
  font-size: 100%;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 2.4rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  #toc_container {
    letter-spacing: 0;
    padding: 1.8rem;
    margin-top: 2.4rem;
    margin-bottom: 2.5rem;
    border-radius: 1.2rem;
  }
}
#toc_container .toc_title {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #000000;
  text-align: center;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  #toc_container .toc_title {
    font-size: 1.6rem;
  }
}
#toc_container .toc_list {
  margin-top: 1rem !important;
}
#toc_container .toc_list .toc_number {
  margin-right: 0.4rem;
}

.accordion-item-list {
  position: relative;
}
.accordion-item-list .accordion-item {
  position: relative;
}
.accordion-item-list .accordion-item:not(:last-child) {
  margin-bottom: 1.6rem;
}
.accordion-item-list .accordion-item .accordion-question {
  position: relative;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 1px solid #727171;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.accordion-item-list .accordion-item .accordion-question::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.2rem);
  right: 2.4rem;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-left: 1px solid #727171;
  border-bottom: 1px solid #727171;
  transition: transform ease-in-out 0.4s;
  transform: translateY(-50%) rotate(-45deg);
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .accordion-item-list .accordion-item .accordion-question::after {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.accordion-item-list .accordion-item .accordion-question h3 {
  position: relative;
  display: block;
  width: 100%;
  font-family: gothicMB101Pro-Medium;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: left;
  color: #727171;
  padding: 2.4rem 6rem 2.4rem 10rem;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .accordion-item-list .accordion-item .accordion-question h3 {
    padding: 2.4rem 6rem 2.4rem 6rem;
  }
}
.accordion-item-list .accordion-item .accordion-question h3::before {
  content: "Q.";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  left: 3rem;
  font-family: gothicMB101Pro-Medium;
  font-size: 3.6rem;
  line-height: 1.3;
  text-align: left;
  color: #727171;
}
@media only screen and (max-width: 768px) {
  .accordion-item-list .accordion-item .accordion-question h3::before {
    left: 2rem;
  }
}
.accordion-item-list .accordion-item .accordion-question.expanded::after {
  border-left: none;
  border-bottom: none;
  border-right: 1px solid #727171;
  border-top: 1px solid #727171;
  top: calc(50% + 0.6rem);
}
.accordion-item-list .accordion-item .accordion-answer {
  position: relative;
  display: none;
  padding: 3.6rem 2.4rem 3.6rem 0;
  background: transparent;
  border: 1px solid #D1BA8E;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .accordion-item-list .accordion-item .accordion-answer {
    padding: 2.4rem 2rem 2.4rem 0;
  }
}
.accordion-item-list .accordion-item .accordion-answer .content {
  position: relative;
  padding: 0 0 0 10rem;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .accordion-item-list .accordion-item .accordion-answer .content {
    padding-left: 6rem;
  }
}
.accordion-item-list .accordion-item .accordion-answer .content::before {
  content: "A";
  position: absolute;
  top: -1rem;
  left: 3rem;
  font-size: 3.6rem;
  line-height: 1.3;
  color: #0069D4;
}
@media only screen and (max-width: 768px) {
  .accordion-item-list .accordion-item .accordion-answer .content::before {
    left: 2rem;
  }
}
.accordion-item-list .accordion-item .accordion-answer .content .m-text {
  position: relative;
  color: #0069D4;
  font-family: gothicMB101Pro-Regular;
  font-size: 1.4rem;
  color: #3E3A39;
}

/* デバイス毎の改行操作 */
@media screen and (min-width: 1024px) {
  [data-tb],
  [data-sp] {
    display: none !important;
  }
  [data-pc] {
    display: inline-block !important;
  }
}
@media screen and (min-width: 750px) and (max-width: 1024px) {
  [data-pc],
  [data-sp] {
    display: none !important;
  }
  [data-tb] {
    display: inline-block !important;
  }
}
@media screen and (max-width: 750px) {
  [data-tb],
  [data-pc] {
    display: none !important;
  }
  [data-sp] {
    display: inline-block !important;
  }
}
.back-to-top {
  position: fixed;
  bottom: 9.6rem;
  right: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.4rem;
  background: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  z-index: 996;
}
@media only screen and (max-width: 768px) {
  .back-to-top {
    width: 7.2rem;
    right: 1.6rem;
    bottom: 11.2rem;
  }
}

.c-section {
  position: relative;
  padding: 0 24px;
}

.c-inner {
  max-width: 1446px;
  margin: 0 auto;
}
.c-inner-s {
  max-width: 1202px;
  margin: 0 auto;
}

.c-tit-line {
  position: relative;
  display: block;
  padding: 13px 0 11px;
  border-bottom: 2px solid #0069D4;
  color: #0069D4;
  font-family: "Sawarabi Mincho", serif;
  font-size: 7.2rem;
  text-align: center;
  line-height: 1.2;
}
.c-tit-line-white {
  color: #fff;
  border-color: #fff;
}
.c-tit-line-icon {
  padding-top: 0;
}
.c-tit-line-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 21.6rem;
  margin-bottom: 6.4rem;
  background: url(../img/common/icon-tit-line.png) center/contain no-repeat;
}
.c-tit-line .tit-small {
  display: block;
  font-size: 0.66em;
  line-height: 1.2;
}
.c-tit-line + .c-catch {
  display: block;
  font-size: 32px;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 40px auto 0;
}
@media print, screen and (max-width: 1024px) {
  .c-tit-line-icon::before {
    width: 137px;
    height: 137px;
    margin: 0 auto 33px;
  }
  .c-tit-line + .c-catch {
    font-size: 3.125rem;
  }
  .c-tit-line .tit-small {
    margin-top: 0.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-tit-line {
    padding: 0;
    font-size: 3.2rem;
  }
  .c-tit-line-icon::before {
    width: 5.5rem;
    height: 5.5rem;
    margin: 0 auto 2.4rem;
  }
  .c-tit-line + .c-catch {
    font-size: 2rem;
    text-align: left;
  }
  .c-tit-line .tit-small {
    margin-top: 0.8rem;
    font-size: 16px;
    padding-bottom: 1em;
  }
}

.c-tit-topline {
  position: relative;
  padding: 0.625em 0;
  color: #00568C;
  font-family: "Sawarabi Mincho", serif;
  font-size: 4.8rem;
  text-align: center;
}
.c-tit-topline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #00568C;
  border-bottom: 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.c-tit-topline::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: calc(50% - 0.52em);
  width: 1.04em;
  height: 3px;
  background: #00568C;
}
@media only screen and (max-width: 768px) {
  .c-tit-topline {
    padding: 21px 0;
    font-size: 28px;
  }
  .c-tit-topline::before {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .c-tit-topline::after {
    left: calc(50% - 25px);
    width: 50px;
  }
}

.c-tit-prj {
  padding: 2.4rem 0 1rem;
  font-family: "Sawarabi Mincho", serif;
  font-size: 7.2rem;
  text-align: center;
  color: #0069D4;
}
.c-tit-prj::before {
  content: "";
  display: block;
  width: 100%;
  height: 9rem;
  margin-bottom: 2rem;
  background: url(../img/common/text-project.png) center/contain no-repeat;
}
@media only screen and (max-width: 768px) {
  .c-tit-prj {
    padding: 16px 0;
    font-size: 28px;
  }
  .c-tit-prj::before {
    height: 37px;
    margin-bottom: 16px;
  }
}

.c-tags-prj {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.c-tags-prj li {
  color: #0069D4;
  border: 1px solid #0069D4;
  font-size: 24px;
  padding: 0 7px;
  line-height: 1.66;
}
@media only screen and (max-width: 768px) {
  .c-tags-prj {
    gap: 8px;
  }
  .c-tags-prj li {
    font-size: 16px;
    padding: 0 7px;
    line-height: 1.87;
  }
}

.c-btn {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 14px 30px;
  border: 3px solid #666;
  border-radius: 100px;
  color: #666;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  z-index: 2;
  overflow: hidden;
  outline: none;
  line-height: 1.8;
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #F0F0F0, #fff);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.c-btn:hover::before {
  opacity: 1;
}
.c-btn > span::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.33em;
  background: url(../img/common/arrow-btn.svg) center/contain no-repeat;
  vertical-align: -0.1em;
}
.c-btn-simple > span::after {
  content: none;
}
.c-btn-prev > span::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.33em;
  background: url(../img/common/arrow-btn.svg) center/contain no-repeat;
  vertical-align: -0.2em;
  transform: rotate(180deg);
}
.c-btn-prev > span::after {
  content: none;
}
@media print, screen and (max-width: 1024px) {
  .c-btn {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .c-btn {
    max-width: 273px;
    width: 100%;
    padding: 22px 10px;
    font-size: 16px;
  }
  .c-btn:not(.c-btn-nowrap) > span::before, .c-btn:not(.c-btn-nowrap) > span::after {
    display: block;
    margin: 0 auto;
  }
  .c-btn > span::before, .c-btn > span::after {
    width: 25px;
    height: 25px;
    vertical-align: middle;
  }
}

.c-btn-round {
  position: relative;
  display: inline-block;
  padding: 0.75em 1em 1.445em;
  background: #fff;
  border: 3px solid #0069D4;
  border-radius: 100px;
  overflow: hidden;
  z-index: 2;
  transition: color 0.2s ease-in;
  color: #0069D4;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.c-btn-round::before, .c-btn-round::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  bottom: 100%;
  width: 140%;
  height: 180%;
  background: rgba(0, 0, 0, 0.0509803922);
  border-radius: 50%;
  transition: background 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1), transform 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.c-btn-round::after {
  bottom: 180%;
  left: 55%;
  width: 160%;
  height: 190%;
  background: #0069D4;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
}
.c-btn-round > span::after {
  content: "";
  position: absolute;
  bottom: 19px;
  left: 0;
  display: block;
  width: 100%;
  height: 18px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2265%22%20height%3D%2218%22%20viewBox%3D%220%200%2065%2018%22%20fill%3D%22none%22%3E%3Cg%20clip-path%3D%22url(%23clip0_3002_9289)%22%3E%3Cpath%20d%3D%22M1%206.30078C1%206.30078%2010.63%2014.9308%2030.54%2014.9308C50.45%2014.9308%2062.72%206.30078%2062.72%206.30078%22%20stroke%3D%22%230069D4%22%20stroke-width%3D%223%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M53.0996%201.32812L62.7196%206.29813L59.3496%2017.0881%22%20stroke%3D%22%230069D4%22%20stroke-width%3D%223%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_3002_9289%22%3E%3Crect%20width%3D%2264.22%22%20height%3D%2217.54%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E") center/contain no-repeat;
  transition: background 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
}
.c-btn-round-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px !important;
  height: 150px !important;
  padding: 0 0 20px !important;
  border-radius: 50% !important;
}
.c-btn-round-circle > span::after {
  bottom: 45px;
}
.c-btn-round:hover {
  color: #fff;
}
.c-btn-round:hover::before {
  bottom: -35%;
  background: #0069D4;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.c-btn-round:hover::after {
  bottom: -45%;
  background: #0069D4;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.c-btn-round:hover > span::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2265%22%20height%3D%2218%22%20viewBox%3D%220%200%2065%2018%22%20fill%3D%22none%22%3E%3Cg%20clip-path%3D%22url(%23clip0_3002_9289)%22%3E%3Cpath%20d%3D%22M1%206.30078C1%206.30078%2010.63%2014.9308%2030.54%2014.9308C50.45%2014.9308%2062.72%206.30078%2062.72%206.30078%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%223%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M53.0996%201.32812L62.7196%206.29813L59.3496%2017.0881%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%223%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_3002_9289%22%3E%3Crect%20width%3D%2264.22%22%20height%3D%2217.54%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}
.c-btn-round-green {
  border: 3px solid #4EA392;
  color: #4EA392;
}
.c-btn-round-green::after {
  background: #4EA392;
}
.c-btn-round-green:hover::before, .c-btn-round-green:hover::after {
  background: #4EA392;
}
.c-btn-round-green > span::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2265%22%20height%3D%2218%22%20viewBox%3D%220%200%2065%2018%22%20fill%3D%22none%22%3E%3Cg%20clip-path%3D%22url(%23clip0_3002_9289)%22%3E%3Cpath%20d%3D%22M1%206.30078C1%206.30078%2010.63%2014.9308%2030.54%2014.9308C50.45%2014.9308%2062.72%206.30078%2062.72%206.30078%22%20stroke%3D%22%234EA392%22%20stroke-width%3D%223%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M53.0996%201.32812L62.7196%206.29813L59.3496%2017.0881%22%20stroke%3D%22%234EA392%22%20stroke-width%3D%223%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_3002_9289%22%3E%3Crect%20width%3D%2264.22%22%20height%3D%2217.54%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}
@media only screen and (max-width: 768px) {
  .c-btn-round {
    max-width: 245px;
    width: 100%;
    padding: 22px 10px 38px;
    font-size: 20px;
  }
}

.c-btns {
  gap: 4.8rem;
  margin-top: 48px;
}
@media print, screen and (max-width: 1024px) {
  .c-btns {
    gap: 8px;
  }
}
@media only screen and (max-width: 768px) {
  .c-btns .c-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 13px;
    padding-bottom: 13px;
    line-height: 1.2;
  }
}

.c-listbox {
  position: relative;
  text-align: center;
  padding-bottom: 102px;
  max-width: 1000px;
  margin: 0 auto;
}
.c-listbox::before, .c-listbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10.4rem;
  border: 2px solid #00568C;
  border-bottom: 0;
  border-top-left-radius: 1.6rem;
  border-top-right-radius: 1.6rem;
}
.c-listbox::after {
  top: auto;
  bottom: 0;
  transform: rotate(180deg);
}
.c-listbox .listbox-tit {
  position: relative;
  padding-top: 0.6em;
  padding-bottom: 0.2em;
  color: #00568C;
  font-family: "Sawarabi Mincho", serif;
  font-size: 40px;
  line-height: 1.6;
  margin-bottom: 1.8em;
}
.c-listbox .listbox-tit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 25px);
  width: 50px;
  height: 3px;
  background: #00568C;
  border-radius: 1px;
}
.c-listbox .listbox-list {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}
@media print, screen and (max-width: 1024px) {
  .c-listbox .listbox-tit {
    font-size: 34px;
  }
  .c-listbox .listbox-list {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .c-listbox {
    padding: 0 8px 8.5rem;
  }
  .c-listbox::before, .c-listbox::after {
    height: 8.5rem;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .c-listbox .listbox-tit {
    padding-top: 2.4rem;
    padding-bottom: 0.8rem;
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
  .c-listbox .listbox-list {
    font-size: 16px;
  }
}

.c-4boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 4.8rem;
  overflow: hidden;
}
.c-4boxes .boxes-item {
  min-height: 350px;
}
.c-4boxes .boxes-item img {
  background: #eee;
}
.c-4boxes .boxes-item:nth-of-type(1) img {
  border-top-left-radius: 4rem;
}
.c-4boxes .boxes-item:nth-of-type(2) img {
  border-top-right-radius: 4rem;
}
.c-4boxes .boxes-item:nth-of-type(3) img {
  border-bottom-left-radius: 4rem;
}
.c-4boxes .boxes-item:nth-of-type(4) img {
  border-bottom-right-radius: 4rem;
}
.c-4boxes .boxes-tit {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
.c-4boxes .boxes-text {
  font-size: 24px;
  line-height: 2.2;
}
@media print, screen and (max-width: 1024px) {
  .c-4boxes {
    grid-template-columns: 1fr;
    gap: 5rem;
    overflow: hidden;
    border-radius: 4rem;
  }
  .c-4boxes .boxes-item {
    min-height: auto;
  }
  .c-4boxes .boxes-item-text {
    grid-row: 2/3;
  }
  .c-4boxes .boxes-item img {
    border-radius: 0 !important;
  }
}
@media only screen and (max-width: 768px) {
  .c-4boxes {
    gap: 24px 8px;
    border-radius: 24px;
  }
  .c-4boxes .boxes-tit {
    font-size: 2.8rem;
  }
  .c-4boxes .boxes-text {
    font-size: 16px;
    line-height: 2;
  }
}

.c-banner-works {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10.6rem;
  padding-right: clamp(1px, 7.06vw, 10.6rem);
  aspect-ratio: 1446/273;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: rgba(191, 199, 204, 0.5019607843) 0.8rem 0.8rem 0;
  transition: box-shadow 0.3s;
  color: #fff;
  font-size: 4rem;
  font-size: clamp(1px, 2.66vw, 4rem);
  font-weight: bold;
  line-height: 1.3;
}
.c-banner-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.6rem solid #0069D4;
  border-radius: inherit;
  z-index: -1;
}
.c-banner-works::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff);
  opacity: 0;
  z-index: -2;
  transition: opacity 0.3s;
}
.c-banner-works:hover {
  box-shadow: rgba(0, 0, 0, 0.2509803922) 0 0 5rem;
}
.c-banner-works:hover::after {
  opacity: 0.2;
}
.c-banner-works img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -3;
}
.c-banner-works .banner-icon {
  position: absolute;
  top: calc(50% - 0.525em);
  right: 2.76%;
  display: block;
  width: 1.05em;
  height: 1.05em;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2243%22%20height%3D%2241%22%20viewBox%3D%220%200%2043%2041%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_444_4866)%22%3E%3Cpath%20d%3D%22M21.25%2028.187L29.0349%2020.4021L21.25%2012.6172%22%20stroke%3D%22white%22%20stroke-width%3D%223.4%22%20stroke-miterlimit%3D%2210%22%2F%3E%3Cpath%20d%3D%22M13.4648%2020.4023H29.0347%22%20stroke%3D%22white%22%20stroke-width%3D%223.4%22%20stroke-miterlimit%3D%2210%22%2F%3E%3Cpath%20d%3D%22M21.2508%2038.6306C31.3186%2038.6306%2039.4802%2030.469%2039.4802%2020.4012C39.4802%2010.3334%2031.3186%202.17188%2021.2508%202.17188C11.183%202.17188%203.02148%2010.3334%203.02148%2020.4012C3.02148%2030.469%2011.183%2038.6306%2021.2508%2038.6306Z%22%20stroke%3D%22white%22%20stroke-width%3D%223.4%22%20stroke-miterlimit%3D%2210%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_444_4866%22%3E%3Crect%20width%3D%2242.5%22%20height%3D%2240.8%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E") center/contain no-repeat;
}
@media only screen and (max-width: 768px) {
  .c-banner-works {
    justify-content: center;
    align-items: flex-end;
    padding: 0 0 1.6vw;
    aspect-ratio: 352/103;
    border-radius: 8px;
    box-shadow: rgba(191, 199, 204, 0.5019607843) 2px 2px 0;
    font-size: 4vw;
  }
  .c-banner-works::before {
    border-width: 0.5vw;
  }
  .c-banner-works:hover {
    box-shadow: rgba(0, 0, 0, 0.2509803922) 0 0 1rem;
  }
  .c-banner-works .banner-icon {
    position: static;
    margin-left: 1.5vw;
    width: 4.5vw;
    height: 5.5vw;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_1128_15541)%22%3E%3Cpath%20d%3D%22M9%2011.938L12.2971%208.64089L9%205.34375%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%2F%3E%3Cpath%20d%3D%22M5.70215%208.64062H12.2964%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%2F%3E%3Cpath%20d%3D%22M8.99997%2016.3632C13.264%2016.3632%2016.7206%2012.9066%2016.7206%208.64255C16.7206%204.37854%2013.264%200.921875%208.99997%200.921875C4.73596%200.921875%201.2793%204.37854%201.2793%208.64255C1.2793%2012.9066%204.73596%2016.3632%208.99997%2016.3632Z%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_1128_15541%22%3E%3Crect%20width%3D%2218%22%20height%3D%2217.28%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  }
}

.c-pagehead {
  position: relative;
  width: calc(100% - 34px);
  max-width: 1886px;
  height: 46rem;
  margin: 12.5rem auto 10.4rem;
  border-radius: 16px;
  overflow: hidden;
}
.c-pagehead .pagehead-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 143, 233, 0.6784313725);
  opacity: 0;
}
.c-pagehead .pagehead-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.c-pagehead .pagehead-img img {
  position: absolute;
  bottom: 0;
  height: calc(100% + 100px);
}
.c-pagehead .pagehead-tit {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
  display: inline-block;
  padding: 0.46em 1.14em;
  border-radius: 4px;
  overflow: hidden;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
  color: #fff;
}
.c-pagehead .pagehead-tit::before {
  content: "";
  position: absolute;
  top: 0.28em;
  left: 0.28em;
  width: 0.6em;
  height: 0.39em;
  border-top: 0.1em solid #fff;
  border-left: 0.1em solid #fff;
}
.c-pagehead .pagehead-tit::after {
  content: "";
  position: absolute;
  bottom: 0.28em;
  right: 0.28em;
  width: 0.6em;
  height: 0.39em;
  border-bottom: 0.1em solid #fff;
  border-right: 0.1em solid #fff;
}
.c-pagehead .pagehead-tit-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #4EA392, #0083B2, #4EA392);
  opacity: 0.8;
  z-index: -1;
}
.c-pagehead-large {
  height: 95.5rem;
}
.c-pagehead-large .pagehead-tit {
  top: 50%;
  bottom: auto;
  left: auto;
  right: 22rem;
  transform: translateY(-50%) !important;
}
@media print, screen and (max-width: 1024px) {
  .c-pagehead-large {
    height: 655px;
  }
  .c-pagehead-large .pagehead-tit {
    top: auto;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) !important;
    right: auto;
  }
}
@media only screen and (max-width: 768px) {
  .c-pagehead {
    width: calc(100% - 48px);
    height: 162px;
    margin: 80px auto 40px;
  }
  .c-pagehead .pagehead-tit {
    width: -moz-max-content;
    width: max-content;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(50%) !important;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 28px;
  }
  .c-pagehead .pagehead-tit::before {
    top: 4px;
    left: 4px;
    width: 19px;
    height: 12px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
  }
  .c-pagehead .pagehead-tit::after {
    bottom: 4px;
    right: 4px;
    width: 19px;
    height: 12px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .c-pagehead-large {
    height: 352px;
  }
  .c-pagehead-large .pagehead-tit {
    top: auto;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) !important;
    right: auto;
  }
	.c-pagehead .pagehead-img img {
		height: 100%;
	}
}

.c-slider {
  position: relative;
}
.c-slider .slick-list {
  padding: 0 !important;
  overflow: visible;
}
.c-slider .slick-arrow {
  top: 12.2rem;
  width: 6.2rem;
  height: 6.2rem;
  background: url(../img/common/arrow-slider.svg) center/contain no-repeat;
  transform-origin: center;
}
.c-slider .slick-arrow::before {
  content: none;
}
.c-slider .slick-prev {
  left: 3.9rem;
  transform: rotate(180deg);
  z-index: 1;
}
.c-slider .slick-next {
  left: auto;
  right: 3.9rem;
  transform: none;
}
.c-slider .slide {
  display: block;
  width: 36.4rem !important;
  margin: 0 12px;
  font-size: 2rem;
  text-align: center;
}
.c-slider .slide .slide-img {
  position: relative;
  aspect-ratio: 364/300;
  margin-bottom: 1.6rem;
  overflow: hidden;
  background: #eee;
}
.c-slider .slide .slide-img img {
  transition-delay: 0 !important;
  width: 100%;
  height: 100%;
}
.c-slider .slide .slide-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0 4px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.54;
  z-index: 2;
}
.c-slider .slide .slide-time {
  display: block;
}
.c-slider .slide .slide-tit {
  padding: 0.3rem 0;
}
.c-slider .slide:hover .slide-img img {
  transform: scale(1.08) !important;
  transition: transform 0.5s;
}
.c-slider.inview .slide-img img {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  width: 100%;
  height: 100%;
}
.c-slider.inview .slide-time, .c-slider.inview .slide-tit {
  opacity: 1;
  transform: translateY(0);
}
@media print, screen and (max-width: 1024px) {
  .c-slider .slick-arrow {
    width: 50px;
    height: 50px;
  }
  .c-slider .slick-prev {
    left: 0;
  }
  .c-slider .slick-next {
    right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-slider .slick-arrow {
    top: 75px;
  }
  .c-slider .slide {
    width: 246px !important;
    margin: 0 8px;
    font-size: 16px;
  }
  .c-slider .slide .slide-img {
    aspect-ratio: 246/200;
    margin-bottom: 13px;
  }
  .c-slider .slide .slide-tag {
    top: 10px;
    left: 10px;
    padding: 0 3px;
    font-size: 16px;
  }
  .c-slider .slide .slide-tit {
    padding: 0;
  }
}

.c-table {
  max-width: 1200px;
  width: 100%;
  margin: 64px auto 0;
  border-collapse: separate;
  border-spacing: 0 3px;
  font-size: 24px;
  line-height: 1.6;
}
.c-table .table-tr {
  height: 63px;
}
.c-table .table-tr:nth-of-type(1) .table-th {
  border-radius: 8px 0 0 0;
}
.c-table .table-tr:nth-last-of-type(1) .table-th {
  border-radius: 0 0 0 8px;
}
.c-table .table-tr:not(:nth-last-of-type(1)) .table-td {
  transform: translateY(2px);
}
.c-table .table-th {
  background-color: #00568C;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 229px;
  padding-top: 12px;
}
.c-table .table-td {
  padding: 10px 24px;
  border-bottom: 2px solid #00568C;
}

@media print, screen and (max-width: 1024px) {
  .c-table {
    font-size: 20px;
  }
  .c-table .table-th {
    font-size: 21px;
    width: 190px;
  }
}
@media only screen and (max-width: 768px) {
  .c-table {
    margin-top: 40px;
    border-spacing: 0;
    font-size: 16px;
  }
  .c-table .table-tr {
    height: auto;
    display: block;
  }
  .c-table .table-tr:nth-of-type(1) .table-th {
    border-radius: 0;
  }
  .c-table .table-tr:nth-last-of-type(1) .table-th {
    border-radius: 0;
  }
  .c-table .table-tr:not(:nth-last-of-type(1)) .table-td {
    transform: none;
  }
  .c-table .table-th {
    display: block;
    font-size: 18px;
    width: 100%;
    padding: 4px 0;
  }
  .c-table .table-td {
    display: block;
    padding: 18px 8px;
    border-bottom: none;
  }
  .c-table .table-hidden {
    display: none;
  }
}
.c-art-content {
  font-size: 24px;
  line-height: 1.6;
}
.c-art-content > *:first-child {
  margin-top: 0;
}
.c-art-content > *:last-child {
  margin-bottom: 0;
}
.c-art-content h1, .c-art-content h2, .c-art-content h3, .c-art-content h4, .c-art-content h5, .c-art-content h6 {
  font-weight: bold;
  margin: 1em 0 0.5em;
}
.c-art-content h1, .c-art-content h2 {
  font-size: 4.2rem;
}
.c-art-content h3 {
  font-size: 3.8rem;
}
.c-art-content h4 {
  font-size: 3.2rem;
}
.c-art-content h5 {
  font-size: 2.8rem;
}
.c-art-content p, .c-art-content ul, .c-art-content ol {
  margin-bottom: 1em;
}
.c-art-content p {
  min-height: 1em;
}
.c-art-content ul {
  padding-left: 1.25em;
  list-style: disc;
}
.c-art-content ul ul, .c-art-content ul ol {
  margin-top: 0.5em;
  list-style: circle;
}
.c-art-content ol {
  padding-left: 1.25em;
  list-style: decimal;
}
.c-art-content ol ul, .c-art-content ol ol {
  margin-top: 0.5em;
}
.c-art-content strong, .c-art-content br {
  font-weight: bold;
}
.c-art-content figure {
  border-top-right-radius: 4rem;
}
.c-art-content .wp-block-columns {
  gap: 4rem 5.5%;
}
.c-art-content .wp-block-columns {
  justify-content: space-between;
  margin-bottom: 1em;
}
.c-art-content .wp-block-columns p:last-child {
  margin-bottom: 0;
}
@media print, screen and (max-width: 1024px) {
  .c-art-content figure {
    border-top-right-radius: 24px;
  }
  .c-art-content .wp-block-columns {
    flex-wrap: wrap !important;
  }
  .c-art-content .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}
@media only screen and (max-width: 768px) {
  .c-art-content {
    font-size: 16px;
  }
  .c-art-content figure {
    border-top-right-radius: 9px;
  }
}

.c-pagination {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}
.c-pagination .nav-links {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 16px;
  color: #000;
  text-align: center;
}
.c-pagination .nav-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: calc(100% - 24px);
  height: 1px;
  background: #fff;
}
.c-pagination .page-numbers {
  padding: 0 12px;
}
.c-pagination .page-numbers:not(.prev):not(.next)::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50%;
}
.c-pagination .page-numbers.current {
  color: #fff;
  pointer-events: none;
}
.c-pagination .page-numbers.current::before {
  background: #000 !important;
}
.c-pagination .page-numbers.prev, .c-pagination .page-numbers.next {
  display: none;
}
.c-pagination .page-numbers.dots::before {
  background: transparent !important;
}

.mwform-radio-field.vertical-item {
  display: block;
}
.mwform-radio-field.vertical-item + .mwform-radio-field {
  margin-top: 1.42em;
}
.mwform-radio-field label {
  cursor: pointer;
}
.mwform-radio-field .mwform-radio-field-text {
  position: relative;
  padding-left: 45px;
  font-size: 28px;
  font-weight: 700;
}
.mwform-radio-field .mwform-radio-field-text::before {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #000;
  border-radius: 50%;
}
.mwform-radio-field .mwform-radio-field-text::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: 4px;
  display: block;
  width: 17px;
  height: 17px;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}
.mwform-radio-field input[type=radio] {
  display: none;
}
.mwform-radio-field input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 0.8;
}
@media print, screen and (max-width: 1024px) {
  .mwform-radio-field.vertical-item + .mwform-radio-field {
    margin-top: 0;
  }
  .mwform-radio-field .mwform-radio-field-text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .mwform-radio-field.vertical-item + .mwform-radio-field {
    margin-top: -8px;
  }
  .mwform-radio-field .mwform-radio-field-text {
    font-size: 20px;
    padding-left: 24px;
  }
  .mwform-radio-field .mwform-radio-field-text::before {
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
  }
  .mwform-radio-field .mwform-radio-field-text::after {
    top: calc(50% - 5px);
    left: 3px;
    width: 10px;
    height: 10px;
  }
}

.mwform-checkbox-field label {
  cursor: pointer;
}
.mwform-checkbox-field .mwform-checkbox-field-text {
  position: relative;
  padding-left: 50px;
  display: block;
}
.mwform-checkbox-field .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #666;
}
.mwform-checkbox-field .mwform-checkbox-field-text::after {
  content: "";
  position: absolute;
  top: calc(50% - 11px);
  left: 6px;
  display: block;
  width: 9px;
  height: 17px;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(45deg);
  opacity: 0;
}
.mwform-checkbox-field input[type=checkbox] {
  display: none;
}
.mwform-checkbox-field input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 0.8;
}
@media print, screen and (max-width: 1024px) {
  .mwform-checkbox-field .mwform-checkbox-field-text {
    padding-left: 39px;
  }
}
@media only screen and (max-width: 768px) {
  .mwform-checkbox-field .mwform-checkbox-field-text {
    padding-left: 28px;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  transition: top .3s ease-in-out, opacity .3s ease-in-out;
}
@media screen and (max-width: 768px) {
  #header {
    top: 0 !important;
	  opacity: 1 !important;
  }
}
#header .inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 11px;
}
@media screen and (max-width: 1900px) {
  #header .inner {
    padding: 0.93vw 16px 0.93vw 0;
  }
}
@media screen and (max-width: 1024px) {
  #header .inner {
    padding: 14px;
  }
}
#header .inner .logo {
  width: 48.6rem;
  margin-left: 4.5rem;
}
@media screen and (max-width: 1900px) {
  #header .inner .logo {
    width: 25.31vw;
    margin-left: 2.34vw;
  }
}
@media screen and (max-width: 768px) {
  #header .inner .logo {
    width: 68px;
    margin-left: 1rem;
  }
}
#header .inner .page-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 16px;
  background: url("../img/bg-blue.png") no-repeat center/cover;
  position: relative;
  overflow: hidden;
  gap: 48px;
  padding: 24px 40px;
}
@media screen and (max-width: 1900px) {
  #header .inner .page-links {
    border-radius: 0.83vw;
    gap: 2.5vw;
    padding: 24px 2.08vw;
  }
}
@media screen and (max-width: 1024px) {
  #header .inner .page-links {
    display: none;
  }
}
#header .inner .page-links .link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1900px) {
  #header .inner .page-links .link {
    font-size: 1.458vw;
  }
}
#header .inner .page-links .link::before, #header .inner .page-links .link::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 0.5em;
  height: 0.3em;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
#header .inner .page-links .link::before {
  top: -0.3em;
  left: -0.4em;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
#header .inner .page-links .link::after {
  right: -0.4em;
  bottom: -0.3em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
#header .inner .page-links .link span {
  color: #fff;
  line-height: 1;
}
#header .inner .page-links .link img {
  width: 20px;
}
@media screen and (max-width: 1900px) {
  #header .inner .page-links .link img {
    width: 2rem;
  }
}
#header .inner .page-links .link:hover::before, #header .inner .page-links .link:hover::after, #header .inner .page-links .link:active::before, #header .inner .page-links .link:active::after {
  opacity: 1;
}
#header .inner .details {
  position: fixed;
  top: 116px;
  display: none;
}
#header .inner .details a {
  display: block;
}
#header .inner .details-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding: 32px;
  background: #fff;
  border: 2px solid #008FE9;
  border-radius: 16px;
  max-width: 1120px;
  margin: 0 auto;
  max-height: calc(100vh - 126px);
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#header .inner .details-inner::-webkit-scrollbar {
  display: none;
}
#header .inner .details-inner.narrow {
  max-width: 850px;
}
#header .inner .details-box:hover .details-img img {
  transform: scale(1.1);
}
#header .inner .details-img {
  position: relative;
  padding-top: 50%;
  border-radius: 4px;
  overflow: hidden;
}
#header .inner .details-img img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  aspect-ratio: 240/120;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
#header .inner .details-tit {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-align: center;
  line-height: 1.6;
  margin-top: 9px;
}
#header .inner .details-link {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  font-size: 20px;
  line-height: 1.6;
  color: #0069D4;
}
#header .inner .details-link::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2213%22%20height%3D%2216%22%20viewBox%3D%220%200%2013%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%221.40647%22%20cy%3D%221.40647%22%20r%3D%221.40647%22%20fill%3D%22%23008FE9%22%2F%3E%3Ccircle%20cx%3D%221.40647%22%20cy%3D%226.07444%22%20r%3D%221.40647%22%20fill%3D%22%23008FE9%22%2F%3E%3Ccircle%20cx%3D%221.40647%22%20cy%3D%2210.7385%22%20r%3D%221.40647%22%20fill%3D%22%23008FE9%22%2F%3E%3Ccircle%20cx%3D%226.07346%22%20cy%3D%2210.7385%22%20r%3D%221.40647%22%20fill%3D%22%23008FE9%22%2F%3E%3Ccircle%20cx%3D%2210.74%22%20cy%3D%2210.7385%22%20r%3D%221.40647%22%20fill%3D%22%23008FE9%22%2F%3E%3C%2Fsvg%3E") center/contain no-repeat;
  margin-right: 8px;
}
#header .inner .details-link::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%228%22%20height%3D%228%22%20viewBox%3D%220%200%208%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M3.05273%206.57847L6.10564%203.52556L3.05273%200.472656%22%20stroke%3D%22%23008FE9%22%20stroke-width%3D%221.33333%22%20stroke-miterlimit%3D%2210%22%2F%3E%3Cpath%20d%3D%22M0%203.52734H6.10581%22%20stroke%3D%22%23008FE9%22%20stroke-width%3D%221.33333%22%20stroke-miterlimit%3D%2210%22%2F%3E%3C%2Fsvg%3E") center/7px 7px no-repeat;
  border: 1px solid #008FE9;
  border-radius: 50%;
  margin-left: 8px;
}
#header .inner .hamburger {
  display: none;
  position: relative;
  z-index: 15;
  cursor: pointer;
  padding: 6px;
  transition: padding 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  #header .inner .hamburger {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 6px;
    width: 53px;
    border-radius: 0.4rem;
    background-color: #fff;
  }
}
#header .inner .hamburger img {
  width: 24px;
  transition: rotate 0.3s ease;
}
#header .inner .hamburger span {
  color: #0069d4;
  font-size: 12px;
  line-height: 1;
}
#header .inner .hamburger span.opened {
  display: none;
}
#header .inner .hamburger.is_open {
/*   padding-top: 10px; */
}
#header .inner .hamburger.is_open img {
  rotate: 225deg;
	transform: scale(.8);
}
#header .inner .hamburger.is_open span.normal {
  display: none;
}
#header .inner .hamburger.is_open span.opened {
  display: block;
}
#header .inner .sp-menu {
  display: none;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100lvh + 50px);
  padding-bottom: 50px;
  background: url("../img/main-bg.png"), rgba(0, 143, 233, 0.75);
  background-blend-mode: multiply, normal;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#header .inner .sp-menu::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1024px) {
  #header .inner .sp-menu {
    padding-top: 72px;
  }
}
#header .inner .sp-menu.is_open {
  display: block;
}
#header .inner .sp-menu .menu-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 2.4rem;
}
#header .inner .sp-menu .menu-content .menu-section {
  display: block;
  width: 100%;
  margin: 16px 0 0;
}
#header .inner .sp-menu .menu-content .menu-section .sub-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
#header .inner .sp-menu .menu-content .menu-section .sub-links .sub-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  line-height: 1.1;
  border-radius: 0.8rem;
  border: 1px solid #fff;
  transition: background 0.3s ease;
}
#header .inner .sp-menu .menu-content .menu-section .sub-links .sub-link::after {
  content: "";
  display: inline-block;
  width: 0.31em;
  height: 0.62em;
  margin-left: 0.5em;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%225%22%20height%3D%2210%22%20viewBox%3D%220%200%205%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%2010V0L5%205L0%2010Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E") center/contain no-repeat;
  transition: transform 0.3s ease-in-out;
}
#header .inner .sp-menu .menu-content .menu-section .sub-links .sub-link:hover {
  background: #0069d4;
}
#header .inner .sp-menu .menu-content .menu-section .sub-links .sub-link:hover::after {
  transform: translateX(0.4rem);
}
#header .inner .sp-menu .menu-content .menu-section.sp-col-2 {
  width: 47.72%;
  padding: 0;
}
#header .inner .sp-menu .menu-content .main-link {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px 13px 0;
  position: relative;
  background: url("../img/main-bg.png") fixed, #0069d4;
  background-blend-mode: multiply, normal;
  border-width: 0px 0px 1px 1px;
  border-style: solid;
  border-color: #FFFFFF;
  border-radius: 0px 8px 0px 0px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}
#header .inner .sp-menu .menu-content .main-link::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  right: 1.4rem;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease-in-out;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_844_14113)%22%3E%3Cpath%20d%3D%22M8.83984%2018.7525L17.6798%209.9025L8.83984%201.0625%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%20stroke-miterlimit%3D%2210%22%2F%3E%3Cpath%20d%3D%22M0%209.89844H17.68%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%20stroke-miterlimit%3D%2210%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_844_14113%22%3E%3Crect%20width%3D%2219.81%22%20height%3D%2219.81%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E") center/contain no-repeat;
}
#header .inner .sp-menu .menu-content .main-link .en {
  display: none;
}
#header .inner .sp-menu .menu-content .main-link .f-20 {
  font-size: 2rem;
}
#header .inner .sp-menu .menu-content .main-link.blank {
  padding-right: 0;
}
#header .inner .sp-menu .menu-content .main-link.blank::after {
  position: static;
  width: 20px;
  height: 20px;
  margin: 0 0 0 3px;
  background-image: url(../img/icon_vr.svg);
}
#header .inner .sp-menu .menu-content .main-link:not(.blank):hover::after {
  transform: translateX(0.4rem);
}
#header .inner .sp-menu .menu-content .menu-links {
  padding: 0 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.4rem;
}
#header .inner .sp-menu .menu-content .menu-links .main-link.wide {
  grid-column: span 2;
}
#header .inner .sp-menu .image-section {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: #00568C 0 0 16px;
}
#header .inner .sp-menu .image-section .overlay-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 53px 0;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
#header .inner .sp-menu .image-section .overlay-link::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_844_14113)%22%3E%3Cpath%20d%3D%22M8.83984%2018.7525L17.6798%209.9025L8.83984%201.0625%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%20stroke-miterlimit%3D%2210%22%2F%3E%3Cpath%20d%3D%22M0%209.89844H17.68%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%20stroke-miterlimit%3D%2210%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_844_14113%22%3E%3Crect%20width%3D%2219.81%22%20height%3D%2219.81%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E") center/contain no-repeat;
  transition: transform 0.3s ease-in-out;
}
#header .inner .sp-menu .image-section .overlay-link.recruit {
  background: linear-gradient(0deg, rgba(0, 75, 122, 0.6), rgba(0, 75, 122, 0.6)), url("../img/header_sp-recruit-bg.png") top/cover;
  border-radius: 0px;
}
#header .inner .sp-menu .image-section .overlay-link.contact {
  background: linear-gradient(0deg, rgba(0, 75, 122, 0.6), rgba(0, 75, 122, 0.6)), url("../img/header_sp-contact-bg.png") center/cover;
  border-radius: 0px;
}
#header .inner .sp-menu .image-section .overlay-link:hover::after {
  transform: translateX(8px);
}
#header .inner .sp-menu .company-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 3.2rem 0;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  background: url("../img/main-bg.png"), #0069D4;
  background-blend-mode: multiply, normal;
}
#header .inner .sp-menu .company-info .f-24 {
  font-size: 24px;
}
#header .inner .sp-menu .company-info .f-36 {
  font-size: 36px;
}
#header .inner .sp-menu .company-info .f-20 {
  font-size: 20px;
}
#header .inner .sp-menu .company-info .f-16 {
  font-size: 16px;
}

.fixed-btns {
  position: fixed;
  z-index: 499;
  right: 0;
  top: 230px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 1900px) {
  .fixed-btns {
    top: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .fixed-btns {
    display: none;
  }
}
.fixed-btns a {
  padding: 42px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: padding 0.3s;
}
.fixed-btns a span {
  writing-mode: vertical-lr;
  color: #fff;
  letter-spacing: 5px;
}
.fixed-btns a span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 100%;
  height: 15px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2210%22%20height%3D%2215%22%20viewBox%3D%220%200%2010%2015%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%2013.05L8.6%207.02L1%201V13.05Z%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E") center/contain no-repeat;
  opacity: 0;
  transition: top 0.3s, opacity 0.3s;
}
.fixed-btns a::before, .fixed-btns a::after {
  content: "";
  position: absolute;
  transform: skewY(-15deg);
}
.fixed-btns a::before {
  z-index: -2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.fixed-btns a::after {
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.3019607843);
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 10px;
  transition: height 0.3s;
}
.fixed-btns a:hover {
  padding-top: 62px;
  padding-bottom: 22px;
}
.fixed-btns a:hover::after {
  height: 40px;
}
.fixed-btns a:hover span::before {
  top: 15px;
  opacity: 1;
}
.fixed-btns a.btn-teal::before {
  background: url("../img/main-bg.png"), #4EA392;
  background-blend-mode: multiply, normal;
}
.fixed-btns a.btn-blue {
  margin-top: 20px;
}
@media screen and (max-width: 1900px) {
  .fixed-btns a.btn-blue {
    margin-top: 2rem;
  }
}
.fixed-btns a.btn-blue::before {
  background: url("../img/main-bg.png") fixed, #0069D4;
  background-blend-mode: multiply, normal;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: url(../img/main-bg-blue.png) center/cover no-repeat, #008FE9;
}
#loading .kagoshima {
  position: relative;
  width: 16.16vw;
  height: 20.82vw;
}
#loading .kagoshima .svg-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 1s 1.6s ease-in-out;
}
#loading .kagoshima .svg-1 .svg-elem-2 {
  stroke-width: 2px;
  opacity: 0;
  transition: stroke-width 1s 1.6s linear, opacity 1s;
}
#loading .wave {
  position: absolute;
  top: 42%;
  left: 60%;
  width: 17%;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
#loading .wave::before, #loading .wave::after {
  content: "";
  border: 0.41vw rgba(255, 255, 255, 0) solid;
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0px;
  transition: border 1s 2.3s;
}
#loading .wave::before {
  transform: scale(1, 1);
  opacity: 1;
  animation: spWaveBe 0.6s infinite linear;
}
#loading .wave::after {
  transform: scale(0, 0);
  opacity: 0;
  animation: spWaveAf 0.6s infinite linear;
}
#loading .fukunaga {
  position: absolute;
  right: 33%;
  bottom: 54%;
  padding-bottom: 4.5vw;
  padding-right: 8vw;
  color: rgba(255, 255, 255, 0);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.73vw;
  font-weight: bold;
  line-height: 1;
  transition: color 0.5s 2.5s, text-shadow 0.5s 2.5s;
  white-space: nowrap;
}
#loading .fukunaga br {
  display: none;
}
#loading .svg-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36.71vw;
  height: 3.69vw;
}
#loading .svg-2 .svg-elem-2-1 {
  stroke-dashoffset: 276.6485290527px;
  stroke-dasharray: 276.6485290527px;
  transition: stroke-dashoffset 0.5s linear 2.5s;
}
#loading.active .kagoshima .svg-1 {
  transform: translateY(21vw) scale(10);
}
#loading.active .kagoshima .svg-1 .svg-elem-1 {
  animation: loading-svg-stroke-1 1.7s linear 0s both;
}
#loading.active .kagoshima .svg-1 .svg-elem-2 {
  opacity: 1;
  stroke-width: 0.03rem;
  animation: loading-svg-stroke-2 1.7s linear 0s both;
}
#loading.active .wave::before, #loading.active .wave::after {
  border-color: #fff;
}
#loading.active .fukunaga {
  color: #fff;
  text-shadow: 0 0 0.1em #0069D4;
}
#loading.active .svg-2 .svg-elem-2-1 {
  stroke-dashoffset: 553.2970581055px;
}
@media screen and (max-width: 768px) {
  #loading .kagoshima {
    width: 118px;
    height: 152px;
  }
  #loading .wave {
    top: 40%;
    left: 94%;
  }
  #loading .wave::before, #loading .wave::after {
    border-width: 2px;
  }
  #loading .fukunaga {
    right: 3%;
    bottom: 53%;
    padding-bottom: 25px;
    padding-right: 36px;
    font-size: 20px;
  }
  #loading .fukunaga br {
    display: block;
  }
  #loading .svg-2 {
    width: 155px;
    height: 27px;
  }
  #loading .svg-2 .svg-elem-2-1 {
    stroke-width: 2px;
  }
  #loading.active .kagoshima .svg-1 {
    transform: translate(40px, 150px) scale(10);
  }
}
@keyframes loading-svg-stroke-1 {
  0% {
    stroke-dashoffset: 542px;
    stroke-dasharray: 542px;
  }
  100% {
    stroke-dashoffset: 1084px;
    stroke-dasharray: 542px;
  }
}
@keyframes loading-svg-stroke-2 {
  0% {
    stroke-dashoffset: 754.5584716797px;
    stroke-dasharray: 754.5584716797px;
  }
  100% {
    stroke-dashoffset: 1509.1169433594px;
    stroke-dasharray: 754.5584716797px;
  }
}
@keyframes spWaveBe {
  0% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5, 1.5);
    opacity: 0;
  }
}
@keyframes spWaveAf {
  0% {
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
#footer {
  padding-top: 225px;
  position: relative;
  overflow: hidden;
  z-index: 5;
}
@media screen and (max-width: 1900px) {
  #footer {
    padding-top: 22.5rem;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding-top: 0;
  }
}
#footer.top .company-info {
  background: transparent !important;
}
#footer .company-info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding: 80px;
  padding-bottom: 330px;
/*   background: url("../img/main-bg-blue.png") center/cover no-repeat fixed; */
  background: url("../img/main-bg-blue.png") center/cover;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-shadow: 0 0 4px #0069D4;
  line-height: 1.7;
  z-index: 2;
}
#footer .company-info _::-webkit-full-page-media, #footer .company-info _:future, :root #footer .company-info {
  background-attachment: initial;
}
@media screen and (max-width: 1900px) {
  #footer .company-info {
    padding: 8rem;
    padding-bottom: 33rem;
  }
}
@media screen and (max-width: 1024px) {
  #footer .company-info {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  #footer .company-info {
    padding: 4rem 2.4rem 200px;
  }
}
#footer .company-info::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40vw;
  max-height: 900px;
  z-index: -1;
  background: url(../img/common/footer_bg.png) bottom/contain no-repeat;
}
@media screen and (max-width: 768px) {
  #footer .company-info::before {
    height: 179px;
    min-height: 33.9vw;
    background-image: url(../img/common/footer_bg-sp.png);
    background-size: cover;
  }
}
#footer .company-info > * {
  display: block;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
#footer .company-info p {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #footer .company-info p.company-address {
    font-size: 1.6rem;
  }
  #footer .company-info p.company-address .f-36, #footer .company-info p.company-address .f-28 {
    font-size: 2rem;
  }
}
#footer .company-address {
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #footer .company-address {
    line-height: 1.3;
  }
}
#footer .footer-main {
  --bg: #0069D4;
/*   background: url("../img/main-bg.png") fixed, var(--bg); */
  background: url("../img/main-bg.png") center/cover, var(--bg);
  background-blend-mode: multiply, normal;
  border-radius: 0px;
  padding: 72px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1900px) {
  #footer .footer-main {
    padding: 7.2rem 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  #footer .footer-main {
    padding: 0;
  }
}
#footer .footer-main .footer-links-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  max-width: 1052px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #footer .footer-main .footer-links-container {
    display: none;
  }
}
#footer .footer-main .footer-links-container .footer-column {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 56px;
  font-size: 16px;
}
@media screen and (max-width: 1900px) {
  #footer .footer-main .footer-links-container .footer-column {
    gap: 5.6rem;
  }
}
#footer .footer-main .footer-links-container .footer-column a {
  color: inherit;
  font-size: inherit;
}
#footer .footer-main .footer-links-container .footer-column a:hover {
  color: #cccccc !important;
}
#footer .footer-main .footer-links-container .footer-column .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  border-top: 1px solid #FFFFFF;
}
@media screen and (max-width: 1900px) {
  #footer .footer-main .footer-links-container .footer-column .wrap {
    gap: 0.8rem;
  }
}
#footer .footer-main .footer-links-container .footer-column .wrap .sub-ttl {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0px;
  padding-top: 10px;
  gap: 8px;
  font-size: 26px;
  color: #fff;
}
@media screen and (max-width: 1900px) {
  #footer .footer-main .footer-links-container .footer-column .wrap .sub-ttl {
    gap: 0.8rem;
    padding-top: 1rem;
  }
}
#footer .footer-main .footer-links-container .footer-column .wrap .sub-ttl .title-icon {
  width: 10px;
}
#footer .footer-main .footer-links-container .footer-column .wrap .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
}
@media screen and (max-width: 1900px) {
  #footer .footer-main .footer-links-container .footer-column .wrap .footer-links {
    gap: 1.6rem;
  }
}
#footer .footer-main .footer-links-container .footer-column .wrap .footer-links ul li a {
  color: #fff;
  display: block;
  margin-bottom: 8px;
  padding-left: 16px;
  line-height: 2;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media screen and (max-width: 1900px) {
  #footer .footer-main .footer-links-container .footer-column .wrap .footer-links ul li a {
    padding-left: 1.6rem;
    text-underline-offset: 0.4rem;
  }
}
#footer .footer-main .footer-links-container .footer-column .wrap .footer-links ul li a::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: bold;
}
#footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 4px;
}
@media screen and (max-width: 1900px) {
  #footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group {
    gap: 0.4rem;
  }
}
#footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group .link {
  color: #fff;
  margin: 0;
  padding: 0;
  position: relative;
  padding-left: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1900px) {
  #footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group .link {
    padding-left: 1.6rem;
    text-underline-offset: 0.4rem;
  }
}
#footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group .link::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: bold;
}
#footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group .link:hover {
  color: #cccccc;
}
#footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group ul {
  width: 100%;
  padding-left: 16px;
}
@media screen and (max-width: 1900px) {
  #footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group ul {
    padding-left: 1.6rem;
  }
}
#footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group ul li a {
  display: block;
  color: #fff;
  position: relative;
  padding-left: 16px;
  margin-top: 4px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}
@media screen and (max-width: 1900px) {
  #footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group ul li a {
    padding-left: 1.6rem;
    margin-top: 0.4rem;
  }
}
#footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group ul li a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 100%;
  top: 0;
  left: 0;
  display: inline-block;
  margin-right: 8px;
  background: url("../img/footer-link-item.svg") center/contain no-repeat;
}
@media screen and (max-width: 1900px) {
  #footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group ul li a::before {
    width: 1.2rem;
  }
}
#footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group ul li a span.f-16 {
  color: #fff;
  transition: color 0.3s ease-in-out;
}
#footer .footer-main .footer-links-container .footer-column .wrap .footer-links .link-group ul li a:hover span.f-16 {
  color: #cccccc;
}
#footer .footer-main .footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  margin-top: 72px;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 1900px) {
  #footer .footer-main .footer-copyright {
    padding: 4.8rem 4rem;
    margin-top: 6.2rem;
  }
  #footer .footer-main .footer-copyright p {
    font-size: inherit;
    line-height: 1.7;
  }
}
@media screen and (max-width: 1024px) {
  #footer .footer-main .footer-copyright {
    margin-top: 0;
  }
}

#top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: block;
  width: 78px;
  height: 78px;
  background: url(../img/common/icon-top.svg) center/contain no-repeat;
  z-index: 10;
  font-size: 0;
}
@media print, screen and (min-width: 1025px) {
  #top {
    display: none !important;
  }
}
#top.absolute {
  position: absolute;
  top: 25%;
}

#page-contact .section .sec-tit {
  margin-bottom: 40px;
}
#page-contact .section .sec-text {
  font-size: 3.2rem;
  margin-bottom: 12.8rem;
}
#page-contact .section .sec-nav {
  display: flex;
  gap: 0 24px;
  justify-content: center;
  margin-bottom: 12.8rem;
}
@media only screen and (max-width: 768px) {
	#page-contact .section .sec-nav{
		gap: 0 1rem;
		margin-bottom: 3rem;
	}
}
#page-contact .section .sec-nav .nav-item {
  display: inline-block;
  font-size: 3.2rem;
  padding: 8px 26px 16px;
  border: 2px solid #00568C;
  border-radius: 8px;
  color: #00568C;
  background: #BCD7E7;
  position: relative;
}
@media only screen and (max-width: 768px) {
	#page-contact .section .sec-nav .nav-item{
		padding: 3px 8px 15px;
		font-size: 1.6rem
	}
}
#page-contact .section .sec-nav .nav-item::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 2px;
  background: #00568C;
  bottom: 14px;
  left: calc(50% - 17px);
}
@media only screen and (max-width: 768px) {
	#page-contact .section .sec-nav .nav-item::before {
		width: 20px;
		bottom: 10px;
		left: calc(50% - 10px);
	}
}
#page-contact .section .sec-nav .nav-item.current {
  pointer-events: none;
  font-weight: 700;
  background: #fff;
}
#page-contact .section .sec-nav .nav-item.current::before, #page-contact .section .sec-nav .nav-item.current::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 19px;
  background: #00568C;
  border-radius: 1px;
  bottom: 14px;
  left: calc(50% - 1px);
  transform-origin: bottom center;
}
@media only screen and (max-width: 768px) {
	#page-contact .section .sec-nav .nav-item.current::before, #page-contact .section .sec-nav .nav-item.current::after {
		width: 2px;
		height: 12px;
		bottom: 9px;
	}
}
#page-contact .section .sec-nav .nav-item.current::before {
  transform: rotate(60deg);
}
#page-contact .section .sec-nav .nav-item.current::after {
  transform: rotate(-60deg);
}
#page-contact .section .sec-tit-2 {
  margin-bottom: 8rem;
}
#page-contact .section .sec-step {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
#page-contact .section .sec-step .step-item {
  width: 378px;
  height: 100px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22378%22%20height%3D%22100%22%20viewBox%3D%220%200%20378%20100%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M378%2050L350%20100H0L28%2050L0%200H350L378%2050Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M378%2050L350%20100H0L28%2050L0%200H350L378%2050ZM30.292%2050L3.41211%2098H348.827L375.707%2050L348.827%202H3.41211L30.292%2050Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E") left/100% 100% no-repeat;
}
#page-contact .section .sec-step .step-item.current {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22378%22%20height%3D%22100%22%20viewBox%3D%220%200%20378%20100%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M378%2050L350%20100H0L28%2050L0%200H350L378%2050Z%22%20fill%3D%22black%22%2F%3E%3Cpath%20d%3D%22M378%2050L350%20100H0L28%2050L0%200H350L378%2050ZM30.292%2050L3.41211%2098H348.827L375.707%2050L348.827%202H3.41211L30.292%2050Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  color: #fff;
}
#page-contact .section .sec-step .step-item:first-child {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22378%22%20height%3D%22100%22%20viewBox%3D%220%200%20378%20100%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M378%2050L350%20100H0V0H350L378%2050Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M378%2050L350%20100H0V0H350L378%2050ZM2%2098H348.827L375.707%2050L348.827%202H2V98Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
}
#page-contact .section .sec-step .step-item:first-child.current {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22378%22%20height%3D%22100%22%20viewBox%3D%220%200%20378%20100%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M350%200L378%2050L350%20100H0V0H350Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
}
#page-contact .section .sec-step .step-item:last-child {
  width: 350px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22350%22%20height%3D%22100%22%20viewBox%3D%220%200%20350%20100%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M350%20100H0L28%2050L0%200H350V100Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M350%200V100H0L28%2050L0%200H350ZM30.292%2050L3.41211%2098H348V2H3.41211L30.292%2050Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
}
#page-contact .section .sec-step .step-item:last-child.current {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22350%22%20height%3D%22100%22%20viewBox%3D%220%200%20350%20100%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M350%20100H0L28%2050L0%200H350V100Z%22%20fill%3D%22black%22%2F%3E%3Cpath%20d%3D%22M350%200V100H0L28%2050L0%200H350ZM30.292%2050L3.41211%2098H348V2H3.41211L30.292%2050Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
}
#page-contact .section .sec-form .p-country-name {
  display: none;
}
#page-contact .section .sec-form .form-border {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid #000;
}
#page-contact .section .sec-form .form-item {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
#page-contact .section .sec-form .form-item + .form-item {
  margin-top: 4rem;
}
#page-contact .section .sec-form .form-item-type {
  max-width: 900px;
  justify-content: space-around;
}
#page-contact .section .sec-form .form-item-type .form-left,
#page-contact .section .sec-form .form-item-type .form-right {
  width: -moz-fit-content;
  width: fit-content;
}
#page-contact .section .sec-form .form-left {
  width: 540px;
}
#page-contact .section .sec-form .form-tit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 3rem;
  flex-wrap: wrap;
  font-size: 28px;
  font-weight: 700;
  margin-right: 16px;
}
#page-contact .section .sec-form .form-tit.required::after {
  content: "必須";
  display: inline-block;
  padding: 0 10px;
  background: #FF8D54;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 2.62;
}
#page-contact .section .sec-form .form-right {
  width: 660px;
}
#page-contact .section .sec-form .form-right .f-postcode {
  width: 20rem;
}
#page-contact .section .sec-form .form-right .f-textarea {
  height: 200px;
  display: block;
}
#page-contact .section .sec-form .form-right .f-btn {
  display: inline-block;
  padding: 0 20px;
  background: #000;
  border-radius: 10px;
  color: #fff;
  font-size: inherit;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 2.41;
}
#page-contact .section .sec-form .form-note {
  color: #666666;
  margin-top: 10px;
}
#page-contact .section .sec-form .form-postcode-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
#page-contact .section .sec-form .form-privacy .privacy-box {
  margin: 5rem auto;
  border: 1px solid #000;
  background: #fff;
  max-width: 1000px;
  max-height: 500px;
  padding: 5rem;
  overflow-y: scroll;
  color: #666666;
}
#page-contact .section .sec-form .form-privacy .privacy-box .privacy-tit {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5rem;
  text-align: center;
}
#page-contact .section .sec-form .form-privacy .privacy-box .privacy-text {
  font-size: 16px;
  line-height: 1.6;
}
#page-contact .section .sec-form .form-privacy .privacy-check {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  position: relative;
}
#page-contact .section .sec-form .form-privacy .privacy-check::before {
  content: "必須";
  display: inline-block;
  padding: 0 10px;
  background: #FF8D54;
  border-radius: 5px;
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  line-height: 2.52;
  margin-right: 30px;
  height: -moz-fit-content;
  height: fit-content;
  white-space: nowrap;
}
#page-contact .section .sec-form .form-privacy .error {
  display: block;
  text-align: center;
}
#page-contact .section .sec-form .form-btns {
  display: flex;
  justify-content: center;
  gap: 4rem;
  text-align: center;
  margin: 8rem 0;
}
#page-contact .section .sec-tel {
  border: 2px solid #000;
  border-radius: 30px;
  padding: 24px 10px;
  margin: 0 auto 14.4rem;
  text-align: center;
}
#page-contact .section .sec-tel .tel-top {
  font-size: 7.2rem;
  margin-bottom: 24px;
  line-height: 1;
}
#page-contact .section .sec-tel .tel-bottom {
  font-size: 24px;
}
#page-contact .section .sec-tel .tel-bottom span + span {
  margin-left: 50px;
}
@media print, screen and (max-width: 1024px) {
  #page-contact .section .sec-text {
    font-size: 26px;
    margin-bottom: 75px;
  }
  #page-contact .section .sec-step .step-item {
    height: 75px;
    font-size: 20px;
  }
  #page-contact .section .sec-form .form-border {
    padding: 40px 0;
  }
  #page-contact .section .sec-form .form-item {
    flex-direction: column;
  }
  #page-contact .section .sec-form .form-item + .form-item {
    margin-top: 30px;
  }
  #page-contact .section .sec-form .form-left {
    width: 100%;
  }
  #page-contact .section .sec-form .form-tit {
    font-size: 24px;
    margin-bottom: 8px;
  }
  #page-contact .section .sec-form .form-tit.required::after {
    padding: 0 4px;
    line-height: 1.62;
  }
  #page-contact .section .sec-form .form-right {
    width: 100%;
  }
  #page-contact .section .sec-form .form-right .f-postcode {
    width: 190px;
  }
  #page-contact .section .sec-form .form-right .f-btn {
    font-size: 20px;
    padding: 0 18px;
    line-height: 2.87;
    margin-left: 31px;
  }
  #page-contact .section .sec-form .form-note {
    font-size: 20px;
    margin-top: 0;
  }
  #page-contact .section .sec-form .form-postcode-box {
    font-size: 24px;
    gap: 8px;
  }
  #page-contact .section .sec-form .form-postcode-box .f-input {
    margin-right: -31px;
  }
  #page-contact .section .sec-form .form-privacy .privacy-box {
    margin: 40px auto;
    padding: 36px;
  }
  #page-contact .section .sec-form .form-privacy .privacy-box .privacy-tit {
    font-size: 23px;
    margin-bottom: 36px;
  }
  #page-contact .section .sec-form .form-privacy .privacy-check {
    font-size: 22px;
  }
  #page-contact .section .sec-form .form-privacy .privacy-check::before {
    padding: 0 4px;
    font-size: 16px;
    line-height: 1.625;
    margin-right: 8px;
  }
  #page-contact .section .sec-form .form-btns {
    margin: 60px 0;
  }
  #page-contact .section .sec-tel {
    padding: 32px 10px;
    margin-bottom: 9rem;
  }
  #page-contact .section .sec-tel .tel-top {
    font-size: 52px;
    display: block;
    margin-bottom: 21px;
  }
  #page-contact .section .sec-tel .tel-bottom {
    display: inline-block;
    text-align: left;
  }
  #page-contact .section .sec-tel .tel-bottom span {
    display: block;
  }
  #page-contact .section .sec-tel .tel-bottom span + span {
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  #page-contact .section .sec-tit {
    font-size: 28px;
  }
  #page-contact .section .sec-text {
    font-size: 20px;
    margin-bottom: 35px;
  }
  #page-contact .section .sec-tit-2 {
    margin-bottom: 70px;
  }
  #page-contact .section .sec-step .step-item {
    height: 50px;
    font-size: 16px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22121%22%20height%3D%2250%22%20viewBox%3D%220%200%20121%2050%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M120.892%2025L111.892%2050H0L9.19238%2024.998L0.000976562%200H111.892L120.892%2025Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M120.892%2025L111.892%2050H0L9.19238%2024.998L0.000976562%200H111.892L120.892%2025ZM9.79004%2024.7783L9.87012%2024.998L9.79004%2025.2178L0.912109%2049.3633H111.444L120.215%2025L111.444%200.636719H0.913086L9.79004%2024.7783Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  }
  #page-contact .section .sec-step .step-item.current {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22121%22%20height%3D%2250%22%20viewBox%3D%220%200%20121%2050%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M120.892%2025L111.892%2050H0L9.19238%2024.998L0.000976562%200H111.892L120.892%2025Z%22%20fill%3D%22black%22%2F%3E%3Cpath%20d%3D%22M120.892%2025L111.892%2050H0L9.19238%2024.998L0.000976562%200H111.892L120.892%2025ZM9.79004%2024.7783L9.87012%2024.998L9.79004%2025.2178L0.912109%2049.3633H111.444L120.215%2025L111.444%200.636719H0.913086L9.79004%2024.7783Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  }
  #page-contact .section .sec-step .step-item:first-child {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22121%22%20height%3D%2250%22%20viewBox%3D%220%200%20121%2050%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M121%2025L112%2050H0V0H112L121%2025Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M121%2025L112%2050H0V0H112L121%2025ZM0.636719%2049.3633H111.553L120.323%2025L111.553%200.636719H0.636719V49.3633Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  }
  #page-contact .section .sec-step .step-item:first-child.current {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22120%22%20height%3D%2250%22%20viewBox%3D%220%200%20120%2050%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M111%200L120%2025L111%2050H0V0H111Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  }
  #page-contact .section .sec-step .step-item:last-child {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22111%22%20height%3D%2250%22%20viewBox%3D%220%200%20111%2050%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M111%2050H0L9%2025L0%200H111V50Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M111%200V50H0L9%2025L0%200H111ZM9.59863%2024.7842L9.67676%2025L9.59863%2025.2158L0.905273%2049.3633H110.363V0.636719H0.905273L9.59863%2024.7842Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  }
  #page-contact .section .sec-step .step-item:last-child.current {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22111%22%20height%3D%2250%22%20viewBox%3D%220%200%20111%2050%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M111%2050H0L9%2025L0%200H111V50Z%22%20fill%3D%22black%22%2F%3E%3Cpath%20d%3D%22M111%200V50H0L9%2025L0%200H111ZM9.59863%2024.7842L9.67676%2025L9.59863%2025.2158L0.905273%2049.3633H110.363V0.636719H0.905273L9.59863%2024.7842Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  }
  #page-contact .section .sec-form .form-border {
    padding: 30px 0;
  }
  #page-contact .section .sec-form .form-left {
    width: 100%;
  }
  #page-contact .section .sec-form .form-tit {
    font-size: 20px;
  }
  #page-contact .section .sec-form .form-right .f-postcode {
    width: 180px;
  }
  #page-contact .section .sec-form .form-right .f-btn {
    font-size: 16px;
  }
  #page-contact .section .sec-form .form-note {
    font-size: 16px;
  }
  #page-contact .section .sec-form .form-privacy .privacy-box {
    padding: 24px;
  }
  #page-contact .section .sec-form .form-privacy .privacy-box .privacy-tit {
    font-size: 20px;
    margin-bottom: 24px;
  }
  #page-contact .section .sec-form .form-privacy .privacy-check {
    font-size: 16px;
  }
  #page-contact .section .sec-form .form-btns {
    margin: 40px 0;
  }
  #page-contact .section .sec-form .form-btns .confirm {
    max-width: 177px;
    padding: 19px 10px;
  }
  #page-contact .section .sec-form .form-btns .confirm span::after {
    display: inline-block;
    margin-left: 8px;
  }
  #page-contact .section .sec-tel {
    margin-bottom: 4rem;
    padding: 5rem 0;
    white-space: nowrap;
  }
  #page-contact .section .sec-tel .tel-top {
    margin-bottom: 2.4rem;
    font-size: 3.2rem;
  }
  #page-contact .section .sec-tel .tel-bottom {
    font-size: 2.4rem;
  }
}/*# sourceMappingURL=style.css.map */