@charset "UTF-8";
/*------------------------------------------------------------------------
// Base
  ├ reset
  ├ index
  └ base
------------------------------------------------------------------------*/
/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  color: #363636;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

a {
  color: #363636;
  text-decoration: none;
  color: #363636;
  transition: all 0.7s;
  cursor: pointer;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
}
img.self-size {
  max-width: 100%;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  width: 100%;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

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

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

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

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

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

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

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*------------------------------------------------------------------------
// module
  ├ btn
  ├ element
  ├ footer
  ├ gnav
  ├ hamburger
  ├ header
  ├ index
  ├ loading
  ├ logo
  ├ section
  └ spmenu
------------------------------------------------------------------------*/
.footer {
  padding: 26px 15px;
  background: #363636;
}
@media screen and (min-width: 768px), print {
  .footer {
    padding: 17px 15px;
  }
}

.footer-copyright__wrapper {
  text-align: center;
}
.footer-copyright__wrapper small {
  font-weight: 500;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 2.25;
  color: #fff;
}

.header {
  height: 100px;
  position: fixed;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  top: 0;
}
@media screen and (min-width: 768px), print {
  .header {
    height: 175px;
  }
}

.header__inner {
  max-width: 1400px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  margin-top: 5px;
}
@media screen and (min-width: 768px), print {
  .header__inner {
    margin-top: 30px;
  }
}

.header__logo {
  width: 50px;
}
.header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .header__logo {
    width: 140px;
  }
}

.gnav__list {
  display: none;
}
@media screen and (min-width: 768px), print {
  .gnav__list {
    display: flex;
  }
}

.gnav__item {
  margin-right: 2em;
  margin-top: 10px;
}
.gnav__item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 1050px), print {
  .gnav__item {
    margin-right: 5em;
  }
}
.gnav__item a {
  text-transform: capitalize;
  font-size: clamp(14px, 3vw, 16px);
  color: #000;
  font-weight: 500;
  text-shadow: #9b924f 1px 0 10px;
}

.hamburger {
  cursor: pointer;
  height: 70px;
  z-index: 100000;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
}
@media screen and (min-width: 768px), print {
  .hamburger {
    padding-top: 20px;
  }
}

@media screen and (min-width: 768px), print {
  .hamburger {
    display: none;
  }
}

.hamburger__line {
  position: relative;
  width: 33px;
  height: 1px;
  background: #1e1e1e;
}

.hamburger__line::before,
.hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  background: #1e1e1e;
  height: 1px;
  width: 33px;
  transition: transform 0.3s;
}

.hamburger__line::before {
  top: -10px;
}

.hamburger__line::after {
  bottom: -10px;
  left: 13px;
  width: 20px;
}

/*閉じる*/
/*aria-expandedの状態でスタイルを適用*/
.hamburger[aria-expanded=true] .hamburger__line {
  background: transparent !important;
}

.hamburger[aria-expanded=true] .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
  transition: all 0.5s ease-in-out;
  background: #1e1e1e !important;
}

.hamburger[aria-expanded=true] .hamburger__line::after {
  bottom: 0;
  left: 0;
  width: 33px;
  transform: rotate(-45deg);
  transition: all 0.5s ease-in-out;
  background: #1e1e1e !important;
}

.spmenu {
  display: none;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.spmenu--active {
  display: block;
  opacity: 1;
  right: 0;
}

.spmenu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}

.spmenu__item {
  margin-top: 40px;
}

.spmenu__link {
  text-transform: capitalize;
  font-size: clamp(14px, 3vw, 16px);
  color: #000;
  font-weight: 500;
}

.current {
  border-bottom: 1px solid #b9ae57;
  display: inline-block;
}

.header ._white {
  color: #fff;
}
.header ._white .hamburger__line,
.header ._white .hamburger__line::before,
.header ._white .hamburger__line::after {
  background: #fff;
}

.is-fixed {
  background-image: url("../img/common/header-bg.png");
  height: 80px;
  background-position: 90%;
}
@media screen and (min-width: 768px), print {
  .is-fixed .header__inner {
    margin-top: 5px;
    align-items: center;
  }
}
@media screen and (min-width: 768px), print {
  .is-fixed .header__logo {
    width: 60px;
  }
}
.is-fixed .gnav__item a {
  text-shadow: none;
}
.is-fixed ._white {
  color: #000;
}
.is-fixed ._white .hamburger__line,
.is-fixed ._white .hamburger__line::before,
.is-fixed ._white .hamburger__line::after {
  background: #1e1e1e;
}

.btn {
  color: #363636;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-align: center;
  width: 200px;
  height: 42px;
  background: #fff;
  line-height: 42px;
  margin: auto;
  border: 1px solid rgba(0, 0, 0, 0.5);
  position: relative;
  display: block;
  transition: 0.5s;
  text-decoration: none;
  text-transform: uppercase;
  background-color: rgba(84, 190, 238, 0);
}
@media screen and (min-width: 1050px), print {
  .btn {
    font-size: 14px;
    width: 250px;
    height: 53px;
    line-height: 53px;
  }
}

.btn:after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 13px;
  background-image: url("../img/common/btn-arrow.png");
  background-position: center;
  background-size: cover;
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.5s;
}

._btn-white {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
._btn-white:after {
  background-image: url("../img/common/btn-arrow-white.png");
}

.btn:hover:after {
  right: -60px;
}

.sp-absolute {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px), print {
  .sp-absolute {
    position: static;
    transform: translate(0);
  }
}

.btn-contact {
  width: 234px;
  height: 42px;
  line-height: 42px;
}
@media screen and (min-width: 768px), print {
  .btn-contact {
    width: 286px;
    height: 53px;
    line-height: 53px;
  }
}

/* pagination
------------------------------------------------------ */
.pagination {
  margin-top: 20px;
}
@media screen and (min-width: 768px), print {
  .pagination {
    margin-top: 80px;
  }
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .nav-links a:hover {
  color: #716304;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #cfcfcf;
  font-size: min(3.7333333333vw, 14px);
  margin: 0 2px;
  padding: 0 0.5em;
  min-width: min(10.6666666667vw, 40px);
  height: min(10.6666666667vw, 40px);
  font-weight: bold;
  text-decoration: none;
}
.page-numbers.current {
  background-color: #363636;
  color: #fff;
}
.page-numbers.dots {
  min-width: 0;
  background: none;
  padding: 0;
  border: 0;
}
.page-numbers.prev {
  padding: 0 0.8em;
}
.page-numbers.next {
  padding: 0 1em;
}

/* breadcrumb
------------------------------------------------------ */
.breadcrumb {
  max-width: 1240px;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 11px;
  margin: auto;
  box-sizing: content-box;
}
@media screen and (min-width: 768px), print {
  .breadcrumb {
    padding-top: 28px;
  }
}
.breadcrumb a {
  font-size: 12px;
  font-weight: 500;
  color: #404040;
  margin: 0 0.5em;
}
@media screen and (min-width: 768px), print {
  .breadcrumb a {
    margin: 0 1em;
  }
}
.breadcrumb a[aria-current] {
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #716304;
}
.breadcrumb span {
  font-size: 12px;
  font-weight: 500;
  color: #404040;
  margin: 0 0.5em;
}
@media screen and (min-width: 768px), print {
  .breadcrumb span {
    margin: 0 1em;
  }
}

.breadcrumb__list {
  position: absolute;
}

.breadcrumb__item {
  display: inline-block;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 1em;
  margin-right: 1em;
}

.page {
  color: #404040;
}

/* element
------------------------------------------------------ */
img,
p,
h3 {
  opacity: 0;
  transition: transform 0.5s linear;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.img-blur {
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.8s;
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/* br
------------------------------------------------------ */
.sp-only {
  display: block;
}
@media screen and (min-width: 576px), print {
  .sp-only {
    display: none;
  }
}

.md-only {
  display: block;
}
@media screen and (min-width: 768px), print {
  .md-only {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media screen and (min-width: 576px), print {
  .sp-none {
    display: block;
  }
}

.lg-only {
  display: block;
}
@media screen and (min-width: 1050px), print {
  .lg-only {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .lg-only {
    display: block;
  }
}

.display-non {
  display: none;
}

.ilb {
  display: inline-block;
}

@keyframes move-background {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(2000px);
  }
}
@keyframes move-background-company {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-2000px);
  }
}
.p-front__mv {
  position: relative;
}

.clouds {
  width: 10000px;
  height: 350px;
  background: transparent url("../img/top/cloud03.png") repeat-x;
  background-size: 1000px 350px;
  position: absolute;
  right: -200px;
  top: -100px;
  bottom: 0;
  z-index: 3;
  animation: move-background 200s linear infinite;
}
@media screen and (min-width: 768px), print {
  .clouds {
    width: 10000px;
    height: 600px;
    top: -280px;
    background-size: 1600px 600px;
  }
}
@media screen and (min-width: 1050px), print {
  .clouds {
    top: -280px;
  }
}
@media screen and (min-width: 1200px), print {
  .clouds {
    top: -260px;
    height: 500px;
    background-size: 1600px 500px;
  }
}
@media screen and (min-width: 1350px), print {
  .clouds {
    top: -200px;
  }
}
@media screen and (min-width: 1900px), print {
  .clouds {
    top: -140px;
  }
}

.cloud-company01 {
  width: 10000px;
  height: 180px;
  background: transparent url("../img/top/cloud-company02.png") repeat-x;
  background-size: 600px 180px;
  position: absolute;
  right: 0px;
  top: -40px;
  bottom: 0;
  z-index: 3;
  animation: move-background 150s linear infinite;
}
@media screen and (min-width: 768px), print {
  .cloud-company01 {
    width: 10000px;
    height: 300px;
    top: -100px;
    background-size: 1000px 300px;
  }
}
.cloud-company02 {
  width: 10000px;
  height: 200px;
  background: transparent url("../img/top/cloud-company02.png") repeat-x;
  background-size: 600px 200px;
  position: absolute;
  right: 0;
  top: 500px;
  bottom: 0;
  z-index: 12;
  animation: move-background 150s linear infinite;
}
@media screen and (min-width: 768px), print {
  .cloud-company02 {
    width: 10000px;
    height: 350px;
    top: 600px;
    background-size: 1200px 350px;
  }
}

.cloud-contact {
  width: 100vw;
  height: 100%;
  background: transparent url("../img/top/top-cloud.png") repeat-x;
}

/*------------------------------------------------------------------------
// module
  ├ about
  ├ access
  ├ contact
  ├ faq
  ├ index
  ├ news
  ├ product
  └ thanks
------------------------------------------------------------------------*/
.p-com__philo {
  padding: 46px 0 76px;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-com__philo {
    padding: 156px 0;
  }
}
.p-com__philo .inner {
  max-width: 1260px;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
.p-com__philo .flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px), print {
  .p-com__philo .flex {
    flex-direction: row;
  }
}
.p-com__philo .ttl-area {
  text-align: center;
}
.p-com__philo .ttl-area picture img {
  margin: 26px auto 0;
  width: 161px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .p-com__philo .ttl-area picture img {
    width: 327px;
    height: auto;
    margin: 150px auto 0;
  }
}
.p-com__philo .container-area {
  width: 100%;
  margin-top: 30px;
}
@media screen and (min-width: 768px), print {
  .p-com__philo .container-area {
    width: 70%;
  }
}
.p-com__philo .container {
  list-style: none;
  counter-reset: num;
}
.p-com__philo .container li {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #c3bfba;
  padding: 16px 0.25em 16px 0.5em;
  font-size: clamp(12px, 3vw, 14px);
  counter-increment: num;
}
.p-com__philo .container li::before {
  content: counter(num, decimal) ".";
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: clamp(14px, 3vw, 20px);
  margin-right: 0.5em;
}

.p-com__com {
  padding: 66px 0;
  background-color: #f7f7f7;
}
@media screen and (min-width: 768px), print {
  .p-com__com {
    padding: 156px 0;
  }
}
.p-com__com .inner {
  max-width: 800px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.p-com__com .company__list {
  margin-top: 40px;
}
@media screen and (min-width: 768px), print {
  .p-com__com .company__list {
    margin-top: 80px;
  }
}
.p-com__com .company__item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d2d2d2;
  padding: 15px 0;
}
.p-com__com .company__item:first-child {
  border-top: 1px solid #d2d2d2;
}
.p-com__com .company__date {
  font-weight: 500;
  font-size: clamp(14px, 3vw, 16px);
  width: 130px;
  flex-shrink: 0;
}
@media screen and (min-width: 576px), print {
  .p-com__com .company__date {
    width: 300px;
  }
}
@media screen and (max-width: 575px) {
  .p-com__com .company__date {
    width: max(100px, 27.8%);
  }
}
.p-com__com .company__data {
  font-weight: 500;
  font-size: clamp(12px, 3vw, 14px);
  padding: 0 0 0 10px;
}
@media screen and (min-width: 576px), print {
  .p-com__com .company__data {
    padding: 0;
  }
}

.container-area.container-philosophy {
  /* .container padding-inline 30px; */
  width: calc(100% + 60px);
  margin-left: -30px;
}
@media (min-width: 375px) {
  .container-area.container-philosophy {
    width: calc(100% + 50px);
    margin-left: -25px;
  }
}
@media (min-width: 400px) {
  .container-area.container-philosophy {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
@media (min-width: 430px) {
  .container-area.container-philosophy {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .container-area.container-philosophy li {
    padding-right: 0.25em;
  }
}
@media (min-width: 480px) {
  .container-area.container-philosophy {
    width: 100%;
    margin-left: 0;
  }
  .container-area.container-philosophy li {
    padding-right: 0.5em;
  }
}
@media (min-width: 768px) {
  .container-area.container-philosophy {
    width: 70%;
  }
}

@media screen and (min-width: 768px), print {
  .p-com__com {
    padding-bottom: 66px;
  }
}
@media screen and (min-width: 576px), print {
  .p-com__com {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 575px) {
  .p-com__com {
    padding-bottom: 100px;
  }
  .p-com__com .company__data {
    padding-left: 1em;
  }
}
.p-contact {
  padding: 144px 0;
  /*エラー時*/
}
.p-contact .inner {
  max-width: 1260px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.p-contact .inner .txt {
  text-align: left;
  margin-bottom: 50px;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 768px), print {
  .p-contact .inner .txt {
    font-size: 16px;
  }
}
.p-contact .inner .txt span.caution {
  color: #e21515;
}
.p-contact .form-wrapper {
  margin-top: 10px;
}
.p-contact .contact .blank {
  display: block;
}
.p-contact .contact__container {
  text-align: left;
  border-bottom: 1px solid #bfbfbf;
}
.p-contact .contact__container:nth-child(8) {
  border: 0;
}
.p-contact .input-field p {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 20px 0;
}
@media screen and (min-width: 768px), print {
  .p-contact .input-field p {
    flex-direction: row;
    align-items: center;
  }
}
.p-contact .input-field label:not(.privacy) {
  border: 0;
}
@media screen and (min-width: 768px), print {
  .p-contact .input-field label:not(.privacy) {
    border-right: 1px dotted #6c6c6c;
  }
}
.p-contact .input-field label {
  display: block;
  flex: 1;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
  border-right: 1px dotted #6c6c6c;
  padding: 0 0 6px;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 768px), print {
  .p-contact .input-field label {
    padding: 30px 0;
  }
}
.p-contact .input-field .privacy,
.p-contact .input-field .wpcf7-list-item > label {
  border-right: 0 !important;
}
.p-contact .input-field .privacy-link {
  border-bottom: 1px solid #716304;
  color: #716304;
}
.p-contact .input-field .privacy-link:hover {
  opacity: 0.7;
}
.p-contact .input-field input[type=text],
.p-contact .input-field input[type=email],
.p-contact .input-field textarea {
  display: block;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  cursor: pointer;
  background: #f2f5f7;
  border: 1px solid transparent;
  padding: 18px 16px;
  border-radius: 4px;
  width: 90%;
  color: #b1b1b1;
  font-weight: 500;
  font-size: clamp(12px, 3vw, 16px);
}
@media screen and (min-width: 768px), print {
  .p-contact .input-field input[type=text],
  .p-contact .input-field input[type=email],
  .p-contact .input-field textarea {
    width: 70%;
    margin: 15px 0 0 39px;
    padding: 19px 32px;
  }
}
.p-contact .input-field .wpcf7-form-control-wrap {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .p-contact .input-field .wpcf7-form-control-wrap {
    width: 70%;
  }
}
.p-contact .input-field textarea {
  resize: none;
  height: 136px;
}
.p-contact .require {
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
  color: #363636;
}
.p-contact .wpcf7-form .wpcf7-not-valid {
  background-color: #ffebee; /* 薄い赤色 */
  border-color: #f44336; /* 赤色のボーダー */
}
.p-contact .is-error .input-field input[type=text],
.p-contact .is-error .input-field input[type=email],
.p-contact .is-error .input-field input[type=tel],
.p-contact .is-error .input-field textarea {
  color: #e21515;
  border-color: #e21515;
}
.p-contact .error-text {
  display: none;
  color: #e21515;
  font-weight: 500;
  font-size: clamp(14px, 3vw, 16px);
}
.p-contact .is-error .error-text {
  display: block;
}
.p-contact .wpcf7-not-valid-tip {
  padding-top: 10px;
  color: #e21515;
  font-weight: 500;
  font-size: clamp(14px, 3vw, 16px);
}
@media screen and (min-width: 768px), print {
  .p-contact .wpcf7-not-valid-tip {
    margin: 0 0 0 39px;
  }
}
.p-contact .wpcf7-response-output {
  padding-top: 30px;
  color: #e21515;
  font-weight: 500;
}
.p-contact .wpcf7-form input.wpcf7-not-valid {
  background-color: #ffebee !important;
  border-color: #f44336 !important;
}
@media screen and (min-width: 768px), print {
  .p-contact .contact .blank {
    display: none;
  }
  .p-contact .contact__container {
    padding: 24px 0;
  }
  .p-contact .contact_txt {
    margin: 67px 0 97px;
  }
}
.p-contact ._bg {
  background: #ebf7ff;
  padding: 39px 0;
}
@media screen and (min-width: 768px), print {
  .p-contact ._bg {
    padding: 79px 0;
  }
}
.p-contact .contact_msg {
  line-height: 1;
}

.p-ser_bg {
  background: #ebf7ff;
}
@media screen and (min-width: 768px), print {
  .p-ser_bg {
    background: linear-gradient(180deg, rgb(235, 247, 255), rgb(255, 255, 255));
  }
}

.lb-image {
  opacity: 1;
}

.p-ser_features {
  padding: 145px 0 0;
}
.p-ser_features .inner .btn-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media screen and (min-width: 768px), print {
  .p-ser_features .inner .btn-area {
    flex-direction: row;
    justify-content: center;
  }
}
.p-ser_features .inner .service-features-cloud {
  position: relative;
}
.p-ser_features .inner .service-features-cloud img {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 70%;
  height: auto;
}
@media screen and (min-width: 576px), print {
  .p-ser_features .inner .service-features-cloud img {
    bottom: -25%;
  }
}
@media screen and (min-width: 768px), print {
  .p-ser_features .inner .service-features-cloud img {
    width: 45%;
  }
}
.p-ser_features .inner .btn-ser {
  padding: 20px 96px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.23em;
  background: #b9ae57;
  position: relative;
  width: 280px;
  border: 1px solid #b9ae57;
}
@media screen and (min-width: 768px), print {
  .p-ser_features .inner .btn-ser {
    width: 320px;
  }
}
.p-ser_features .inner .btn-ser:hover {
  border: 1px solid #d1cb96;
  background: #e9e7d5;
  color: #b9ae57;
}
.p-ser_features .inner .btn-ser:hover::after {
  border-bottom: 1px solid #d1cb96;
  border-right: 1px solid #d1cb96;
}
.p-ser_features .inner .btn-ser::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 10px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-90%);
}
.p-ser_features .inner .flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 110px;
  max-width: 1200px;
  padding-inline: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px), print {
  .p-ser_features .inner .flex {
    flex-direction: row;
  }
}
.p-ser_features .inner .body-area {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px), print {
  .p-ser_features .inner .body-area {
    width: 66%;
  }
}
.p-ser_features .inner .body {
  border: 1px solid #aeaeae;
  border-radius: 8px;
  padding: 24px 16px;
  margin-top: 28px;
}
@media screen and (min-width: 768px), print {
  .p-ser_features .inner .body {
    padding: 24px 30px;
  }
}
.p-ser_features .inner .body .ttl {
  font-weight: 600;
  font-size: clamp(16px, 3vw, 18px);
  letter-spacing: 0.14em;
}
.p-ser_features .inner .body .border {
  border-top: 1px solid #716304;
  opacity: 0.7;
  width: 50px;
  margin: 10px 0 0 0;
}
.p-ser_features .inner .body .txt {
  margin-top: 16px;
  font-weight: 500;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 2.1;
}
@media screen and (min-width: 768px), print {
  .p-ser_features .inner .body .txt {
    letter-spacing: 0.14em;
  }
}

.p-ser_management {
  padding: 240px 0 0;
}
.p-ser_management .ttl {
  position: relative;
  text-align: center;
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.p-ser_management .ttl span {
  font-size: clamp(50px, 3vw, 118px);
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  color: #357feb;
  font-weight: 500;
  opacity: 0.14;
  text-transform: capitalize;
}
@media screen and (min-width: 768px), print {
  .p-ser_management .ttl span {
    top: -80px;
    font-size: clamp(82px, 3vw, 118px);
  }
}
.p-ser_management .txt {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 600;
  margin-top: 70px;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  z-index: 1;
  line-height: 2;
  padding: 0 15px 0;
}
.p-ser_management img {
  margin-top: -60px;
}
@media screen and (min-width: 768px), print {
  .p-ser_management img {
    margin-top: -200px;
  }
}

.p-ser_point {
  padding: 30px 0 0;
  max-width: 1000px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.p-ser_point .card-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  gap: 24px;
}
@media screen and (min-width: 768px), print {
  .p-ser_point .card-area {
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 40px;
    margin-top: 70px;
  }
}
.p-ser_point .card {
  border: 1px solid #aeaeae;
  border-radius: 8px;
  padding: 32px 16px;
  max-width: 390px;
  height: 370px;
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .p-ser_point .card {
    padding: 32px;
  }
}
.p-ser_point .ttl {
  letter-spacing: 0.14em;
  font-weight: 600;
}
.p-ser_point .ttl span {
  color: #b9ae57;
  text-transform: uppercase;
}
.p-ser_point .border {
  border-top: 1px solid #716304;
  opacity: 0.7;
  width: 50px;
  margin: 10px 0 0 0;
}
.p-ser_point picture {
  text-align: center;
  display: block;
}
.p-ser_point img {
  width: 268px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 24px;
}
.p-ser_point .txt {
  font-weight: 500;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 2;
  margin-top: 24px;
}
@media screen and (min-width: 768px), print {
  .p-ser_point .txt {
    letter-spacing: 0.14em;
  }
}

.p-ser_development {
  padding: 240px 0 0;
}
.p-ser_development .ttl {
  position: relative;
  text-align: center;
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: 0.1em;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.p-ser_development .ttl span {
  font-size: clamp(50px, 3vw, 118px);
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  color: #357feb;
  font-weight: 500;
  opacity: 0.14;
  text-transform: capitalize;
}
@media screen and (min-width: 768px), print {
  .p-ser_development .ttl span {
    top: -80px;
    font-size: clamp(82px, 3vw, 118px);
  }
}
.p-ser_development .txt {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 600;
  margin-top: 70px;
  text-align: center;
  position: relative;
  z-index: 1;
  line-height: 2;
  padding: 0 15px 0;
}
@media screen and (min-width: 768px), print {
  .p-ser_development .txt {
    letter-spacing: 0.1em;
  }
}
.p-ser_development img {
  margin-top: -170px;
}
@media screen and (min-width: 768px), print {
  .p-ser_development img {
    margin-top: -350px;
  }
}

.p-ser_location {
  padding: 60px 0;
  /*タブのスタイル*/
  /*ラジオボタンを全て消す*/
  /*選択されているタブのスタイル*/
}
@media screen and (min-width: 768px), print {
  .p-ser_location {
    padding: 150px 0 0;
  }
}
.p-ser_location .inner {
  max-width: 1360px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.p-ser_location .tab01 {
  display: flex;
  margin: 40px 20px 20px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.p-ser_location .tab01::after {
  content: "";
  display: block;
  width: 30%;
}
@media screen and (min-width: 768px), print {
  .p-ser_location .tab01 {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
    margin: 80px 20px 20px;
  }
}
.p-ser_location .tab_menu {
  height: 56px;
  line-height: 56px;
  font-size: clamp(14px, 3vw, 16px);
  text-align: center;
  font-weight: 500;
  color: #363636;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  padding: 0 80px 0 0;
}
@media screen and (min-width: 768px), print {
  .p-ser_location .tab_menu {
    padding: 0;
  }
}
.p-ser_location .tab01 label {
  position: relative;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #d2d2d2;
  border-top: 1px solid #d2d2d2;
  display: flex;
  align-items: center;
  margin: 12px 6px;
}
@media screen and (min-width: 768px), print {
  .p-ser_location .tab01 label {
    width: 30%;
    margin: 0;
  }
}
@media screen and (min-width: 1050px), print {
  .p-ser_location .tab01 label {
    width: 18%;
  }
}
.p-ser_location .tab01 label::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 24px;
  height: 1px;
  background: currentColor;
  margin-right: 13.2%;
  position: absolute;
  right: 0px;
  top: 50%;
  transition: all 0.5s;
  color: #716304;
}
@media screen and (min-width: 768px), print {
  .p-ser_location .tab01 label::after {
    margin-right: 6.5%;
    width: 40px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.p-ser_location .tab01 label::before {
  content: "";
  width: 7px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  margin-right: 13.2%;
  position: absolute;
  right: 0px;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
  transition: all 0.5s;
  color: #716304;
}
@media screen and (min-width: 768px), print {
  .p-ser_location .tab01 label::before {
    margin-right: 6.5%;
    top: 50%;
    right: -0.05em;
  }
}
.p-ser_location .tab01 label:hover:after {
  right: -10px;
}
.p-ser_location .tab01 label:hover:before {
  right: -10px;
}
.p-ser_location .tab_menu:hover {
  opacity: 0.75;
}
.p-ser_location [name=tab_menu] {
  display: none;
}
.p-ser_location .tab01:has([data-id="1"]:not(:checked)) ~ #menu01,
.p-ser_location .tab01:has([data-id="2"]:not(:checked)) ~ #menu02,
.p-ser_location .tab01:has([data-id="3"]:not(:checked)) ~ #menu03,
.p-ser_location .tab01:has([data-id="4"]:not(:checked)) ~ #menu04,
.p-ser_location .tab01:has([data-id="5"]:not(:checked)) ~ #menu05,
.p-ser_location .tab01:has([data-id="6"]:not(:checked)) ~ #menu06 {
  display: none;
}
.p-ser_location .tab_menu:has(:checked) {
  color: #716304;
  opacity: 0.7;
}
.p-ser_location .tab-content {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .p-ser_location .tab-content {
    display: grid;
    grid-template-columns: 1fr min(40%, 300px);
    justify-content: center;
  }
}
@media screen and (min-width: 768px), print {
  .p-ser_location .tab-content .content_map {
    grid-area: 2/3;
  }
}
.p-ser_location .tab-content .tab-content_status {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .p-ser_location .tab-content .tab-content_status {
    grid-area: 1/2;
    margin-top: 60px;
  }
}
.p-ser_location .tab-content picture {
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px), print {
  .p-ser_location .tab-content picture {
    text-align: center;
  }
}
.p-ser_location .tab-content img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.p-ser_location .txt-area {
  width: 100%;
}
.p-ser_location .txt-area .ttl {
  border-left: 7px solid #357feb;
  padding-left: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: clamp(16px, 3vw, 20px);
}
.p-ser_location .txt-area .ttl:first-child {
  margin-top: 0;
}
.p-ser_location .txt-area .txt {
  letter-spacing: 0.1em;
  line-height: 2.1;
  font-weight: 500;
  margin-top: 8px;
  font-size: clamp(12px, 3vw, 14px);
  text-align: justify;
}
.p-ser_location .text-card + .text-card {
  margin-top: 1rem;
}
.p-ser_location .text-targetArea {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
  font-size: clamp(12px, 3vw, 14px);
  margin-top: 1rem;
}
@media screen and (min-width: 768px), print {
  .p-ser_location .text-targetArea {
    display: none;
  }
}
.p-ser_location .text-targetArea::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background-color: #619F44;
  display: inline-block;
  margin-top: 0.1em;
}
.p-ser_location .up-pic {
  text-align: right;
  display: block;
}
.p-ser_location .up-pic img {
  width: 90px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .p-ser_location .up-pic img {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .p-ser_location {
    padding-bottom: 66px;
  }
}
@media screen and (min-width: 576px), print {
  .p-ser_location {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 575px) {
  .p-ser_location {
    padding-bottom: 100px;
  }
}
.return-wrapper,
.submit-wrapper {
  position: relative;
  display: inline-block;
}
.return-wrapper input,
.submit-wrapper input {
  color: #363636;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-align: center;
  width: 220px;
  height: 42px;
  background: #fff;
  line-height: 42px;
  margin: auto;
  border: 1px solid rgba(0, 0, 0, 0.5);
  position: relative;
  display: block;
  transition: 0.5s;
  text-decoration: none;
  text-transform: uppercase;
  background-color: rgba(84, 190, 238, 0);
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}
@media screen and (min-width: 1050px), print {
  .return-wrapper input,
  .submit-wrapper input {
    font-size: 14px;
    width: 250px;
    height: 53px;
    line-height: 53px;
  }
}
.return-wrapper:after,
.submit-wrapper:after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 13px;
  background-image: url("../img/common/btn-arrow.png");
  background-position: center;
  background-size: cover;
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.5s;
}
.return-wrapper:hover:after,
.submit-wrapper:hover:after {
  right: -60px;
}

.btn-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.submit-wrapper .wpcf7-spinner {
  display: none;
}

.input-field .content {
  width: 90%;
  display: inline-block;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .input-field .content {
    width: 60%;
    margin: 0 0 0 39px;
  }
}

.p-under__confirm .btn-center {
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px), print {
  .p-under__confirm .btn-center {
    flex-direction: row;
    gap: 100px;
  }
}

.p-pri {
  padding: 137px 0;
}
.p-pri .inner {
  max-width: 1000px;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
.p-pri .ttl {
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.625;
  letter-spacing: 0.05em;
  color: #716304;
  margin-top: 50px;
}
.p-pri .txt {
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: clamp(14px, 3vw, 18px);
  color: #363636;
}
.p-pri .body-inner {
  margin-bottom: 50px;
}
.p-pri .txt-item li {
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: clamp(14px, 3vw, 18px);
  color: #363636;
  list-style: inside;
}

.p-detail {
  padding: 56px 0 76px;
}
@media screen and (min-width: 768px), print {
  .p-detail {
    padding: 137px 0;
  }
}
.p-detail .inner {
  max-width: 1000px;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
.p-detail .ttl {
  font-size: clamp(24px, 3vw, 36px);
  text-align: center;
}
.p-detail .txt {
  margin: 60px 0 82px;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: clamp(14px, 3vw, 18px);
  color: #363636;
}
.p-detail .time-wrapper {
  text-align: right;
}
.p-detail .time-wrapper time {
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 400;
  color: #8d8d8d;
}
.p-detail .body {
  margin-bottom: 50px;
}
.p-detail .body a {
  text-decoration: underline;
}

/* blog-news 各ページ記事部分
------------------------------------------------------ */
h1.blog-detail__ttl,
h1.detail__ttl {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 700;
}

h1.wp-block-heading {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  margin: 50px 0 10px 0;
  text-align: left;
}

h2.wp-block-heading {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin: 50px 0 5px 0;
  text-align: left;
}

.news_detail__inner p,
.news_detail__inner .wp-block-quote cite,
.blog-detail__content-text p,
.blog-detail__content-text .wp-block-quote cite {
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 30px;
}
.news_detail__inner p > a,
.blog-detail__content-text p > a {
  color: #f5a623;
  text-decoration: underline;
  line-height: 1.3;
  font-weight: 500;
}

h3.wp-block-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  border-left: 6px solid #716304;
  padding-left: 10px;
  margin: 50px 0 10px 0;
  text-align: left;
}

h4.wp-block-heading {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  border-bottom: 2px solid #716304;
  margin: 50px 0 10px 0;
  text-align: left;
}

h5.wp-block-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  padding-left: 10px;
  margin: 50px 0 5px 0;
  text-align: left;
}

h6.wp-block-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  padding-left: 10px;
  margin: 50px 0 5px 0;
  text-align: left;
}

.wp-block-quote {
  position: relative;
  margin: 30px 0;
  background: #ebf7ff;
  padding: 27px 26px 27px 74px;
  font-size: 0.9em;
}
.wp-block-quote p {
  display: none;
}

.wp-block-quote:before {
  position: absolute;
  top: -15px;
  left: 20px;
  content: "“";
  font-size: 7em;
  color: #716304;
}

.wp-block-image img {
  aspect-ratio: 400/250;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  margin: 20px 0;
}

.news_detail__inner img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

.p-detail ol {
  list-style: none;
  padding: 0;
  max-width: 590px;
  margin: 36px 0 36px 0;
}
.p-detail ul {
  list-style: none;
  padding: 0;
  max-width: 590px;
  margin: 36px 0 36px 0;
}
.p-detail li {
  padding-left: 39px;
  position: relative;
  text-align: left;
}
.p-detail li:before {
  content: "";
  width: 11px;
  height: 11px;
  display: inline-block;
  background-color: #716304;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 7px;
}

.blog-detail__date {
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  margin-top: 36px;
}

.p-thanks {
  padding: 137px 0;
}
.p-thanks .inner {
  max-width: 1000px;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
.p-thanks .txt {
  margin: 30px 0 82px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: clamp(14px, 3vw, 18px);
  color: #363636;
}

.p-contact-current-page {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
}
.p-contact-current-page p {
  font-weight: 500;
  font-size: clamp(16px, 3vw, 18px);
  letter-spacing: 0.08em;
  color: #919191;
}
.p-contact-current-page .border {
  border-top: 1px solid #909090;
  width: 40px;
}
@media screen and (min-width: 768px), print {
  .p-contact-current-page .border {
    width: 90px;
  }
}
.p-contact-current-page .current-now {
  position: relative;
  color: #363636;
}
.p-contact-current-page .current-now::before {
  content: "";
  display: block;
  width: 35px;
  height: 0;
  border-bottom: 2px solid #363636;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.p-under__mv {
  position: relative;
}

.p-under__mv-catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: calc(100% - 30px);
  max-width: 700px;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  font-size: clamp(32px, 3vw, 48px);
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .p-under__mv-catch {
    font-size: clamp(56px, 3vw, 76px);
  }
}
.p-under__mv-catch .en {
  display: block;
  font-size: clamp(12px, 3vw, 20px);
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}
.p-under__mv-catch .txt {
  font-weight: 600;
  font-size: clamp(12px, 3vw, 14px);
  margin-top: 10px;
  letter-spacing: 0.14em;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  line-height: 2.1;
}
@media screen and (min-width: 768px), print {
  .p-under__mv-catch .txt {
    font-size: clamp(12px, 3vw, 18px);
    margin-top: 30px;
  }
}

.p-under__mv-wrapper picture img {
  height: 270px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .p-under__mv-wrapper picture img {
    height: 495px;
  }
}

.p-under__big-mv-wrapper picture img {
  height: 270px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .p-under__big-mv-wrapper picture img {
    height: 690px;
  }
}

.scroll_down-under {
  display: none;
}
@media screen and (min-width: 768px), print {
  .scroll_down-under {
    bottom: 6% !important;
    display: block;
  }
}

.p-news__news {
  padding: 46px 0 76px;
}
@media screen and (min-width: 768px), print {
  .p-news__news {
    padding: 116px 0;
  }
}
.p-news__news .news-inner {
  max-width: 860px;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
.p-news__news .container-area {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px), print {
  .p-news__news .container-area {
    margin-top: 0;
  }
}
.p-news__news .date {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #8d8d8d;
  margin-bottom: 6px;
}
.p-news__news .txt {
  font-weight: 500;
  color: #363636;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 450px;
  margin-top: 6px;
}
@media screen and (min-width: 768px), print {
  .p-news__news .txt {
    -webkit-line-clamp: 1;
    line-height: 1.3;
  }
}
.p-news__news .container {
  position: relative;
  background: #fff;
  padding: 1.5em 2.3em;
  margin-top: 15px;
  border-top: 1px solid #cfcfcf;
}
.p-news__news .container:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px), print {
  .p-news__news .container {
    padding: 1.5em 6em 1.5em 4.5em;
    margin-top: 13px;
  }
}
@media screen and (min-width: 1050px), print {
  .p-news__news .container {
    padding: 1.5em 13.1em 1.5em 4.5em;
  }
}
.p-news__news .container::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  position: relative;
  width: 24px;
  height: 1px;
  background: currentColor;
  margin-right: 13.2%;
  position: absolute;
  right: 0px;
  top: 25%;
  transition: all 0.5s;
  color: #716304;
}
@media screen and (min-width: 768px), print {
  .p-news__news .container::after {
    margin-right: 6.5%;
    width: 40px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.p-news__news .container::before {
  content: "";
  width: 7px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  margin-right: 13.2%;
  position: absolute;
  right: 0px;
  top: 25%;
  right: -0.05em;
  box-sizing: border-box;
  transition: all 0.5s;
  color: #716304;
}
@media screen and (min-width: 768px), print {
  .p-news__news .container::before {
    margin-right: 6.5%;
    top: 50%;
    right: -0.05em;
  }
}
.p-news__news .container:hover:after {
  right: -20px;
}
.p-news__news .container:hover:before {
  right: -20px;
}

.p-under__contact {
  padding: 0 0 106px;
  background: #f7f7f7;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-under__contact {
    padding: 128px 0 173px;
  }
}
.p-under__contact .contact-cloud .contact-cloud-img {
  position: absolute;
  top: -20%;
  right: 0;
}
@media screen and (min-width: 768px), print {
  .p-under__contact .contact-cloud .contact-cloud-img {
    top: 0%;
  }
}
@media screen and (min-width: 1050px), print {
  .p-under__contact .contact-cloud .contact-cloud-img {
    top: -10%;
  }
}
.p-under__contact .contact__logo {
  width: 15%;
  min-width: 120px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.p-under__contact .contact__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-under__contact .txt {
  font-weight: 500;
  font-size: clamp(12px, 3vw, 16px);
  letter-spacing: 0.14em;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 35px;
  line-height: 3.5;
}

._white {
  color: #fff;
}
._white .jp-ttl {
  color: #fff;
}

.main {
  overflow-x: hidden;
}

.mv__video-pc {
  display: none;
}
@media screen and (min-width: 768px), print {
  .mv__video-pc {
    display: block;
  }
}
@media screen and (min-width: 1200px), print {
  .mv__video-pc {
    width: 100vw;
  }
}

.mv__video-sp {
  width: 100vw;
}
@media screen and (min-width: 768px), print {
  .mv__video-sp {
    display: none;
  }
}

.p-front__mv {
  position: relative;
  overflow: hidden;
  height: 600px;
  width: 100%;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px), print {
  .p-front__mv {
    height: 840px;
    padding-bottom: 6.67vw;
    padding-bottom: 15vw;
    margin-top: 0px;
  }
}
@media screen and (min-width: 768px), print {
  .p-front__mv__wrapper {
    width: 155.6vw;
  }
}
.p-front__mv h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  max-width: 700px;
  z-index: 3;
  font-size: clamp(24px, 3vw, 48px);
  color: #fff;
  font-weight: 600;
  text-align: center;
  text-shadow: #000 1px 0 40px;
}
@media screen and (min-width: 768px), print {
  .p-front__mv h2 {
    top: 45%;
  }
}
.p-front__mv .en {
  font-size: clamp(12px, 3vw, 24px);
  margin-top: 20px;
  color: #fff;
  display: block;
  font-weight: 500;
}
@media screen and (min-width: 768px), print {
  .p-front__mv .en {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px), print {
  .p-front__mv__slide-inner {
    width: 141.6vw;
  }
}
.p-front__mv__video {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 730px;
  filter: brightness(0.7);
}
@media screen and (min-width: 768px), print {
  .p-front__mv__video {
    height: 79.2vw;
  }
}
.p-front__mv .slick {
  width: 100%;
  height: 100%;
}

.scroll_down {
  position: absolute;
  bottom: 10%;
  left: 9%;
}
@media screen and (min-width: 768px), print {
  .scroll_down {
    bottom: 20%;
  }
}

.scroll_down a {
  position: absolute;
  left: -10px;
  bottom: 120px;
  color: #fff;
  font-size: 12px;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (min-width: 768px), print {
  .scroll_down a {
    position: absolute;
    left: -10px;
    bottom: 110px;
    color: #fff;
    font-size: 14px;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    text-decoration: none;
    text-transform: uppercase;
  }
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: -2;
  left: -1px;
  width: 4px;
  height: 18px;
  background: #fff;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 100px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #fff;
}

.p-front__service {
  background: #ebf7ff;
  padding: 116px 0 159px;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-front__service {
    padding: 106px 0 264px;
  }
}
.p-front__service .txt-area {
  margin-bottom: 75px;
}
@media screen and (min-width: 768px), print {
  .p-front__service .txt-area {
    margin-bottom: 110px;
  }
}
.p-front__service .txt {
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.14em;
  text-align: center;
  position: relative;
  z-index: 4;
  margin-top: 34px;
}
.p-front__service .banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-front__service .banner-inner {
    flex-direction: row;
  }
}
.p-front__service .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-front__service .service-cloud {
  position: relative;
}
.p-front__service .service-cloud img {
  position: absolute;
  top: -20%;
  right: 0;
  width: 45%;
  height: auto;
}
@media screen and (min-width: 576px), print {
  .p-front__service .service-cloud img {
    top: -30%;
  }
}
@media screen and (min-width: 768px), print {
  .p-front__service .service-cloud img {
    top: -20%;
  }
}
@media screen and (min-width: 1050px), print {
  .p-front__service .service-cloud img {
    top: -40%;
  }
}
@media screen and (min-width: 1200px), print {
  .p-front__service .service-cloud img {
    top: -50%;
  }
}
.p-front__service .banner {
  position: relative;
  width: 100%;
  height: 175px;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  cursor: pointer;
  display: none;
}
@media screen and (min-width: 768px), print {
  .p-front__service .banner {
    height: 360px;
    display: block;
  }
}
.p-front__service .banner img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  transition: 0.4s ease-in-out;
}
.p-front__service .banner:hover img:nth-of-type(2) {
  opacity: 0 !important;
}
.p-front__service .banner-sp {
  position: relative;
  width: 100%;
  height: 175px;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (min-width: 768px), print {
  .p-front__service .banner-sp {
    height: 360px;
    display: none;
  }
}
.p-front__service .banner-sp img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  transition: 0.4s ease-in-out;
}
.p-front__service .banner-ttl {
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px), print {
  .p-front__service .banner-ttl {
    font-size: clamp(14px, 3vw, 20px);
  }
}
@media screen and (min-width: 1050px), print {
  .p-front__service .banner-ttl {
    font-size: clamp(14px, 3vw, 28px);
  }
}
.p-front__service .banner-en {
  display: block;
  font-weight: 500;
  font-size: clamp(12px, 3vw, 20px);
}
@media screen and (min-width: 768px), print {
  .p-front__service .banner-en {
    font-size: clamp(12px, 3vw, 16px);
  }
}
@media screen and (min-width: 1050px), print {
  .p-front__service .banner-en {
    font-size: clamp(12px, 3vw, 20px);
  }
}

.section--ttl-center {
  font-size: clamp(24px, 3vw, 52px);
  font-weight: 500;
  color: #9b924f;
  text-transform: capitalize;
  text-align: center;
  position: relative;
  z-index: 4;
}

.section--ttl-left {
  font-size: clamp(24px, 3vw, 52px);
  font-weight: 500;
  color: #9b924f;
  text-transform: capitalize;
  text-align: left;
}

.section--ttl-center-sp {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .section--ttl-center-sp {
    text-align: left;
  }
}

.jp-ttl {
  font-size: clamp(12px, 3vw, 16px);
  color: #363636;
  display: block;
  font-weight: 300;
}

.p-frony__company {
  position: relative;
  padding: 85px 10px;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url("../img/top/bg-company.jpg");
}
@media screen and (min-width: 768px), print {
  .p-frony__company {
    padding: 0;
  }
}
.p-frony__company .contaiber-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
@media screen and (min-width: 768px), print {
  .p-frony__company .contaiber-wrapper {
    padding: 85px 10px;
  }
}
.p-frony__company .container {
  position: relative;
  padding: 18px 13px;
  z-index: 10;
}
@media screen and (min-width: 768px), print {
  .p-frony__company .container {
    padding: 28px 32px;
  }
}
.p-frony__company .border {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  opacity: 0.4;
}
.p-frony__company .txt {
  text-align: center;
  font-weight: 500;
  font-size: clamp(14px, 3vw, 20px);
  line-height: 2.4;
  margin-top: 40px;
  margin-bottom: 47px;
  color: #fff;
  letter-spacing: 0.14rem;
}
@media screen and (min-width: 768px), print {
  .p-frony__company .txt {
    line-height: 2;
    margin-top: 20px;
  }
}
.p-frony__company .body {
  position: relative;
  z-index: 1;
  border: 1px solid #fff;
  padding-top: 50px;
  padding-bottom: 66px;
}
@media screen and (min-width: 768px), print {
  .p-frony__company .body {
    padding-top: 110px;
    padding-bottom: 105px;
  }
}

.p-front__news {
  padding: 76px 0 0;
  background: #ebf7ff;
}
@media screen and (min-width: 768px), print {
  .p-front__news {
    padding: 230px 0 0;
  }
}
.p-front__news .news-inner {
  background: #f7f7f7;
  padding: 50px 0 243px;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-front__news .news-inner {
    padding: 101px 20px 159px 48px;
    margin-left: 8%;
  }
}
.p-front__news .flex {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px), print {
  .p-front__news .flex {
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    gap: 80px;
  }
}
.p-front__news .ttl-area {
  display: flex;
  flex-direction: column;
  gap: 86px;
  justify-content: start;
}
.p-front__news .container-area {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
}
@media screen and (min-width: 768px), print {
  .p-front__news .container-area {
    margin-top: 0;
  }
}
.p-front__news .date {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #8d8d8d;
  margin-bottom: 6px;
}
.p-front__news .txt {
  font-weight: 500;
  color: #363636;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 6px;
}
@media screen and (min-width: 768px), print {
  .p-front__news .txt {
    -webkit-line-clamp: 1;
    line-height: 1.3;
    max-width: 450px;
  }
}
.p-front__news .container {
  position: relative;
  background: #fff;
  padding: 1.5em 2.3em;
  margin-top: 15px;
}
.p-front__news .container:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px), print {
  .p-front__news .container {
    padding: 1.5em 6em 1.5em 4.5em;
    margin-top: 13px;
    min-width: 370px;
  }
}
@media screen and (min-width: 1050px), print {
  .p-front__news .container {
    min-width: 600px;
  }
}
@media screen and (min-width: 1200px), print {
  .p-front__news .container {
    min-width: 700px;
  }
}
@media screen and (min-width: 1500px), print {
  .p-front__news .container {
    min-width: 800px;
  }
}
.p-front__news .container::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  position: relative;
  width: 24px;
  height: 1px;
  background: currentColor;
  margin-right: 13.2%;
  position: absolute;
  right: 0px;
  top: 25%;
  transition: all 0.5s;
  color: #716304;
}
@media screen and (min-width: 768px), print {
  .p-front__news .container::after {
    margin-right: 6.5%;
    width: 40px;
    top: 50%;
    transform: translate(0, -50%);
    color: #000;
  }
}
.p-front__news .container::before {
  content: "";
  width: 7px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  margin-right: 13.2%;
  position: absolute;
  right: 0px;
  top: 25%;
  right: -0.05em;
  box-sizing: border-box;
  transition: all 0.5s;
  color: #716304;
}
@media screen and (min-width: 768px), print {
  .p-front__news .container::before {
    margin-right: 6.5%;
    top: 50%;
    right: -0.05em;
    color: #000;
  }
}
.p-front__news .container:hover:after {
  right: -20px;
}
.p-front__news .container:hover:before {
  right: -20px;
}

.p-front__contact {
  padding: 0 0 106px;
  background: #ebf7ff;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-front__contact {
    padding: 128px 0 173px;
  }
}
.p-front__contact .contact-cloud .contact-cloud-img {
  position: absolute;
  top: -20%;
  right: 0;
}
.p-front__contact .contact__logo {
  width: 15%;
  min-width: 120px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.p-front__contact .contact__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front__contact .txt {
  font-weight: 500;
  font-size: clamp(12px, 3vw, 16px);
  letter-spacing: 0.14em;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 35px;
  line-height: 3.5;
  position: relative;
  z-index: 4;
}

._white {
  color: #fff;
}
._white .jp-ttl {
  color: #fff;
}/*# sourceMappingURL=style.css.map */