@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1001px) {
  .is-sp {
    display: none !important;
  }
}
body,
html {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
  background: #fff;
  min-width: initial;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .inner {
    padding: 0 20px;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 370px) {
  .inner {
    padding: 0 15px;
  }
}

.l-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .l-inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 370px) {
  .l-inner {
    padding: 0 15px;
  }
}

.bread {
  padding: 10px 0;
}
@media screen and (max-width: 1000px) {
  .bread {
    padding: 0;
  }
}
.bread a,
.bread span {
  display: inline-block;
  font-size: 14px;
  color: #9F9F9F;
}
@media screen and (max-width: 1000px) {
  .bread a,
  .bread span {
    font-size: 11px;
  }
}
.bread .arrow {
  width: 4px;
  position: relative;
  top: -5px;
}
@media screen and (max-width: 1000px) {
  .bread .arrow {
    top: -4px;
  }
}

.header-inner {
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .header-inner {
    padding: 0 20px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #000;
  background: #EDEDED;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  margin: 0;
  outline: none;
}

.header {
  position: relative;
}

.drawer-icon {
  position: absolute;
  top: 25px;
  right: 35px;
  z-index: 600;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  z-index: 2002;
}
@media screen and (min-width: 1001px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 25px;
  height: 3px;
  background: #000;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar2 {
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar3 {
  top: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 250;
  display: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-content.is-active {
  display: block;
}

.drawer-icon-nav {
  text-align: center;
  position: absolute;
  top: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
}
.drawer-icon-nav ul li {
  margin-bottom: 20px;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #000;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid #EC576B;
  margin-bottom: 10px;
}
.drawer-icon-nav ul li .sub-menu .item {
  margin-bottom: 5px;
}
.drawer-icon-nav ul li .sub-menu .item a {
  font-size: 14px;
  font-weight: 400 !important;
  border-bottom: none;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 220;
  display: none;
}
.drawer-mask.is-active {
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 0 40px;
}
@media screen and (max-width: 1000px) {
  .header {
    padding: 0 20px;
  }
}
.header .header-inner {
  max-width: 1400px;
  padding: 20px 40px;
  margin: 0 auto;
  background: #fff;
  margin-top: 15px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1000px) {
  .header .header-inner {
    padding: 10px 15px;
    margin-top: 8px;
    max-width: 430px;
  }
}
.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .flex .logo {
  max-width: 200px;
}
@media screen and (max-width: 1000px) {
  .header .flex .logo {
    max-width: 120px;
  }
}
.header .flex .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .flex .logo a:hover {
  opacity: 0.6;
}
.header .flex .right {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .flex .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .header .flex .right ul {
    display: none;
  }
}
.header .flex .right ul li {
  margin-right: 35px;
}
.header .flex .right ul li a {
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
}
.header .flex .right ul li a:hover {
  color: #EC576B;
}

.mv {
  position: relative;
}
.mv .text {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .mv .text {
    width: 80%;
  }
}

.header-btn .header-btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-btn a {
  color: #fff;
  background: #EC576B;
  padding: 14px 30px;
  display: inline-block;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 18px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-btn a .icon {
  width: 25px;
  position: relative;
  top: -3px;
  margin-right: 10px;
}
.header-btn a:hover {
  opacity: 0.6;
}

.section-btn {
  text-align: right;
}
.section-btn a {
  font-size: 16px;
  color: #EC576B;
  font-family: "presicav", sans-serif;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .section-btn a {
    font-size: 14px;
  }
}
.section-btn a:hover {
  opacity: 0.6;
}
.section-btn a:hover .section-btn-icon {
  -webkit-transform: translateX(7px);
          transform: translateX(7px);
}
.section-btn .section-btn-icon {
  width: 80px;
  margin-left: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .section-btn .section-btn-icon {
    width: 50px;
    margin-left: 10px;
  }
}
.section-btn .section-btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 1000px) {
  .section {
    padding: 40px 0;
  }
}

.top-news {
  margin-top: -40px;
  position: relative;
  padding-bottom: 20px;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .top-news {
    margin-top: -20px;
    padding-bottom: 10px;
  }
}
.top-news h2 {
  font-family: "presicav", sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  -webkit-text-stroke: 1px #000;
  /* 縁の色と太さ */
  margin-right: 40px;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .top-news h2 {
    margin-right: 0;
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.top-news .flex {
  padding: 40px 40px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .top-news .flex {
    display: block;
    padding: 20px;
  }
}
.top-news .flex .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .top-news .flex .left {
    display: block;
  }
}
.top-news .flex .left ul li {
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .top-news .flex .left ul li {
    margin-bottom: 20px;
  }
}
.top-news .flex .left ul li:last-child {
  margin-bottom: 0;
}
.top-news .flex .left ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .top-news .flex .left ul li a {
    display: block;
  }
}
.top-news .flex .left ul li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .top-news .flex .left ul li a {
    font-size: 14px;
  }
}
.top-news .flex .left ul li a .time {
  width: 90px;
}
@media screen and (max-width: 1000px) {
  .top-news .flex .left ul li a .time {
    width: 100%;
  }
}
.top-news .flex .left ul li a .title {
  width: calc(100% - 90px);
}
@media screen and (max-width: 1000px) {
  .top-news .flex .left ul li a .title {
    width: 100%;
    margin-top: 10px;
  }
}
.top-news .flex .right {
  margin-left: 60px;
}
@media screen and (max-width: 1000px) {
  .top-news .flex .right {
    margin-left: 0;
    margin-top: 30px;
  }
}

.section-title {
  margin-bottom: 50px;
  margin-bottom: 30px;
}
.section-title .en {
  font-family: "presicav", sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #000;
  /* 縁の色と太さ */
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .section-title .en {
    -webkit-text-stroke: 0.5px #000;
    margin-right: 0;
    font-size: 24px;
    margin-bottom: 7px;
  }
}
.section-title .ja {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 1000px) {
  .section-title .ja {
    font-size: 22px;
  }
}

.top-about {
  position: relative;
}
.top-about .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 620px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .top-about .bg {
    width: 80%;
  }
}
.top-about .inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.top-about .section-title {
  text-align: center;
}
.top-about p {
  line-height: 2;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .top-about p {
    font-size: 14px;
  }
}
.top-about .btn {
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .top-about .btn {
    margin-top: 25px;
  }
}

.gallary .img {
  margin: 0 10px;
}
@media screen and (max-width: 1000px) {
  .gallary .img {
    margin: 0 6px;
  }
}
.gallary .img1 {
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}
.gallary .img2 {
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}
.gallary .img3 {
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
}
.gallary .img5 {
  -webkit-transform: translateY(25%);
          transform: translateY(25%);
}
@media screen and (max-width: 1000px) {
  .gallary .img5 {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
}
.gallary .slick-list {
  overflow: visible;
}

.top-business {
  background: url(../img/top-business-bg.jpg) no-repeat center center/cover;
}
.top-business .section-title .en {
  -webkit-text-stroke: 1px #fff;
}
@media screen and (max-width: 1000px) {
  .top-business .section-title .en {
    -webkit-text-stroke: 0.5px #fff;
  }
}
.top-business ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-business ul li {
  width: 33.3333%;
}
@media screen and (max-width: 1000px) {
  .top-business ul li {
    width: 50%;
  }
}
.top-business ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-business ul li a:hover {
  opacity: 0.6;
}

.top-recruit .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .top-recruit .flex {
    display: block;
  }
}
.top-recruit .flex .contents {
  width: 500px;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .top-recruit .flex .contents {
    width: 100%;
  }
}
@media screen and (min-width: 1001px) {
  .top-recruit .flex .contents {
    position: relative;
    z-index: 1;
    -webkit-transform: translateY(-90px);
            transform: translateY(-90px);
  }
}
.top-recruit .flex .img {
  width: 50%;
  max-width: 800px;
}
@media screen and (max-width: 1200px) {
  .top-recruit .flex .img {
    margin-right: 3% !important;
  }
}
@media screen and (max-width: 1000px) {
  .top-recruit .flex .img {
    margin-right: 0 !important;
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1001px) {
  .top-recruit .flex .img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: calc(50% - 50vw);
    margin-right: 0%;
  }
}
@media screen and (max-width: 1200px) {
  .top-recruit .flex .img img {
    -webkit-transform: initial;
            transform: initial;
  }
}
.top-recruit .section-title .en {
  text-align: right;
}
@media screen and (max-width: 1000px) {
  .top-recruit .section-title .en {
    text-align: left;
  }
}
.top-recruit p {
  line-height: 2;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .top-recruit p {
    font-size: 14px;
  }
}
.top-recruit .btn {
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .top-recruit .btn {
    margin-top: 25px;
  }
}

.cta-contact {
  background: url(../img/cta-contact.jpg) no-repeat center center/cover;
}
.cta-contact p {
  line-height: 2;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .cta-contact p {
    font-size: 14px;
  }
}
.cta-contact .btn {
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .cta-contact .btn {
    margin-top: 25px;
  }
}
.cta-contact .box {
  background: rgba(255, 255, 255, 0.8);
  padding: 50px 80px;
}
@media screen and (max-width: 1000px) {
  .cta-contact .box {
    padding: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .cta-contact .section-title {
    text-align: center;
  }
}

.footer {
  background: #000;
  padding: 50px 0 30px;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .footer {
    padding: 30px 0 20px;
  }
}
.footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .footer .flex {
    margin-bottom: 30px;
    display: block;
  }
}
.footer .flex .logo {
  max-width: 200px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .footer .flex .logo {
    text-align: center;
  }
}
@media screen and (max-width: 1000px) {
  .footer .flex .logo {
    max-width: 120px;
    margin: 0 auto 10px;
  }
}
.footer .flex .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .flex .logo a:hover {
  opacity: 0.6;
}
.footer .flex .address {
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .footer .flex .address {
    font-size: 13px;
    text-align: center;
  }
}
.footer .flex .sns-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .footer .flex .sns-area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .flex .sns-area .sns-item {
  width: 40px;
  margin-right: 20px;
}
.footer .flex .sns-area .sns-item:last-child {
  margin-right: 0;
}
.footer a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}
.footer a:hover {
  opacity: 0.6;
}
.footer .copyright {
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .footer .copyright {
    font-size: 10px;
  }
}
.footer .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 650px;
}
@media screen and (max-width: 1000px) {
  .footer .right {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .footer .right .item {
    margin-bottom: 30px;
    width: 100%;
  }
}
.footer .right .item .row {
  margin-bottom: 30px;
}
.footer .right .item .row:last-child {
  margin-bottom: 0;
}
.footer .right .item .row .link {
  font-weight: 700;
  font-size: 14px;
  font-family: "presicav", sans-serif;
}
.footer .right .item ul li {
  margin-top: 10px;
}
.footer .right .item ul li a {
  font-size: 13px;
}
.footer .top-item-link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  display: inline-block;
}

.header li {
  position: relative;
}
.header li::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100px;
  height: 30px;
}
.header .sub-menu {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  z-index: 2;
  background: #fff;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 20px;
  width: 260px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .sub-menu .item {
  margin-bottom: 10px;
}
.header .sub-menu .item:last-child {
  margin-bottom: 0;
}
.header .sub-menu .item a {
  font-size: 16px !important;
  font-weight: 500 !important;
  display: inline-block;
  padding: 2px;
}

header ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.common-mv {
  background: url(../img/common-mv.jpg) no-repeat center center/cover;
  padding: 200px 0 100px;
}
@media screen and (max-width: 1000px) {
  .common-mv {
    padding: 100px 0 50px;
  }
}
.common-mv .main-title {
  font-family: "presicav", sans-serif;
  text-align: center;
  font-size: 50px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  /* 縁の色と太さ */
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .common-mv .main-title {
    -webkit-text-stroke: 1px #fff;
    margin-right: 0;
    font-size: 32px;
  }
}

.business1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.business1 .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: calc(70% - 70vw);
  margin-right: 4%;
}
@media screen and (max-width: 1000px) {
  .business1 .img {
    margin-left: calc(60% - 60vw);
    margin-right: 10%;
  }
}
@media screen and (min-width: 1001px) {
  .business1 .img .wrap {
    padding-top: 55%;
    position: relative;
  }
  .business1 .img .wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.business1 h2 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  width: 30%;
  margin-left: auto;
  font-size: 40px;
  font-weight: 700;
  line-height: 2;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .business1 h2 {
    font-size: 18px;
  }
}
.business1 h2 .row:nth-child(2) {
  margin-top: 15%;
}
.business1 h2 .row:nth-child(3) {
  margin-top: 45%;
}

.about1 .inner {
  position: relative;
}
.about1 .inner .bg-text {
  font-size: 180px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  position: absolute;
  bottom: -80px;
  left: 0;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .about1 .inner .bg-text {
    font-size: 40px;
    bottom: 0;
    left: initial;
    right: 0;
  }
}
.about1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.about1 .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(70% - 70vw);
  margin-left: 4%;
}
@media screen and (max-width: 1000px) {
  .about1 .img {
    margin-right: calc(60% - 60vw);
    margin-left: 10%;
  }
}
@media screen and (min-width: 1001px) {
  .about1 .img .wrap {
    padding-top: 55%;
    position: relative;
  }
  .about1 .img .wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about1 h2 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  width: 30%;
  margin-right: auto;
  font-size: 40px;
  font-weight: 700;
  line-height: 2;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .about1 h2 {
    font-size: 18px;
  }
}
.about1 h2 .row:nth-child(2) {
  margin-top: 15.5%;
}
.about1 h2 .row:nth-child(3) {
  margin-top: 31%;
}
.about1 h2 .row:nth-child(4) {
  margin-top: 47%;
}

.about2 .inner {
  position: relative;
}
.about2 .inner .bg-text {
  font-size: 180px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  position: absolute;
  bottom: -80px;
  right: 0;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .about2 .inner .bg-text {
    font-size: 40px;
    bottom: 0;
    left: initial;
    right: 0;
    bottom: initial;
    top: 0;
  }
}
.about2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about2 .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 4%;
}
@media screen and (max-width: 1000px) {
  .about2 .img {
    margin-left: calc(60% - 60vw);
    margin-right: 10%;
  }
}
.about2 .right {
  width: 50%;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 1000px) {
  .about2 .right {
    display: block;
  }
}
.about2 p {
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .about2 p {
    margin-top: 20px;
    font-size: 14px;
  }
}
.about2 h2 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.7;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .about2 h2 {
    font-size: 18px;
  }
}
.about2 h2 .row:nth-child(2) {
  margin-top: 49.5%;
}
.about2 h2 .row:nth-child(3) {
  margin-top: 31%;
}
.about2 h2 .row:nth-child(4) {
  margin-top: 47%;
}

@media screen and (max-width: 1000px) {
  .about1 h2 {
    width: 140px;
  }
}
.white-section-title .en {
  -webkit-text-stroke: 1px #fff;
}
@media screen and (max-width: 1000px) {
  .white-section-title .en {
    -webkit-text-stroke: 0.5px #fff;
  }
}
.white-section-title .ja {
  color: #fff;
}

.about3 {
  background: url(../img/about3-bg.webp) no-repeat center center/cover;
}
.about3 p {
  color: #fff;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .about3 p {
    margin-bottom: 20px;
  }
}
.about3 ul li {
  background: #fff;
  margin-bottom: 20px;
  padding: 20px 80px;
  font-size: 26px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .about3 ul li {
    margin-bottom: 10px;
    padding: 15px 20px;
    font-size: 18px;
  }
}
.about3 ul li:last-child {
  margin-bottom: 0;
}
.about3 ul li .num {
  font-family: "presicav", sans-serif;
  width: 100px;
}
@media screen and (max-width: 1000px) {
  .about3 ul li .num {
    width: 50px;
  }
}
.about3 ul li .text {
  width: calc(100% - 100px);
}
@media screen and (max-width: 1000px) {
  .about3 ul li .text {
    width: calc(100% - 50px);
  }
}

.member ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .member ul {
    display: block;
  }
}
.member ul li {
  width: 47%;
}
@media screen and (max-width: 1000px) {
  .member ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .member ul li:last-child {
    margin-bottom: 0;
  }
}
.member ul li .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .member ul li .img {
    margin-bottom: 10px;
  }
}
.member ul li h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .member ul li h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.member ul li p {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .member ul li p {
    font-size: 13px;
  }
}

.company .inner {
  position: relative;
}
.company .inner .bg-text {
  width: 50%;
  position: absolute;
  right: -10%;
  bottom: 0;
}
@media screen and (max-width: 1000px) {
  .company .inner .bg-text {
    right: 0;
    bottom: 30%;
    width: 45%;
  }
}
.company .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #C1C1C1;
}
@media screen and (max-width: 1000px) {
  .company .row {
    padding: 14px 0;
  }
}
@media screen and (max-width: 1000px) {
  .company .row:first-child {
    padding-top: 0;
  }
}
.company .row .dt {
  width: 250px;
  font-weight: 700;
  padding-left: 40px;
}
@media screen and (max-width: 1000px) {
  .company .row .dt {
    padding-left: 0;
    width: 100px;
    white-space: nowrap;
  }
}
.company .row .dd {
  width: calc(100% - 250px);
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .company .row .dd {
    width: calc(100% - 100px);
  }
}

.history {
  background: url(../img/history-bg.webp) no-repeat center center/cover;
}
.history ul {
  color: #fff;
}
.history ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.history ul li:last-child .icon::after {
  display: none;
}
.history ul li:last-child {
  margin-bottom: 0;
}
.history ul li .date {
  width: 110px;
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .history ul li .date {
    font-size: 16px;
    width: 80px;
  }
}
.history ul li .icon {
  text-align: center;
  width: 110px;
  position: relative;
  left: -10px;
  top: 5px;
}
@media screen and (max-width: 1000px) {
  .history ul li .icon {
    top: 0px;
    width: 40px;
    position: relative;
  }
}
.history ul li .icon::after {
  position: absolute;
  top: 80%;
  width: 2px;
  height: 50px;
  background: #fff;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1000px) {
  .history ul li .icon::after {
    height: 43px;
  }
}
.history ul li .icon span {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .history ul li .icon span {
    width: 20px;
    height: 20px;
  }
}
.history ul li p {
  font-size: 18px;
  width: calc(100% - 220px);
}
@media screen and (max-width: 1000px) {
  .history ul li p {
    font-size: 14px;
    width: calc(100% - 120px);
  }
}

@media screen and (max-width: 1000px) {
  .inner2 {
    padding-right: 0;
  }
}

.seminar {
  /* ===== 外側：横スクロール用 ===== */
  /* 1000px以下は table を 800px 固定で横スクロール */
  /* ===== テーブル本体 ===== */
  /* カラム幅（画像比率寄せ） */
}
.seminar .table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}
@media (max-width: 1000px) {
  .seminar .seminar-table {
    min-width: 800px;
  }
}
.seminar .seminar-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
  font-size: 14px;
  line-height: 1.8;
  color: #111;
}
@media screen and (max-width: 1000px) {
  .seminar .seminar-table {
    margin-right: 20px;
  }
}
.seminar .seminar-table thead th {
  background: #000;
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  border-right: 1px solid #D3D3D3;
  text-align: center;
  letter-spacing: 0.05em;
}
.seminar .seminar-table tbody td {
  vertical-align: top;
  padding: 18px 16px;
  border-bottom: 1px solid #D3D3D3;
  border-right: 1px solid #D3D3D3;
  border-left: 1px solid #D3D3D3;
  background: #fff;
  word-break: break-word;
  overflow-wrap: break-word;
}
.seminar .col-theme {
  width: 55%;
  text-align: left;
}
.seminar .col-host {
  width: 30%;
}
.seminar .col-lecturer {
  width: 15%;
}

.seminar .seminar-table thead th {
  text-align: left;
}

.map-a .wrap {
  position: relative;
  padding-top: 30%;
}
@media screen and (max-width: 1000px) {
  .map-a .wrap {
    padding-top: 80%;
  }
}
.map-a .wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.business-page {
  position: relative;
}
.business-page .bg-text {
  position: absolute;
  width: 90%;
  bottom: 10%;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .business-page .bg-text {
    bottom: 5%;
  }
}
.business-page .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 1001px) {
  .business-page .flex {
    padding-top: 5%;
    padding-bottom: 5%;
  }
}
@media screen and (max-width: 1000px) {
  .business-page .flex {
    display: block;
  }
}
.business-page .flex .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: calc(80% - 80vw);
  margin-right: 4%;
  max-width: 900px;
}
@media screen and (max-width: 1000px) {
  .business-page .flex .img {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1001px) {
  .business-page .flex .img {
    -webkit-transform: scale(1.3) translateX(10%);
            transform: scale(1.3) translateX(10%);
  }
}
.business-page .flex h2 {
  line-height: 2;
  width: 50%;
  margin-left: auto;
  font-size: 34px;
  font-weight: 700;
  line-height: 2;
  position: relative;
  z-index: 3;
  text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
}
@media screen and (max-width: 1200px) {
  .business-page .flex h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1000px) {
  .business-page .flex h2 {
    width: 100%;
    margin-top: 10px;
    font-size: 18px;
  }
}

.business-page2 {
  background: url(../img/business-page2.png) no-repeat top center/cover;
  color: #fff;
}
.business-page2 .m-row {
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  .business-page2 .m-row {
    margin-bottom: 50px;
  }
}
.business-page2 .m-row:last-child {
  margin-bottom: 0;
}
.business-page2 .r-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .business-page2 .r-flex {
    display: block;
  }
}
.business-page2 .r-flex .section-title {
  white-space: nowrap;
  margin-right: 67px;
}
@media screen and (min-width: 1001px) {
  .business-page2 .r-flex .section-title {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  .business-page2 .r-flex .section-title {
    margin-right: 0;
  }
}
.business-page2 p span {
  font-weight: 700;
}

.business-page2 .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .business-page2 .flex2 {
    display: block;
  }
}
.business-page2 .flex2 .left2 {
  width: 49%;
}
@media screen and (max-width: 1000px) {
  .business-page2 .flex2 .left2 {
    width: 100%;
    margin-bottom: 20px;
  }
}
.business-page2 .flex2 .left2 .box {
  position: relative;
  background: #fff;
  color: #000;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
  font-weight: 700;
  min-height: 124px;
}
@media screen and (max-width: 1200px) {
  .business-page2 .flex2 .left2 .box {
    font-size: 20px;
    min-height: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .business-page2 .flex2 .left2 .box {
    font-size: 16px;
    padding: 15px;
    min-height: initial;
  }
}
.business-page2 .flex2 .left2 .box .check2 {
  width: 30px;
  min-width: 30px;
  margin-right: 20px;
}
@media screen and (max-width: 1000px) {
  .business-page2 .flex2 .left2 .box .check2 {
    width: 20px;
    min-width: 20px;
    margin-right: 10px;
  }
}
.business-page2 .flex2 .left2 .box .arrow {
  width: 30px;
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .business-page2 .flex2 .left2 .box .arrow {
    width: 20px;
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    top: 90%;
  }
}
.business-page2 .flex2 .left2 span {
  display: inline-block;
}
.business-page2 .flex2 .left2 .box1 {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .business-page2 .flex2 .left2 .box1 {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .business-page2 .flex2 .left2 .box1 .arrow {
    display: none;
  }
}
.business-page2 .flex2 .right2 {
  width: 49%;
  background: #fff;
}
.business-page2 .flex2 .right2 .smail {
  width: 40px;
  min-width: 40px;
  margin-right: 20px;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .business-page2 .flex2 .right2 .smail {
    margin-right: 0;
    width: 30px;
    min-width: 30px;
    margin-right: 10px;
  }
}
.business-page2 .flex2 .right2 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 91px 20px;
  color: #000;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .business-page2 .flex2 .right2 .box {
    font-size: 20px;
    padding: 80px 20px;
  }
}
@media screen and (max-width: 1000px) {
  .business-page2 .flex2 .right2 .box {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .business-page2 .flex2 .right2 {
    width: 100%;
  }
}

.business-page2 .flex2 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1001px) {
  .business-page .flex {
    position: relative;
    left: 5%;
  }
  .no-wrap3 {
    white-space: nowrap;
  }
}
.greeting .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .greeting .flex {
    display: block;
  }
}
.greeting .flex .contents {
  width: 50%;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .greeting .flex .contents {
    width: 100%;
  }
}
.greeting .flex .img {
  max-width: 1000px;
}
@media screen and (max-width: 1200px) {
  .greeting .flex .img {
    margin-right: 3% !important;
  }
}
@media screen and (max-width: 1000px) {
  .greeting .flex .img {
    margin-right: 0 !important;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1001px) {
  .greeting .flex .img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: calc(50% - 50vw);
    margin-right: 5%;
  }
}
@media screen and (max-width: 1200px) {
  .greeting .flex .img img {
    -webkit-transform: initial;
            transform: initial;
  }
}
.greeting p {
  line-height: 2;
}
.greeting .name {
  text-align: right;
  font-size: 20px;
  font-weight: 500;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .greeting .name {
    margin-top: 30px;
    font-size: 16px;
  }
}

.cur {
  background: url(../img/cur.webp) no-repeat center center/cover;
}

.accordion {
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .accordion {
    margin-bottom: 20px;
  }
}
.accordion:last-child {
  margin-bottom: 0;
}
.accordion .flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accordion .dt {
  background: #fff;
  font-size: 26px;
  font-weight: 700;
  padding: 20px 60px;
  position: relative;
  cursor: pointer;
}
.accordion .dt::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  content: "";
  background: #000;
  height: 2px;
  width: 20px;
}
@media screen and (max-width: 1000px) {
  .accordion .dt::before {
    right: 20px;
  }
}
.accordion .dt::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 49px;
  content: "";
  background: #fff;
  background: #000;
  height: 20px;
  width: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .accordion .dt::after {
    right: 29px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.accordion .dt.active {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accordion .dt.active::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 0;
}
@media screen and (max-width: 1000px) {
  .accordion .dt {
    padding: 20px;
    font-size: 18px;
  }
}
.accordion .num {
  font-family: "presicav", sans-serif;
  width: 80px;
  min-width: 80px;
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .accordion .num {
    font-size: 20px;
    width: 50px;
    min-width: 50px;
  }
}
.accordion .text {
  padding-right: 40px;
}
@media screen and (max-width: 1000px) {
  .accordion .text {
    padding-right: 30px;
  }
}
.accordion .dd {
  color: #fff;
  padding: 40px;
  display: none;
}
@media screen and (max-width: 1000px) {
  .accordion .dd {
    padding: 20px;
  }
}
.accordion .dd .contents1 .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .accordion .dd .contents1 .flex2 {
    display: block;
  }
}
.accordion .dd .contents1 .flex2 .item {
  width: 48%;
}
@media screen and (max-width: 1000px) {
  .accordion .dd .contents1 .flex2 .item {
    width: 100%;
    margin-bottom: 20px;
  }
  .accordion .dd .contents1 .flex2 .item:last-child {
    margin-bottom: 0;
  }
}
.accordion .dd .contents1 h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .accordion .dd .contents1 h3 {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
.accordion .last-text {
  font-size: 26px;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  .accordion .last-text {
    font-size: 18px;
    margin-top: 20px;
  }
}
.accordion p {
  line-height: 2;
  min-height: 100px;
}
@media screen and (max-width: 1000px) {
  .accordion p {
    min-height: initial;
  }
}
.accordion .img {
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .accordion .img {
    margin-top: 10px;
  }
}
.accordion .dd2 {
  padding: 20px 60px;
}

.qa {
  background: url(../img/qa-bg.webp) no-repeat center center/cover;
  margin-bottom: 100px;
}
.qa .text2 {
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .qa {
    margin-bottom: 30px;
  }
}

.accordion .flex1 {
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
}

.rec2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .rec2 ul {
    display: block;
  }
}
.rec2 ul li {
  width: 48.5%;
  margin-bottom: 3%;
}
@media screen and (min-width: 1001px) {
  .rec2 ul li:nth-child(n+3) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  .rec2 ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .rec2 ul li:last-child {
    margin-bottom: 0;
  }
}

.c-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .c-ul {
    display: block;
  }
}
.c-ul li {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.c-ul li .img .wrap {
  padding-top: 65%;
  position: relative;
}
.c-ul li .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-ul li .contents {
  padding: 20px;
  background: #fff;
}
.c-ul li .contents .time {
  font-size: 14px;
}
.c-ul li .contents .title {
  font-size: 16px;
  font-weight: 600;
}
.c-ul li .contents .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-ul li .contents .category .item {
  background: #E82C5D;
  color: #fff;
  line-height: 1;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
}
@media screen and (min-width: 1001px) {
  .c-ul li {
    width: calc(33.333% - 26.6666666667px);
    margin-right: 40px;
  }
  .c-ul li:nth-child(3n) {
    margin-right: 0;
  }
  .c-ul li:nth-child(n+4) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .c-ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .c-ul li:last-child {
    margin-bottom: 0;
  }
}

.column-archive .btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .column-archive .btn {
    margin-top: 30px;
  }
}

.bread a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bread a:hover {
  opacity: 0.6;
}

.single .time {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .single .time {
    margin-bottom: 20px;
  }
}
.single h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .single h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.single .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single .category .item {
  background: #E82C5D;
  color: #fff;
  line-height: 1;
  padding: 10px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
}
.single .thumbnail {
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .single .thumbnail {
    margin-bottom: 20px;
  }
}
.single .contents {
  margin-bottom: 80px;
}
.single .contents h2 {
  font-size: 28px;
  font-weight: 600;
  padding-left: 20px;
  border-left: 5px solid #EC576B;
  margin-top: 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .single .contents h2 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 10p;
  }
}
.single .contents h3,
.single .contents h4,
.single .contents h5,
.single .contents h6 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 30px;
  border-bottom: 2px solid #EC576B;
  padding-bottom: 5px;
}
@media screen and (max-width: 1000px) {
  .single .contents h3,
  .single .contents h4,
  .single .contents h5,
  .single .contents h6 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .single .contents {
    margin-bottom: 40px;
  }
}
.single .btn .section-btn {
  text-align: center;
}
.single .btn .section-btn a {
  font-size: 30px;
}
@media screen and (max-width: 1000px) {
  .single .btn .section-btn a {
    font-size: 20px;
  }
}
.single .main-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .single .main-flex {
    display: block;
  }
}
.single .main-flex .main {
  width: calc(100% - 330px);
}
@media screen and (max-width: 1000px) {
  .single .main-flex .main {
    width: 100%;
  }
}
.single .main-flex .sub {
  width: 230px;
}
@media screen and (max-width: 1000px) {
  .single .main-flex .sub {
    width: 100%;
    margin-top: 100px;
  }
}
.single .main-flex .sub .row {
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .single .main-flex .sub .row {
    margin-bottom: 30px;
  }
}
.single .main-flex .sub .row .s-title {
  font-size: 18px;
  border-bottom: 1px solid #EC576B;
  font-weight: 500;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .single .main-flex .sub .row .s-title {
    font-size: 16px;
  }
}
.single .main-flex .sub .row .ul1 li {
  margin-bottom: 10px;
}
.single .main-flex .sub .row .ul1 li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single .main-flex .sub .row .ul1 li a:hover {
  opacity: 0.6;
}
.single .ul2 a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single .ul2 a:hover {
  opacity: 0.6;
}
.single .ul2 li {
  margin-bottom: 20px;
}
.single .ul2 li .img {
  margin-bottom: 5px;
}
.single .ul2 li .img .wrap {
  padding-top: 65%;
  position: relative;
}
.single .ul2 li .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contact .inner {
  max-width: 900px;
}
.contact .lead {
  line-height: 2;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .contact .lead {
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.contact .lead2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .contact .lead2 {
    margin-bottom: 30px;
  }
}
.contact .required {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 3px 10px;
  background: #AA4242;
}
.contact .required.no {
  background: #939393;
}
.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.contact .row.textarea-row {
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
}
@media screen and (min-width: 1001px) {
  .contact .row.textarea-row .dt {
    padding-top: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .contact .row {
    display: block;
    margin-bottom: 20px;
  }
}
.contact .row .dt {
  width: 260px;
}
@media screen and (max-width: 1000px) {
  .contact .row .dt {
    margin-bottom: 6px;
    width: 100%;
  }
}
.contact .row .dt .dt-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.contact .row .dt .text {
  font-weight: 700;
}
.contact .row .dd {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1000px) {
  .contact .row .dd {
    width: 100%;
  }
}
.contact .checkbox {
  text-align: center;
}
.contact .checkbox span {
  margin-left: 40px;
  margin-right: 10px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .contact .checkbox span {
    margin-left: 30px;
  }
}
.contact .checkbox span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact .checkbox span::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 18px;
  border-left: 5px solid;
  border-bottom: 5px solid;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%) rotate(-40deg);
          transform: translateY(-50%) rotate(-40deg);
  opacity: 0;
}
.contact .checkbox input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.contact .checkbox input[type=checkbox] {
  position: absolute;
  left: -1000%;
  opacity: 0;
}
.contact .checkbox a {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact .checkbox a:hover {
  opacity: 0.6;
}

textarea {
  height: 150px;
  resize: none;
}

.submit {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .submit {
    margin-top: 30px;
  }
}
.submit .section-btn a {
  font-size: 30px;
}
@media screen and (max-width: 1000px) {
  .submit .section-btn a {
    font-size: 20px;
  }
}
.submit .section-btn {
  text-align: center;
}
.submit input {
  position: absolute;
  left: -1000%;
  opacity: 0;
}

.dd-radio label {
  display: block;
  margin-top: 10px;
}
.dd-radio span {
  position: relative;
  padding-left: 30px;
}
.dd-radio span::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid;
  border-radius: 50%;
}
.dd-radio span::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 2.5px;
  width: 13px;
  height: 13px;
  border: 1px solid #000;
  background: #000;
  border-radius: 50%;
  opacity: 0;
}
.dd-radio input {
  position: absolute;
  left: -1000%;
  opacity: 0;
}
.dd-radio input:checked + span::after {
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .header {
    max-width: 500px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }
}
.job1 p {
  line-height: 2;
}

.voice {
  background: url(../img/voice-bg.webp) no-repeat center center/cover;
}
.voice ul li {
  margin-bottom: 40px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .voice ul li {
    margin-bottom: 20px;
    display: block;
  }
}
.voice ul li .img {
  width: 33%;
}
@media screen and (max-width: 1000px) {
  .voice ul li .img {
    width: 100%;
  }
}
.voice ul li .contents {
  width: 67%;
  padding: 20px 40px;
}
@media screen and (max-width: 1000px) {
  .voice ul li .contents {
    width: 100%;
    padding: 20px;
  }
}
.voice ul li .contents h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .voice ul li .contents h3 {
    font-size: 20px;
  }
}
.voice ul li .contents .lead {
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .voice ul li .contents .lead {
    font-size: 18px;
  }
}

.company2 .btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .company2 .btn {
    margin-top: 30px;
  }
}
.company2 .section-btn {
  text-align: center;
}
.company2 .section-btn a {
  font-size: 30px;
}
@media screen and (max-width: 1000px) {
  .company2 .section-btn a {
    font-size: 20px;
  }
}

.voice2 {
  background: url(../img/voice2.webp) no-repeat center center/cover;
}

.voice3 {
  background: url(../img/voice3.webp) no-repeat center center/cover;
}

@media screen and (max-width: 1000px) {
  .common-mv .main-title {
    font-size: 27px;
  }
}
@media screen and (min-width: 1001px) {
  .top-news h2 {
    font-size: 28px;
    margin-right: 40px;
  }
  .top-news .flex .right {
    margin-left: 40px;
  }
}
.pagination {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination a,
.pagination span {
  display: inline-block;
  font-size: 20px;
  margin: 0 10px;
  font-weight: 700;
}
.pagination span {
  color: #EC576B;
}
.pagination a {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination a:hover {
  opacity: 0.6;
}

.single .ul2 li {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.single .ul2 li .title {
  padding: 10px;
}
.single .ul2 li .time2 {
  padding: 10px 10px 0;
}

#toc_container.toc_white {
  display: none;
}

blockquote {
  background: #d9d8d8;
  margin: 0;
  padding: 20px;
  margin: 10px 0;
}

.common-mv .main-title {
  letter-spacing: 5px;
}

@media screen and (max-width: 1000px) {
  .common-mv .main-title {
    letter-spacing: 3px;
  }
  .business1 h2,
  .about1 h2,
  .about2 h2 {
    font-size: 24px;
    width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 70px;
  }
  .business1 .flex,
  .about1 .flex,
  .about2 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .business1 .img,
  .about1 .img,
  .about2 .img {
    margin-right: 0;
    width: 100%;
    margin-left: 0;
  }
  .business1 .inner .bg-text,
  .about1 .inner .bg-text,
  .about2 .inner .bg-text {
    position: initial;
    text-align: center;
    margin-top: 10px;
  }
  .about2 .right {
    width: 100%;
  }
  .cta-contact .section-title {
    text-align: left;
  }
  .business-page .inner {
    padding: 0;
  }
  .business-page .flex h2 {
    line-height: 1.5;
    padding: 0 20px;
  }
  .business-page .bg-text {
    bottom: 8%;
  }
  .business-page {
    padding-bottom: 65px;
  }
  .business-page .flex h2 {
    font-size: 24px;
  }
}
.voice ul li .img .wrap {
  padding-top: 69%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .voice ul li .img .wrap {
    padding-top: 88%;
  }
}
@media screen and (max-width: 1000px) {
  .voice ul li .img .wrap {
    padding-top: 57%;
  }
}
.voice ul li .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.business-page .bg-text20251209 {
  width: 70%;
}

.sp-h2 {
  white-space: nowrap;
}
@media screen and (max-width: 1390px) {
  .sp-h2 {
    white-space: initial;
  }
}

@media screen and (max-width: 1000px) {
  .business-page .bg-text20251209 {
    bottom: 2%;
    width: 80%;
  }
}
.footer .flex .sns-area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1000px) {
  .accordion .dd {
    padding: 20px 15px;
  }
  .accordion .dd2 {
    padding: 20px 15px;
  }
  .accordion .num {
    font-size: 20px;
    width: 40px;
    min-width: 40px;
  }
  .accordion .dd2 .text {
    padding: 0;
  }
}
.text20251209-2 span {
  font-weight: 700;
}

.ja-font {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}