@charset "UTF-8";
/*reset--------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

b, strong {
  font-weight: bold;
}

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

img {
  vertical-align: top;
  border: 0;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

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

/*base--------------------------------------*/
body,
html {
  width: 100%;
  height: 100%;
  min-height: 100%;
  color: #333;
}

html {
  overflow-x: hidden;
}

body {
  font-size: 15px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", メイリオ, Meiryo, sans-serif;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: initial;
    min-width: auto;
  }
}

input,
select,
textarea {
  padding: 5px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", メイリオ, Meiryo, sans-serif;
}

p {
  line-height: 1.8;
}

a:link,
a:visited {
  color: #333;
  text-decoration: none;
}

a:hover,
a:active {
  color: #666;
  text-decoration: none;
}

/*header---------------------------------*/
.header {
  background: transparent;
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 10000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: rgba(0, 0, 0, 0);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.header.menu-open {
  background: transparent;
}
.header.animated {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header .wrap {
  max-width: 1260px;
  height: 100px;
  margin: 0 auto;
  padding: 0 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header .wrap {
    max-width: 100%;
    height: 60px;
    padding: 5px 10px;
  }
}
.header .logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.header .logo img {
  height: 80px;
  width: auto;
  max-width: 400px;
  display: block;
}
@media screen and (max-width: 767px) {
  .header .logo img {
    height: 45px;
    max-width: 200px;
  }
}
.header .gnav {
  margin-left: auto;
}
.header .gnav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .gnav li {
  margin-left: 30px;
}
.header .gnav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header .gnav a:hover {
  color: #ffd700;
}
@media screen and (max-width: 767px) {
  .header .gnav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(255, 255, 255);
    padding: 60px 0 20px 0;
    z-index: 9999;
  }
  .header .gnav.active {
    display: block;
  }
  .header .gnav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .header .gnav li {
    margin: 0;
    position: relative;
    width: 100%;
  }
  .header .gnav li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
  }
  .header .gnav li:last-child::after {
    display: none;
  }
  .header .gnav a {
    font-size: 4.2vw;
    padding: 15px 20px;
    display: block;
    width: 100%;
    text-align: center;
    color: #666;
  }
}
.header .hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header .hamburger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
  }
  .header .hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 2px;
  }
  .header .hamburger.active span {
    background: #666;
  }
  .header .hamburger.active span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
            transform: rotate(-45deg) translate(-6px, 6px);
  }
  .header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger.active span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-6px, -6px);
            transform: rotate(45deg) translate(-6px, -6px);
  }
}

.header {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header.header--white {
  background: rgb(255, 255, 255) !important;
  color: #333 !important;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .header.header--white .hamburger span {
    background-color: #666;
  }
}

.header.header--white .gnav a,
.header.header--white .logo {
  color: #333 !important;
  fill: #333 !important;
}

.contact-section {
  padding: 0px 0 80px;
}
@media screen and (max-width: 767px) {
  .contact-section {
    padding: 0px 0 40px;
  }
}
.contact-section .wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
}
.contact-section .contact-title {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  color: #333;
  vertical-align: middle;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-section .contact-title {
    font-size: 7.4vw;
    margin-bottom: 20px;
  }
}
.contact-section .contact-title span {
  font-size: 50%;
  display: block;
  margin-bottom: 0.5em;
  padding-right: 15px;
}
.contact-section .contact-title span::before {
  content: "";
  display: inline-block;
  background: url("../images/icon_logo.png") no-repeat center center;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  margin-right: 5px;
}
.contact-section .contact-box {
  margin: 0 auto;
  background: white;
  border: 5px solid #eda320;
  border-radius: 15px;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .contact-section .contact-box {
    padding: 30px 20px;
  }
}
.contact-section .contact-box-wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact-section .contact-box-wrap {
    display: block;
  }
}
.contact-section .contact-box-wrap .contact-title {
  width: 40%;
  min-width: 250px;
}
@media screen and (max-width: 767px) {
  .contact-section .contact-box-wrap .contact-title {
    width: 100%;
  }
}
.contact-section .contact-box-wrap .contact-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  padding: 0 10%;
  border-left: 2px solid #eda320;
}
@media screen and (max-width: 767px) {
  .contact-section .contact-box-wrap .contact-content {
    padding: 25px 0px 0;
    border: none;
    border-top: 2px solid #eda320;
  }
}
.contact-section .contact-phone {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contact-section .contact-phone {
    text-align: center;
  }
}
.contact-section .contact-phone h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .contact-section .contact-phone h4 {
    font-size: 3.8vw;
  }
}
.contact-section .contact-phone .phone-number {
  font-size: 32px;
  line-height: 1.4;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 767px) {
  .contact-section .contact-phone .phone-number {
    font-size: 8.2vw;
  }
}
.contact-section .contact-phone .phone-hours {
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 767px) {
  .contact-section .contact-phone .phone-hours {
    font-size: 3.8vw;
  }
}
.contact-section .contact-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.contact-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #eda320;
  color: #fff !important;
  text-decoration: none !important;
  padding: 0.8em 1em;
  margin: 0 auto;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: normal;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-btn {
    font-size: 3.8vw;
    padding: 1em;
  }
}
.contact-btn:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.contact-btn::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}

/*footer--------------------------------------*/
footer {
  background: #eee;
  color: #000;
  padding: 15px;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer {
    font-size: 3.2vw;
  }
}
footer .footer-content {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  footer .footer-content {
    display: block;
    padding: 10px 15px;
  }
}
footer .footer-content .copyright {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  footer .footer-content .copyright {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    text-align: center;
    margin-top: 15px;
  }
}
footer .footer-content .footer-nav {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 767px) {
  footer .footer-content .footer-nav {
    text-align: center;
  }
}

/*pagetop---------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  right: 40px;
  bottom: 40px;
  text-align: right;
  z-index: 40;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 20px;
    bottom: 20px;
  }
}
.pagetop a {
  display: inline-block;
  padding: 20px;
  background: rgba(64, 64, 64, 0.6);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}
.pagetop a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 12px;
  height: 12px;
  margin-right: -6px;
  margin-top: -4px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.pagetop a:hover {
  background: rgba(64, 64, 64, 0.8);
}

/*fadein*/
.fadein {
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.fadein-up {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.fadein-down {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.fadein-left {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
@media screen and (max-width: 767px) {
  .fadein-left {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
}

.fadein-right {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
@media screen and (max-width: 767px) {
  .fadein-right {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
}

.fadein.is-fadein {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.fadein-zoom {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.fadein-zoom.is-fadein {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.delay01s {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.delay03s {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.delay05s {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.delay1s {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

/*ローディング*/
.loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0%;
  z-index: 99999;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.loader-bg .spinner-box {
  width: 300px;
  height: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
}
.loader-bg .loading-logo {
  width: 180px;
  height: 180px;
  background: url("../images/icon_logo.png") no-repeat center;
  background-size: contain;
  -webkit-animation: pulse 1.5s ease-in-out infinite;
          animation: pulse 1.5s ease-in-out infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/*フォントサイズ---------------------------------*/
.fs-xxlarge {
  font-size: 28px !important;
}
@media screen and (max-width: 767px) {
  .fs-xxlarge {
    font-size: 22px !important;
  }
}

.fs-xlarge {
  font-size: 24px !important;
}
@media screen and (max-width: 767px) {
  .fs-xlarge {
    font-size: 18px !important;
  }
}

.fs-large {
  font-size: 18px !important;
}
@media screen and (max-width: 767px) {
  .fs-large {
    font-size: 16px !important;
  }
}

.fs-medium {
  font-size: 16px !important;
}
@media screen and (max-width: 767px) {
  .fs-medium {
    font-size: 14px !important;
  }
}

.fs-small {
  font-size: 13px !important;
}
@media screen and (max-width: 767px) {
  .fs-small {
    font-size: 11px !important;
  }
}

.fw-n {
  font-weight: normal !important;
}

.fw-b {
  font-weight: bold !important;
}

/*フォントカラー*/
.fc-red {
  color: #f00 !important;
}

.fc-gray {
  color: #999 !important;
}

.fc-gray {
  color: #999 !important;
}

.fc-purple {
  color: #c500d7 !important;
}

.fc-green {
  color: #009b07 !important;
}

.fc-pink {
  color: #f2709c !important;
}

.fc-blue {
  color: #052dac;
}

.fc-gold {
  color: #858701;
}

/*マーカー*/
.marker-pink {
  background: rgba(0, 0, 0, 0) -webkit-linear-gradient(transparent 60%, #ffdfef 0%) repeat scroll 0 0;
  background: rgba(0, 0, 0, 0) -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #ffdfef)) repeat scroll 0 0;
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffdfef 0%) repeat scroll 0 0;
}

.marker-yellow {
  background: rgba(0, 0, 0, 0) -webkit-linear-gradient(transparent 60%, #feff94 0%) repeat scroll 0 0;
  background: rgba(0, 0, 0, 0) -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #feff94)) repeat scroll 0 0;
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #feff94 0%) repeat scroll 0 0;
}

/*align---------------------------------*/
.alL {
  text-align: left !important;
}

.alR {
  text-align: right !important;
}

.alC {
  text-align: center !important;
}

/*margin---------------------------------*/
.mb0 {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .mb0 {
    margin-bottom: 0 !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .mb20 {
    margin-bottom: 10px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

.mb40 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 767px) {
  .mb40 {
    margin-bottom: 25px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .mb60 {
    margin-bottom: 30px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .mb100 {
    margin-bottom: 50px !important;
  }
}

.mt0 {
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .mt0 {
    margin-top: 0 !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 767px) {
  .mt10 {
    margin-top: 5px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .mt20 {
    margin-top: 10px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

.mt40 {
  margin-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .mt40 {
    margin-top: 25px !important;
  }
}

.mt60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .mt60 {
    margin-top: 30px !important;
  }
}

.mt80 {
  margin-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .mt80 {
    margin-top: 40px !important;
  }
}

.mt100 {
  margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .mt100 {
    margin-top: 50px !important;
  }
}

/*padding---------------------------------*/
.pb0 {
  padding-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .pb0 {
    padding-bottom: 0 !important;
  }
}

.pb10 {
  padding-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .pb10 {
    padding-bottom: 5px !important;
  }
}

.pb20 {
  padding-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .pb20 {
    padding-bottom: 10px !important;
  }
}

.pb30 {
  padding-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .pb30 {
    padding-bottom: 15px !important;
  }
}

.pb40 {
  padding-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .pb40 {
    padding-bottom: 20px !important;
  }
}

.pb50 {
  padding-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .pb50 {
    padding-bottom: 25px !important;
  }
}

.pb60 {
  padding-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .pb60 {
    padding-bottom: 30px !important;
  }
}

.pb80 {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .pb80 {
    padding-bottom: 40px !important;
  }
}

.pb100 {
  padding-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .pb100 {
    padding-bottom: 50px !important;
  }
}

.pt0 {
  padding-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .pt0 {
    padding-top: 0 !important;
  }
}

.pt10 {
  padding-top: 10px !important;
}
@media screen and (max-width: 767px) {
  .pt10 {
    padding-top: 5px !important;
  }
}

.pt20 {
  padding-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .pt20 {
    padding-top: 10px !important;
  }
}

.pt30 {
  padding-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .pt30 {
    padding-top: 15px !important;
  }
}

.pt40 {
  padding-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .pt40 {
    padding-top: 20px !important;
  }
}

.pt50 {
  padding-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .pt50 {
    padding-top: 25px !important;
  }
}

.pt60 {
  padding-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .pt60 {
    padding-top: 30px !important;
  }
}

.pt80 {
  padding-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .pt80 {
    padding-top: 40px !important;
  }
}

.pt100 {
  padding-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .pt100 {
    padding-top: 50px !important;
  }
}

/*only---------------------------------*/
.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

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

/*recaptch*/
.grecaptcha-badge {
  visibility: hidden !important;
}

.page-id-16 .grecaptcha-badge {
  visibility: visible !important;
}

#main {
  display: block;
  width: 100%;
}
#main .wrap {
  padding: 0 32px;
}
@media screen and (max-width: 767px) {
  #main .wrap {
    padding: 0 15px;
  }
}
#main .news-date {
  padding: 0 15px;
}

/*mv---------------------------------*/
#symshome .mv {
  position: relative;
  height: 100vh;
  overflow: hidden;
  position: relative;
  height: 100vh;
  overflow: hidden;
}
#symshome .mv .pc-video {
  display: block;
}
#symshome .mv .sp-video {
  display: none;
}
@media (max-width: 767px) {
  #symshome .mv .pc-video {
    display: none;
  }
  #symshome .mv .sp-video {
    display: block;
  }
}
@media (min-width: 768px) {
  #symshome .mv .pc-video {
    display: block;
  }
  #symshome .mv .sp-video {
    display: none;
  }
}
#symshome .mv .mv-title-wrap {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 20%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  text-align: left;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  #symshome .mv .mv-title-wrap {
    width: 90%;
    left: 5%;
  }
}
#symshome .mv .mv-title-wrap .mv-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #symshome .mv .mv-title-wrap .mv-title {
    font-size: 8vw;
  }
}
#symshome .mv .mv-title-wrap .mv-subtitle {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #symshome .mv .mv-title-wrap .mv-subtitle {
    font-size: 4.2vw;
  }
}
#symshome .mv .mv-swiper {
  width: 100%;
  height: 100vh;
}
#symshome .mv .mv-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
#symshome .mv .mv-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #222;
}
#symshome .mv .mv-swiper .swiper-slide video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
  display: block;
}
#symshome .mv .mv-swiper .swiper-pagination {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
#symshome .news-section {
  padding: 80px 0;
  background: white;
}
@media screen and (max-width: 767px) {
  #symshome .news-section {
    padding: 40px 0;
  }
}
#symshome .news-section .wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #symshome .news-section .wrap {
    padding: 0 15px;
  }
}
#symshome .news-section .news-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  #symshome .news-section .news-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
#symshome .news-section .news-image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 350px;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
}
#symshome .news-section .news-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  #symshome .news-section .news-image img {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #symshome .news-section .news-image {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    text-align: center;
  }
}
#symshome .news-section .news-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#symshome .news-section .news-title {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #symshome .news-section .news-title {
    font-size: 7.4vw;
    margin-bottom: 20px;
  }
}
#symshome .news-section .news-title span {
  font-size: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
}
#symshome .news-section .news-title span::before {
  content: "";
  display: inline-block;
  background: url("../images/icon_logo.png") no-repeat center center;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  margin-right: 5px;
}
#symshome .news-section .news-list {
  margin-bottom: 0;
}
#symshome .news-section .news-list .news-item:first-of-type .news-date {
  background: #000;
  color: #fff;
}
#symshome .news-section .news-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  background: none;
  border-radius: 0;
  border: none;
}
@media screen and (max-width: 767px) {
  #symshome .news-section .news-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0;
  }
}
#symshome .news-section .news-date {
  background: #fff;
  border: solid 1px #000;
  color: #000;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  margin-right: 15px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-bottom: 0;
  font-weight: normal;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}
@media screen and (max-width: 767px) {
  #symshome .news-section .news-date {
    font-size: 3.2vw;
    padding: 2px 10px;
    margin-bottom: 0;
  }
}
#symshome .news-section .news-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  #symshome .news-section .news-text {
    font-size: 3.6vw;
  }
}
#symshome .company-section {
  position: relative;
  padding: 80px 0;
  color: #333;
}
@media screen and (max-width: 767px) {
  #symshome .company-section {
    padding: 40px 0;
  }
}
#symshome .company-section .company-bg {
  width: 100%;
  height: 500px;
  background: url("../images/top/img_company.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #symshome .company-section .company-bg {
    height: 250px;
  }
}
#symshome .company-section .wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #symshome .company-section .wrap {
    padding: 0 15px;
  }
}
#symshome .company-section .company-container {
  position: relative;
  z-index: 1;
}
#symshome .company-section .company-title {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #symshome .company-section .company-title {
    font-size: 7.4vw;
    margin-bottom: 20px;
  }
}
#symshome .company-section .company-title span {
  font-size: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
}
#symshome .company-section .company-title span::before {
  content: "";
  display: inline-block;
  background: url("../images/icon_logo.png") no-repeat center center;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  margin-right: 5px;
}
#symshome .company-section .company-description {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #symshome .company-section .company-description {
    font-size: 4.6vw;
  }
}
#symshome .company-section .company-subdescription {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #symshome .company-section .company-subdescription {
    font-size: 3.6vw;
  }
}
#symshome .business-section {
  position: relative;
  padding: 80px 0;
  color: #333;
}
@media screen and (max-width: 767px) {
  #symshome .business-section {
    padding: 40px 0;
  }
}
#symshome .business-section .business-bg {
  width: 100%;
  height: 500px;
  background: url("../images/top/img_business.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #symshome .business-section .business-bg {
    height: 250px;
  }
}
#symshome .business-section .wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #symshome .business-section .wrap {
    padding: 0 15px;
  }
}
#symshome .business-section .business-container {
  position: relative;
  z-index: 1;
}
#symshome .business-section .business-title {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #symshome .business-section .business-title {
    font-size: 7.4vw;
    margin-bottom: 20px;
  }
}
#symshome .business-section .business-title span {
  font-size: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
}
#symshome .business-section .business-title span::before {
  content: "";
  display: inline-block;
  background: url("../images/icon_logo.png") no-repeat center center;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  margin-right: 5px;
}
#symshome .business-section .business-description {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #symshome .business-section .business-description {
    font-size: 4.6vw;
  }
}
#symshome .business-section .business-subdescription {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #symshome .business-section .business-subdescription {
    font-size: 3.6vw;
  }
}
#symshome .news-more-btn,
#symshome .company-btn,
#symshome .business-btn {
  display: block;
  width: 250px;
  background: #eda320;
  color: #fff;
  text-decoration: none;
  padding: 0.8em 1em;
  margin: 4rem auto 0;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: normal;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  #symshome .news-more-btn,
  #symshome .company-btn,
  #symshome .business-btn {
    margin-top: 10vw;
    font-size: 4.2vw;
    padding: 1em;
    width: 70%;
  }
}
#symshome .news-more-btn:hover,
#symshome .company-btn:hover,
#symshome .business-btn:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
#symshome .news-more-btn::before,
#symshome .company-btn::before,
#symshome .business-btn::before {
  content: "";
  display: block;
  position: absolute;
  right: 50px;
  top: 20%;
  width: 1px;
  height: 60%;
  background: #fff;
}
#symshome .news-more-btn::after,
#symshome .company-btn::after,
#symshome .business-btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}

/*mv---------------------------------*/
#business .mv {
  position: relative;
  height: 40vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
#business .mv .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("../images/business/fv.png");
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/business/fv.png");
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/business/fv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
#business .mv .wrap {
  text-align: left;
  color: white;
  z-index: 1;
  width: 95%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #business .mv .wrap {
    width: 100%;
  }
}
#business .mv .mv-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #business .mv .mv-title {
    font-size: 8vw;
  }
}
#business .mv .mv-subtitle {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #business .mv .mv-subtitle {
    font-size: 4.2vw;
  }
}
#business .business-section {
  position: relative;
  padding: 80px 0;
  color: #333;
}
@media screen and (max-width: 767px) {
  #business .business-section {
    padding: 40px 0;
  }
}
#business .business-section .wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #business .business-section .wrap {
    padding: 0 15px;
  }
}
#business .business-section .business-container {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#business .business-section .business-container + .business-container {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  #business .business-section .business-container + .business-container {
    margin-top: 15vw;
  }
}
#business .business-section .business-container .business-image {
  width: 50%;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #business .business-section .business-container .business-image {
    width: 100%;
  }
}
#business .business-section .business-container .business-content {
  width: 45%;
}
@media screen and (max-width: 767px) {
  #business .business-section .business-container .business-content {
    margin-top: 5vw;
    width: 100%;
  }
}
#business .business-section .business-container.image-right .business-image {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  #business .business-section .business-container.image-right .business-content {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
#business .business-section .business-title {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #business .business-section .business-title {
    font-size: 7.4vw;
    margin-bottom: 20px;
  }
}
#business .business-section .business-title span {
  font-size: 100%;
  display: inline-block;
  vertical-align: middle;
}
#business .business-section .business-title span::before {
  content: "";
  display: inline-block;
  background: url("../images/icon_logo.png") no-repeat center center;
  background-size: contain;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 5px;
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}
#business .business-section .business-description {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #business .business-section .business-description {
    font-size: 4.6vw;
  }
}
#business .business-section .business-subdescription {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #business .business-section .business-subdescription {
    font-size: 3.6vw;
  }
}
#business .link-btn {
  display: inline-block;
  background: #eda320;
  color: #fff !important;
  text-decoration: none;
  margin-top: 20px;
  padding: 0.8em 4em 0.8em 1em;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: normal;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  #business .link-btn {
    font-size: 4.2vw;
    line-height: 1.4;
  }
}
#business .link-btn:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
#business .link-btn::before {
  content: "";
  display: block;
  position: absolute;
  right: 50px;
  top: 20%;
  width: 1px;
  height: 60%;
  background: #fff;
}
#business .link-btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}

/*mv---------------------------------*/
#company .mv {
  position: relative;
  height: 40vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
#company .mv .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("../images/company/fv.png");
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/company/fv.png");
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/company/fv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
#company .mv .wrap {
  text-align: left;
  color: white;
  z-index: 1;
  width: 95%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #company .mv .wrap {
    width: 100%;
  }
}
#company .mv .mv-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #company .mv .mv-title {
    font-size: 8vw;
  }
}
#company .mv .mv-subtitle {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #company .mv .mv-subtitle {
    font-size: 4.2vw;
  }
}
#company .company-section {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 80px 0;
  color: #333;
}
@media screen and (max-width: 767px) {
  #company .company-section {
    padding: 40px 0;
  }
}
#company .company-section .wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #company .company-section .wrap {
    padding: 0 15px;
  }
}
#company .company-section .company-container {
  width: 100%;
}
#company .company-section .company-container + .company-container {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  #company .company-section .company-container + .company-container {
    margin-top: 4rem;
  }
}
#company .company-section .company-title {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #company .company-section .company-title {
    font-size: 7.4vw;
    margin-bottom: 20px;
  }
}
#company .company-section .company-title span {
  font-size: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
}
#company .company-section .company-title span::before {
  content: "";
  display: inline-block;
  background: url("../images/icon_logo.png") no-repeat center center;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  margin-right: 5px;
}
#company .company-section .company-greeting {
  overflow: hidden;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #company .company-section .company-greeting {
    font-size: 3.6vw;
  }
}
#company .company-section .company-greeting img {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
  width: 40%;
  vertical-align: top;
}
#company .link-btn {
  display: inline-block;
  background: #eda320;
  color: #fff !important;
  text-decoration: none !important;
  margin-top: 20px;
  padding: 0.8em 4em 0.8em 1em;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: normal;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  #company .link-btn {
    font-size: 4.2vw;
    line-height: 1.4;
  }
}
#company .link-btn:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
#company .link-btn::before {
  content: "";
  display: block;
  position: absolute;
  right: 50px;
  top: 20%;
  width: 1px;
  height: 60%;
  background: #fff;
}
#company .link-btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}
#company table {
  width: 100%;
  max-width: 1280px;
  margin: 40px auto 0;
  border-collapse: collapse;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  #company table {
    margin-top: 20px;
  }
}
#company table th,
#company table td {
  padding: 15px 5px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  #company table th,
  #company table td {
    font-size: 3.6vw;
  }
}
#company table tr {
  border-bottom: solid 1px #999;
}
#company table th {
  color: #333;
  font-weight: bold;
  width: 20%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #company table th {
    width: 30%;
    text-align: left;
  }
}
#company table td label {
  display: inline-block;
  margin: 0 10px 5px 0;
}
@media screen and (max-width: 767px) {
  #company table td label {
    display: block;
    margin-right: 0;
  }
}
#company a {
  font-weight: bold;
  text-decoration: underline;
}

#contact .mv {
  position: relative;
  height: 40vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
#contact .mv .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("../images/contact/fv.jpg");
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/contact/fv.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/contact/fv.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
#contact .mv .wrap {
  text-align: left;
  color: white;
  z-index: 1;
  width: 95%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #contact .mv .wrap {
    width: 100%;
  }
}
#contact .mv .mv-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #contact .mv .mv-title {
    font-size: 8vw;
  }
}
#contact .mv .mv-subtitle {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #contact .mv .mv-subtitle {
    font-size: 4.2vw;
  }
}
#contact .wrap {
  margin: 0px auto;
  max-width: 860px;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #contact .wrap {
    padding: 0 15px;
  }
}
#contact .wpcf7-form {
  width: 700px;
  max-width: 100%;
  margin: 30px auto;
}
@media screen and (max-width: 767px) {
  #contact .wpcf7-form {
    padding: 0 0 40px;
  }
}
#contact .wpcf7-form input,
#contact .wpcf7-form textarea,
#contact .wpcf7-form select {
  width: 100%;
  display: block;
  border: solid 1px #999;
  border-radius: 5px;
  padding: 0.5em;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #contact .wpcf7-form input,
  #contact .wpcf7-form textarea,
  #contact .wpcf7-form select {
    font-size: 3.6vw;
  }
}
#contact .wpcf7-form label {
  display: block;
  margin-bottom: 20px;
}
#contact .wpcf7-form strong {
  font-weight: bold;
  color: #333;
  font-size: 110%;
}
#contact .wpcf7-form sup {
  color: #f00;
}
#contact .wpcf7-form input[type=submit] {
  display: block;
  width: 250px;
  background: #eda320;
  color: #fff !important;
  text-decoration: none !important;
  padding: 0.8em 1em;
  margin: 2rem auto 0;
  border-radius: 6px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: normal;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  position: relative;
  border: none;
}
@media screen and (max-width: 767px) {
  #contact .wpcf7-form input[type=submit] {
    margin-top: 10vw;
    font-size: 4.8vw;
    padding: 1em;
    width: 70%;
  }
}
#contact .wpcf7-form input[type=submit]:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
#contact .contact-phone-section {
  padding: 80px 0 80px;
}
@media screen and (max-width: 767px) {
  #contact .contact-phone-section {
    padding: 0px 0 40px;
  }
}
#contact .contact-phone-section .wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #contact .contact-phone-section .wrap {
    padding: 0 15px;
  }
}
#contact .contact-phone-section .contact-title {
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  vertical-align: middle;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #contact .contact-phone-section .contact-title {
    font-size: 6.4vw;
    margin-bottom: 20px;
  }
}
#contact .contact-phone-section .contact-title span {
  font-size: 100%;
  display: inline-block;
  vertical-align: middle;
}
#contact .contact-phone-section .contact-title span::before {
  content: "";
  display: inline-block;
  background: url("../images/icon_logo.png") no-repeat center center;
  background-size: contain;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 5px;
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}
#contact .contact-phone-section .contact-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border: 5px solid #eda320;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  #contact .contact-phone-section .contact-box {
    padding: 20px 0;
  }
}
#contact .contact-phone-section .contact-phone {
  text-align: center;
}
#contact .contact-phone-section .contact-phone h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  #contact .contact-phone-section .contact-phone h4 {
    font-size: 3.8vw;
  }
}
#contact .contact-phone-section .contact-phone .phone-number {
  font-size: 46px;
  line-height: 1.4;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 767px) {
  #contact .contact-phone-section .contact-phone .phone-number {
    font-size: 8.2vw;
  }
}
#contact .contact-phone-section .contact-phone .phone-hours {
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 767px) {
  #contact .contact-phone-section .contact-phone .phone-hours {
    font-size: 3.8vw;
  }
}
#contact .contact-phone-section .contact-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

#news .mv {
  position: relative;
  height: 40vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
#news .mv .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("../images/news/fv.jpg");
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/news/fv.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/news/fv.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
#news .mv .wrap {
  text-align: left;
  color: white;
  z-index: 1;
  width: 95%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #news .mv .wrap {
    width: 100%;
  }
}
#news .mv .mv-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #news .mv .mv-title {
    font-size: 8vw;
  }
}
#news .mv .mv-subtitle {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #news .mv .mv-subtitle {
    font-size: 4.2vw;
  }
}
#news .news-section {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  #news .news-section {
    padding: 30px 0;
  }
}
#news .news-section .wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #news .news-section .wrap {
    padding: 0 15px;
  }
}
#news .news-section .news-container {
  background: #fff;
  padding: 32px 24px;
}
@media screen and (max-width: 767px) {
  #news .news-section .news-container {
    padding: 20px 8px;
  }
}
#news .news-section .news-list {
  display: block;
}
#news .news-section .news-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #666;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  #news .news-section .news-item {
    display: block;
  }
}
#news .news-section .news-date {
  min-width: 120px;
  color: #888;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 0 !important;
}
@media screen and (max-width: 767px) {
  #news .news-section .news-date {
    width: 100%;
    display: block;
  }
}
#news .news-section .news-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
  line-height: 1.7;
}
#news .news-section .news-text a {
  color: #222;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
#news .news-section .news-text a:hover {
  color: #007bff;
  text-decoration: underline;
}
#news .news-detail {
  padding: 32px 0;
}
#news .news-detail .news-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
#news .news-detail .news-title h1 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
#news .news-detail .news-title .news-date {
  color: #888;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
#news .news-detail .news-content {
  font-size: 1.05rem;
  line-height: 2;
  color: #222;
}
#news .news-detail .news-content p {
  margin-bottom: 1.5em;
}

.breadcrumb {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto 32px;
  padding: 0 15px;
  font-size: 0.95rem;
  color: #888;
}
.breadcrumb .breadcrumb-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.breadcrumb a {
  color: #888;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #007bff;
  text-decoration: underline;
}
.breadcrumb span {
  color: #222;
  font-weight: 500;
}
.breadcrumb .breadcrumb-separator, .breadcrumb > .breadcrumb-inner > *:not(:last-child)::after {
  content: ">";
  margin: 0 6px;
  color: #bbb;
}
.breadcrumb > .breadcrumb-inner > *:last-child::after {
  content: "";
  margin: 0;
}

#policy .mv {
  position: relative;
  height: 40vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
#policy .mv .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("../images/news/fv.jpg");
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/news/fv.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/news/fv.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
#policy .mv .wrap {
  text-align: left;
  color: white;
  z-index: 1;
  width: 95%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #policy .mv .wrap {
    width: 100%;
  }
}
#policy .mv .mv-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #policy .mv .mv-title {
    font-size: 8vw;
  }
}
#policy .mv .mv-subtitle {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #policy .mv .mv-subtitle {
    font-size: 4.2vw;
  }
}
#policy .policy-section {
  padding: 60px 0;
}
#policy .policy-section .wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #policy .policy-section .wrap {
    padding: 0 15px;
  }
}
#policy .policy-section .policy-container {
  padding: 32px 24px;
}
@media screen and (max-width: 767px) {
  #policy .policy-section .policy-container {
    padding: 20px 8px;
  }
}
#policy .policy-section .policy-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 32px;
  color: #222;
  letter-spacing: 0.05em;
  text-align: center;
}
#policy .policy-section h2 {
  font-size: 1.15rem;
  font-weight: bold;
  margin: 32px 0 12px 0;
  color: #333;
  border-left: 3px solid #007bff;
  padding-left: 10px;
}
#policy .policy-section p {
  margin-bottom: 1.2em;
  color: #222;
  line-height: 1.8;
}
#policy .policy-section ul {
  margin: 0 0 1.5em 1.2em;
  padding: 0;
  list-style: disc inside;
}
#policy .policy-section li {
  margin-bottom: 0.5em;
  color: #222;
  line-height: 1.7;
}/*# sourceMappingURL=style.css.map */