:root {
  --border-color: #c6c6c6;
  --border-color2: #e5d9c0;
  --border-bk-15: rgba(0, 0, 0, .15);
  --wh: #fff;
  --bk: #000;
  --bk2: #939598;
  --d-gray: #888;
  --l-gray: #eee;
  --l-gray-50: rgba(238, 238, 238, .5);
  --l-gray2: #ccc;
  --bl: #37AFD4;
  --d-bl: #3C6CBE;
  --or: #FA9678;
  --red: #f00;
  --red2: #780500;
  --ivory: #f5f0e8;
}

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

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

figure {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

strong {
  font-weight: bold;
}

sup, sub {
  font-size: 1.2rem !important;
  line-height: 1;
}
@media only screen and (max-width: 540px) {
  sup, sub {
    font-size: 1rem !important;
  }
}

/* base settings */
/* -------------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

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

button {
  border: none;
}

body {
  position: relative;
  margin: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--bk);
  font-family: "Noto Serif JP", serif;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  overflow-x: hidden;
}

a {
  color: var(--wh);
  text-decoration: none;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
a:hover {
  opacity: 0.8;
}

/* common setting
-------------------------------------------------- */
body img {
  width: 100%;
  height: auto;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

::-ms-expand {
  display: none;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.f-notosans {
  font-family: "Noto Sans JP", sans-serif;
}

.f-open {
  font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 767px) {
  .gmap {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
  }
  .gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

/* wp editor */
/* -------------------------------------------------- */
.post_content {
  overflow: hidden;
}
.post_content a {
  color: var(--red);
  word-break: break-all;
}
.post_content a:hover {
  text-decoration: underline;
}
.post_content p {
  margin-bottom: 1em;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .post_content p {
    line-height: 1.6;
  }
}

.wp-block-image img {
  width: initial;
  width: auto;
}

.post_content ul {
  margin-left: 1.5em;
  list-style-type: inherit;
}

.post_content ol {
  margin-left: 1.5em;
  list-style-type: decimal;
}

.wp-block-image figcaption {
  margin-bottom: 1em;
  margin-top: 1em;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media only screen and (min-width: 768px) {
  .wp-block-image figcaption {
    font-size: 1.6rem;
  }
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* parts */
/* -------------------------------------------------------- */
.container {
  margin: 0 auto;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1260px;
}
@media only screen and (max-width: 767px) {
  .container {
    padding-left: 26px;
    padding-right: 26px;
  }
}

#pagetop a {
  width: 60px;
  height: 60px;
  display: block;
}
@media only screen and (max-width: 767px) {
  #pagetop a {
    width: 30px;
    height: 30px;
  }
}

#pagetop.f_fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  #pagetop.f_fixed {
    bottom: 12px;
    right: 12px;
  }
}

/* animation */
/* ------------------------------------ */
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes fadeIn {
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

/*
.fadeInDown {
  opacity: 0;
  transform: translateY(-100px);
}

.fadeInLeft {
  opacity: 0;
  transform: translate(-100px, 0);
}

.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}

.fadeInCenter {
  opacity: 0;
}
*/
/* bread_crumb */
/* ------------------------------------ */
/*
.crumb {
  border-top: 1px solid #cedadd;
  padding: 20px 0;
  .container {
    max-width: variable.$breakpoint_cnts !important;
  }
  .aioseo-breadcrumbs {
    color: #959fa8;
    font-size: 1.2rem;
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
  }
  a {
    color: #959fa8;
  }
  span {
    margin: 0 5px;
    white-space: nowrap;
    &:first-of-type {
      margin: 0 5px 0 0;
    }
    a {
      text-decoration: none;
      -webkit-transition: none;
      transition: none;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
*/
/* header */
/* -------------------------------------------------------- */
#header {
  position: fixed;
  width: 100%;
  padding: 10px 30px;
  height: 130px;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  #header {
    padding: 10px 15px;
    height: 60px;
  }
}
#header.h_fixed02, #header.h_fixed {
  /*
      position: fixed;
      z-index: 9999;
  */
  height: 70px;
  background: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 767px) {
  #header.h_fixed02, #header.h_fixed {
    height: 60px;
  }
}
#header.h_fixed02 .h_inner .h_logo, #header.h_fixed .h_inner .h_logo {
  max-width: 54px;
}
#header .h_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
  height: 100%;
  line-height: 1;
  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;
  gap: 0 10px;
}
#header .h_inner .h_logo {
  max-width: 108px;
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_logo {
    max-width: 44px;
  }
}
#header .h_inner .gnav {
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 1023px) {
  #header .h_inner .gnav {
    display: none;
  }
}
#header .h_inner .gnav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#header .h_inner .gnav ul li {
  position: relative;
  margin: 0 30px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s cubic-bezier(0.26, 0.16, 0.1, 1), -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  /*
  &.parent {
    padding-right: 20px;
    a {
      span {
        &::before {
          position: absolute;
          content: '';
          width:0;
          height:0;
          border-style:solid;
          border-width: 8px 6px 0 6px;
          border-color: #8E2925 transparent transparent transparent;
          top: 6px;
          right: 0;
          transform: none;
        }
      }
    }
    .child {
      position: absolute;
      margin: 0 auto;
      padding: 10px;
      top: 40px;
      width: 182px;
      transition: all 0.5s;
      overflow: hidden;
      background: #f4e9e9;
      border-radius: 10px;
      opacity: 0;
      display: none;
      @media only screen and (max-width: variable.$breakpoint_cnts) {
      }
      &.active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: wrap;
        opacity: 1;
      }
      li {
        width: 100%;
        margin: 0;
        padding: 0;
        &:first-of-type {
          a {
            padding: 6px 10px 3px 20px;
          }
        }
        a {
          padding: 3px 10px 3px 27px;
          width: 100%;
          font-size: 1.4rem;
          font-weight: 700;
          line-height: 1.5;
          display: inline-block;
          transition: 0.5s;
          @media only screen and (max-width: variable.$breakpoint_cnts) {
            font-size: 1.4vw;
          }
          &:hover {
            color: var(--red);
          }
        }
      }
    }
  }
  */
}
#header .h_inner .gnav ul li:first-of-type {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
#header .h_inner .gnav ul li:nth-of-type(2) {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}
#header .h_inner .gnav ul li:nth-of-type(3) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
#header .h_inner .gnav ul li:nth-of-type(4) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
#header .h_inner .gnav ul li:nth-of-type(5) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
#header .h_inner .gnav ul li a span {
  padding: 0 5px;
  cursor: pointer;
  color: var(--wh);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
}
#header .h_inner .gnav ul li a span::after {
  position: relative;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--wh);
  display: block;
  top: 0.6em;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), -webkit-transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
#header .h_inner .gnav ul li a:hover span::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
#header .menu_button {
  position: fixed;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 15px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  z-index: 99999;
}
@media only screen and (min-width: 1024px) {
  #header .menu_button {
    display: none;
  }
}
#header .menu_button span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--wh);
}
#header .menu_button span + span {
  margin-top: 7px;
}
#header .menu_button.close::after {
  content: "";
}
#header .menu_button.close span {
  position: relative;
}
#header .menu_button.close span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 1px;
}
#header .menu_button.close span:nth-of-type(2) {
  display: none;
}
#header .menu_button.close span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}
#header .menu_button.close span + span {
  margin-top: 0;
}
#header .nav_content {
  position: fixed;
  padding: 40px 40px;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-overflow-scrolling: touch;
  background: var(--bk);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@media only screen and (min-width: 1024px) {
  #header .nav_content {
    display: none;
  }
}
#header .nav_content.active {
  visibility: visible;
  opacity: 1;
}
#header .nav_content nav {
  margin: 0 auto;
  padding-bottom: 100px;
}
#header .nav_content nav a {
  margin-bottom: 38px;
  color: var(--wh);
  font-weight: 700;
  display: block;
}
#header .nav_content nav .parent {
  margin-bottom: 38px;
  padding: 15px;
  border-radius: 10px;
  background: var(--red2);
}
#header .nav_content nav .parent a {
  margin-bottom: 28px;
}
#header .nav_content nav .parent a span {
  position: relative;
  display: block;
}
#header .nav_content nav .parent a span::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #FFFFFF transparent;
  top: 6px;
  right: 0;
  -webkit-transform: none;
          transform: none;
}
#header .nav_content nav .parent .child li a {
  margin-bottom: 26px;
  padding-left: 15px;
}
#header .nav_content nav .parent .child li:last-of-type a {
  margin-bottom: 0;
}

/* footer */
/* -------------------------------------------------------- */
footer {
  padding: 26px 0 13px;
  color: var(--wh);
  background: var(--bk);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 20px 0;
    text-align: center;
  }
}
footer .flogo {
  margin: 0 auto;
  width: 96px;
}
footer .fnav {
  margin: 20px auto 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 2em;
}
@media only screen and (max-width: 767px) {
  footer .fnav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px 0;
  }
}
@media only screen and (max-width: 767px) {
  footer .fnav a {
    font-size: 1.2rem;
  }
}
footer .copyright {
  color: var(--wh);
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
}

.under footer {
  padding: 30px 0 20px;
}
@media only screen and (max-width: 767px) {
  .under footer {
    padding: 36px 0 16px;
  }
}

/* home */
/* ------------------------------------ */
.home .contbg {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .home .contbg::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 100%;
    background: var(--l-gray-50);
    top: 0;
    right: 0;
    z-index: -1;
  }
}
.home .hero {
  position: relative;
  top: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/top/hero.jpg) no-repeat center center/cover;
}
.home .hero .hero_txt_wrap {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .hero .hero_txt_wrap .hero_txt {
  width: 80%;
  max-width: 898px;
}
.home .hero .hero_news {
  position: absolute;
  padding: 30px 40px 20px;
  width: 60%;
  background: var(--bk);
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .home .hero .hero_news {
    padding: 15px 20px 20px;
    width: 100%;
  }
}
.home .hero .hero_news dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
}
@media only screen and (max-width: 767px) {
  .home .hero .hero_news dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.home .hero .hero_news dl dt {
  margin-right: 56px;
  width: 40px;
}
@media only screen and (max-width: 767px) {
  .home .hero .hero_news dl dt {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .home .hero .hero_news dl dt img {
    max-width: 54px;
  }
}
.home .hero .hero_news dl dd {
  color: var(--wh);
  font-size: 1.4rem;
}
.home .hero .hero_news dl dd.date {
  margin-right: 30px;
  color: var(--d-gray);
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .home .sticky {
    position: sticky;
    top: 130px;
  }
}
.home .ttlbox {
  width: 46%;
}
@media only screen and (max-width: 767px) {
  .home .ttlbox {
    margin-bottom: 50px;
    width: 100%;
  }
}
.home .ttlbox h2 {
  position: relative;
  margin-bottom: 60px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .home .ttlbox h2 {
    margin-bottom: 40px;
  }
}
.home .ttlbox h2::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 2px;
  background: var(--bk);
  bottom: -17px;
  left: 0;
}
.home .ttlbox h2 .en {
  font-size: 3rem;
}
@media only screen and (max-width: 767px) {
  .home .ttlbox h2 .en {
    font-size: 2.8rem;
  }
}
.home .ttlbox p {
  font-size: 3.6rem;
  letter-spacing: -0.05em;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .home .ttlbox p {
    font-size: 1.8rem;
  }
}
.home .cont {
  width: 52%;
}
.home .sec_about {
  padding-top: 150px;
  margin-bottom: 80px;
  /*
      background: url(../img/top/about_fig.webp) no-repeat 0 bottom / 100% auto, linear-gradient(180deg, rgba(166,215,241,1) 0%, rgba(232, 245, 251,1)100%);
    */
}
@media only screen and (max-width: 767px) {
  .home .sec_about {
    padding-top: 75px;
    margin-bottom: 40px;
  }
}
.home .sec_about .about_head {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 60px;
}
@media only screen and (max-width: 767px) {
  .home .sec_about .about_head {
    margin-bottom: 50px;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .home .sec_about .about_head .cont {
    width: 100%;
  }
}
.home .sec_about .about_head .cont p {
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 1.6;
}
.home .sec_about .about_head .cont p.lead {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .home .sec_about .about_head .cont p.lead {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .home .sec_about .about_head .cont p.just {
    text-align: justify;
  }
}
.home .sec_about .about_head .cont ul {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .home .sec_about .about_head .cont ul {
    margin-bottom: 30px;
  }
}
.home .sec_about .about_head .cont ul li {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .home .sec_about .about_head .cont ul li {
    font-size: 2rem;
  }
}
.home .sec_about .about_cont {
  padding: 120px 0;
  background: var(--wh);
}
@media only screen and (max-width: 767px) {
  .home .sec_about .about_cont {
    padding: 60px 0;
  }
}
.home .sec_about .about_cont .inner {
  margin: 0 auto;
  max-width: 1000px;
}
.home .sec_about .about_cont .inner h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .home .sec_about .about_cont .inner h3 {
    margin-bottom: 10px;
  }
}
.home .sec_about .about_cont .inner h3 span {
  font-size: 2.4rem;
}
.home .sec_about .about_cont .about_concept {
  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;
}
.home .sec_about .about_cont .about_concept .box {
  position: relative;
  margin: 40px 0 0;
  padding-top: 40px;
  width: 43%;
  max-width: 402px;
  border-top: 1px solid var(--border-bk-15);
}
.home .sec_about .about_cont .about_concept .box:first-of-type, .home .sec_about .about_cont .about_concept .box:nth-of-type(2) {
  border-top: none;
}
.home .sec_about .about_cont .about_concept .box:nth-of-type(2n)::before {
  position: absolute;
  content: "";
  margin: 40px 0;
  width: 1px;
  height: calc(100% - 40px);
  top: 0;
  left: -25%;
  background: var(--border-bk-15);
}
@media only screen and (max-width: 767px) {
  .home .sec_about .about_cont .about_concept .box {
    width: 100%;
  }
  .home .sec_about .about_cont .about_concept .box:first-of-type {
    padding-top: 0;
  }
  .home .sec_about .about_cont .about_concept .box:nth-of-type(2) {
    border-top: 1px solid var(--border-bk-15);
  }
}
.home .sec_about .about_cont .about_concept .box h4 {
  margin: 20px 0;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .home .sec_about .about_cont .about_concept .box h4 {
    font-size: 2rem;
  }
}
.home .sec_about .about_cont .about_concept .box p {
  line-height: 1.6;
}
.home .sec_about .about_cont .about_concept .box p + p {
  margin-top: 1em;
}
.home .sec_business {
  padding-top: 150px;
  padding-bottom: 40px;
  background: var(--wh);
}
@media only screen and (max-width: 767px) {
  .home .sec_business {
    padding-top: 75px;
    padding-bottom: 20px;
  }
}
.home .sec_business .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 60px;
}
@media only screen and (max-width: 767px) {
  .home .sec_business .container {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .home .sec_business .cont {
    width: 100%;
  }
}
.home .sec_business .cont h3 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.home .sec_business .cont ul {
  margin-top: 1em;
  margin-bottom: 2.5em;
  line-height: 1.6;
}
.home .sec_business .cont ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.home .sec_members {
  padding-top: 150px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .home .sec_members {
    padding-top: 75px;
    padding-bottom: 20px;
  }
}
.home .sec_members .member {
  margin-top: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .home .sec_members .member {
    margin-top: 65px;
    display: block;
  }
}
.home .sec_members .member figure {
  max-width: 238px;
}
@media only screen and (max-width: 767px) {
  .home .sec_members .member figure {
    margin: 0 auto 40px;
  }
}
@media only screen and (max-width: 767px) {
  .home .sec_members .member .cont {
    width: 100%;
  }
}
.home .sec_members .member .cont .job {
  margin-bottom: 10px;
}
.home .sec_members .member .cont h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .home .sec_members .member .cont h3 {
    line-height: 1.6;
  }
}
.home .sec_members .member .cont h3 span {
  font-size: 3.8rem;
}
@media only screen and (max-width: 767px) {
  .home .sec_members .member .cont h3 span {
    font-size: 2.2rem;
  }
}
.home .sec_members .member .cont p {
  line-height: 1.6;
}
.home .sec_members .member .cont p + p {
  margin-top: 1em;
}
.home .sec_members .member .cont ul {
  margin-bottom: 1em;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .home .sec_members .member .cont ul {
    margin-bottom: 30px;
  }
}
.home .sec_members .member .cont ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.home .sec_company {
  padding-top: 120px;
  padding-bottom: 120px;
  color: var(--wh);
  background: var(--bk);
}
@media only screen and (max-width: 767px) {
  .home .sec_company {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.home .sec_company .ttlbox h2::after {
  background: var(--wh);
}
.home .sec_company .comlogo {
  margin: 0 auto 20px;
  width: 190px;
}
.home .sec_company .comtxt {
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .home .sec_company .comtxt {
    font-size: 2rem;
  }
}
.home .sec_company p {
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .home .sec_company p {
    font-size: 1.6rem;
  }
}
.home .sec_company p + p {
  margin-top: 20px;
}
.home .sec_company .gmap {
  margin: 20px auto;
  width: 100%;
  max-width: 1040px;
  max-height: 362px;
  border: 8px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .home .sec_company .gmap {
    border: 4px solid rgba(255, 255, 255, 0.2);
  }
}
.home .sec_company .gmap iframe {
  width: 100%;
}
.home .sec_contact {
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--l-gray-50);
}
@media only screen and (max-width: 767px) {
  .home .sec_contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.home .sec_contact sup {
  color: var(--red);
  font-size: 2.6rem;
  font-weight: 700;
}
.home .sec_contact .contact_head {
  margin: 80px 0 40px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .home .sec_contact .contact_head {
    margin: 40px 0;
  }
}
.home .sec_contact .contact_head p {
  font-size: 2rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .home .sec_contact .contact_head p {
    font-size: 1.6rem;
    text-align: left;
  }
}
.home .sec_contact .contact_head p + p {
  margin-top: 1em;
}
.home .sec_contact .form_area dl {
  margin-bottom: 40px;
}
.home .sec_contact .form_area dl dt {
  margin-bottom: 14px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .home .sec_contact .form_area dl dt {
    font-size: 1.6rem;
  }
}
.home .sec_contact .form_area .form_btn {
  position: relative;
  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;
}
.home.confirm .sec_contact, .home.thanks .sec_contact {
  padding-top: 200px;
}
@media only screen and (max-width: 767px) {
  .home.confirm .sec_contact, .home.thanks .sec_contact {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .home.thanks .sec_contact .contact_head p {
    font-size: 1.8rem;
    text-align: center;
  }
}

/* under */
/* ------------------------------------ */
.under article {
  padding-top: 200px;
  padding-bottom: 100px;
  background: var(--l-gray-50);
}
@media only screen and (max-width: 767px) {
  .under article {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.under article .ttlbox {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .under article .ttlbox {
    margin-bottom: 50px;
  }
}
.under article .ttlbox h1 {
  position: relative;
  margin-bottom: 60px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .under article .ttlbox h1 {
    margin-bottom: 40px;
  }
}
.under article .ttlbox h1::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 2px;
  background: var(--bk);
  bottom: -17px;
  left: 0;
}
.under article .ttlbox h1 .en {
  font-size: 3rem;
}
@media only screen and (max-width: 767px) {
  .under article .ttlbox h1 .en {
    font-size: 2.8rem;
  }
}
.under article .cont {
  padding: 80px;
  background: var(--wh);
}
@media only screen and (max-width: 767px) {
  .under article .cont {
    padding: 40px 20px;
  }
}

/* antisocial */
/* ------------------------------------ */
.under.antisocial .cont p {
  margin-bottom: 1em;
  line-height: 2;
}
.under.antisocial .cont p.ri {
  margin-bottom: 0;
  text-align: right;
}
.under.antisocial .cont ol {
  margin-top: 2.4em;
  margin-bottom: 2em;
  margin-left: 4em;
  list-style-type: decimal;
  line-height: 2.6;
}

/* security */
/* ------------------------------------ */
.under.security h2 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-bk-15);
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .under.security h2 {
    font-size: 1.8rem;
  }
}
.under.security p {
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .under.security p {
    font-size: 1.4rem;
  }
}
.under.security p.lead {
  margin-bottom: 3em;
}
.under.security p.sign {
  text-align: right;
}
.under.security p.sign span {
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .under.security p.sign span {
    font-size: 2rem;
  }
}
.under.security dl {
  margin-bottom: 3em;
}
.under.security dl dt {
  margin-bottom: 0.8em;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .under.security dl dt {
    font-size: 1.6rem;
  }
}
.under.security dl dd {
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .under.security dl dd {
    font-size: 1.4rem;
  }
}
.under.security dl dd ul li {
  padding-left: 3em;
  text-indent: -3em;
}

/* error404 */
/* -------------------------------------------------------- */
.error404 .sec_404 {
  padding: 140px 0;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.error404 .sec_404 h1 {
  margin-bottom: 40px;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .error404 .sec_404 h1 {
    font-size: 2.6rem;
  }
}
.error404 .sec_404 h1 span {
  font-size: 2.4rem;
  letter-spacing: 0;
  display: block;
}
.error404 .sec_404 p {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
.error404 .sec_404 p.lead {
  margin-bottom: 60px;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .error404 .sec_404 p.lead {
    margin-bottom: 40px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 320px) {
  .error404 .sec_404 p.lead {
    font-size: 1.4rem;
  }
}
.error404 .sec_404 .btnbox {
  margin-top: 80px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .error404 .sec_404 .btnbox {
    margin-top: 50px;
  }
}

/* form */
/* -------------------------------------------------------- */
.form_area {
  /*
    input[type="checkbox"]{
      padding: 15px;
      width: 1.2em;
      height: 1.2em;
      cursor: pointer;
      transform: translateY(2px);
      &:checked {
        background: var(--red);
      }
    }
  */
  /* confirm */
  /* thanks */
}
.form_area .err {
  padding-top: 10px;
  color: var(--red);
  display: block;
}
.form_area input::-webkit-input-placeholder, .form_area textarea::-webkit-input-placeholder {
  color: var(--l-gray2);
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
}
.form_area input::-moz-placeholder, .form_area textarea::-moz-placeholder {
  color: var(--l-gray2);
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
}
.form_area input:-ms-input-placeholder, .form_area textarea:-ms-input-placeholder {
  color: var(--l-gray2);
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
}
.form_area input::-ms-input-placeholder, .form_area textarea::-ms-input-placeholder {
  color: var(--l-gray2);
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
}
.form_area input::placeholder,
.form_area textarea::placeholder {
  color: var(--l-gray2);
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .form_area input::-webkit-input-placeholder, .form_area textarea::-webkit-input-placeholder {
    font-size: 1.6rem;
  }
  .form_area input::-moz-placeholder, .form_area textarea::-moz-placeholder {
    font-size: 1.6rem;
  }
  .form_area input:-ms-input-placeholder, .form_area textarea:-ms-input-placeholder {
    font-size: 1.6rem;
  }
  .form_area input::-ms-input-placeholder, .form_area textarea::-ms-input-placeholder {
    font-size: 1.6rem;
  }
  .form_area input::placeholder,
  .form_area textarea::placeholder {
    font-size: 1.6rem;
  }
}
.form_area input[type=text],
.form_area input[type=email],
.form_area input[type=tel],
.form_area textarea, .form_area select {
  padding: 20px;
  width: 100%;
  background: var(--wh);
  border: none;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .form_area input[type=text],
  .form_area input[type=email],
  .form_area input[type=tel],
  .form_area textarea, .form_area select {
    padding: 19px 20px;
  }
}
.form_area textarea {
  height: 290px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .form_area textarea {
    height: 150px;
  }
}
.form_area .form_btn {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .form_area .form_btn {
    margin-top: 50px;
  }
}
.form_area .btn_back,
.form_area input[type=submit] {
  width: 100%;
  height: 90px;
  color: var(--wh);
  font-family: inherit;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--bk) url(../img/common/arrow_w.svg) no-repeat 70% 53%/9px 14px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 540px) {
  .form_area .btn_back,
  .form_area input[type=submit] {
    height: 70px;
    font-size: 1.8rem;
    background: var(--bk) url(../img/common/arrow_w.svg) no-repeat 86% 53%/9px 14px;
  }
}
.form_area .btn_back:hover,
.form_area input[type=submit]:hover {
  opacity: 0.7;
}
.form_area.confirm dd {
  padding: 15px 10px;
  font-size: 1.8rem;
  line-height: 1.4;
  background: var(--l-gray-50);
}
@media only screen and (max-width: 767px) {
  .form_area.confirm dd {
    font-size: 1.6rem;
  }
}
.form_area.confirm .form_btn .btn_back,
.form_area.confirm .form_btn input[type=submit] {
  width: 46%;
}
.form_area.thanks {
  padding-bottom: 140px;
}
.form_area.thanks p {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .form_area.thanks p {
    font-size: 1.6rem;
  }
}