@charset "UTF-8";
a,
a:visited,
a:hover {
  text-decoration: none;
  color: inherit;
}

body {
  position: static;
}

body::before {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 2s;
}

body.load::before {
  opacity: 0;
  z-index: -1;
}

body.fixed {
  position: fixed;
  width: 100%;
}

.wrapper {
  overflow-x: hidden;
}

.wrapper.blur {
  -ms-filter: blur(8px);
  filter: blur(8px);
  /*filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a' x='0' y='0' width='1' height='1' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='10' result='b'/%3E%3CfeMorphology operator='dilate' radius='10'/%3E%3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in='b'/%3E%3C/feMerge%3E%3C/filter%3E%3C/svg%3E#a");*/
}

.unit_2col {
  display: flex;
  justify-content: space-between;
}

.unit_2col .col_a,
.unit_2col .col_b {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .unit_2col {
    display: block;
  }
  .unit_2col .col_a,
  .unit_2col .col_b {
    width: 100%;
  }
}

.btn_more {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .btn_more {
    text-align: center;
    margin-top: 20px;
  }
}

.btn_more a {
  width: 260px;
  font-size: 1.6rem;
  letter-spacing: .3em;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  color: #0080cb;
  border: 1px solid #0080cb;
  padding: 14px 20px;
  box-sizing: border-box;
  position: relative;
  transition: .3s;
}

.btn_more a::before {
  content: '';
  width: 35px;
  height: 1px;
  background: #0080cb;
  position: absolute;
  top: 50%;
  right: 10px;
}

.btn_more a::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #0080cb;
  border-radius: 100%;
  position: absolute;
  top: calc(50% - 2.5px);
  right: 40px;
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pc .btn_more a:hover {
  color: #fff;
  background: #0080cb;
  border-radius: 12px;
}

.pc .btn_more a:hover::before, .pc .btn_more a:hover::after {
  background: #fff;
}

.pc .btn_more a:hover::after {
  right: 8px;
}

.btn_more.white a {
  color: #fff;
  border-color: #fff;
}

.btn_more.white a::before, .btn_more.white a::after {
  background: #fff;
}

.pc .btn_more.white a:hover {
  color: #0080cb;
  background: #fff;
}

.pc .btn_more.white a:hover::before, .pc .btn_more.white a:hover::after {
  background: #0080cb;
}

/*.js_inview {
    opacity: 0;
    transform: translateY(20px);
	
	&.done {
		opacity: 1;
		transform: none;
		transition: opacity 1s, transform 1s;
	}
}*/
@media screen and (min-width: 415px) {
  .tel {
    pointer-events: none !important;
  }
}

@media screen and (max-width: 767px) {
  .br_pc {
    display: none;
  }
}

.br_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .br_sp {
    display: block;
  }
}

/************************************************

	header

*************************************************/
#header {
  font-size: 1.4rem;
  position: relative;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  #header {
    height: 60px;
  }
}

#header::before {
  content: '';
  width: 100%;
  height: 90px;
  position: absolute;
  top: 0;
  left: 0;
  transition: .5s;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  #header::before {
    height: 60px;
  }
}

#header .logo {
  float: left;
  width: 23vw;
  max-width: 280px;
  height: 90px;
  padding-left: 15px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media screen and (max-width: 1000px) {
  #header .logo {
    width: 230px;
  }
}

@media screen and (max-width: 767px) {
  #header .logo {
    width: 45vw;
    height: 60px;
    padding-left: 3vw;
  }
}

#header .logo img {
  width: 100%;
}

#header .gnav {
  float: right;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

@media screen and (max-width: 1000px) {
  #header .gnav {
    display: none;
  }
}

#header .gnav li:nth-of-type(-n+4) {
  margin-right: 2vw;
  padding: 33px 0;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

#header .gnav li.recruit, #header .gnav li.contact {
  width: 11vw;
  margin-right: 10px;
  transition: .3s;
}

@media screen and (max-width: 1200px) {
  #header .gnav li.recruit, #header .gnav li.contact {
    width: 11vw;
  }
}

#header .gnav li.recruit > a,
#header .gnav li.contact > a {
  display: block;
  width: 100%;
  padding: 33px 0 15px;
  text-align: center;
  border-radius: 0 0 12px 12px;
  transition: .5s;
}

#header .gnav li.recruit > a {
  background: #0080cb;
}

#header .gnav li.contact > a {
  background: #de7e7e;
}

#header .gnav li.recruit {
  position: relative;
}

@media screen and (min-width: 1000px) {
  #header .gnav li.recruit .innermenu {
    position: absolute;
    top: 88%;
    right: 0;
    background: #0080cb;
    text-align: center;
    border-radius: 0 0 12px 12px;
    font-size: 1.3rem;
    padding: 28px;
    box-sizing: border-box;
    width: 15vw;
    text-align: left;
    display: none;
  }
  #header .gnav li.recruit .innermenu p {
    opacity: 0;
    transition: .5s ease .5s;
  }
  #header .gnav li.recruit .innermenu p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 8px;
    margin-top: 8px;
  }
  #header .gnav li.recruit .innermenu p.fade {
    opacity: 1;
  }
}

#header .gnav li.recruit.open {
  width: 15vw;
}

#header .gnav li.privacy {
  display: none;
}

@media screen and (max-width: 1000px) {
  #header .gnav li.privacy {
    display: block;
  }
}

#header .gnav a {
  color: #fff;
}

#header.fixed:not(.open)::before {
  background: #fff;
}

#header.fixed:not(.open) .gnav li:nth-of-type(-n+4) {
  text-shadow: none;
}

#header.fixed:not(.open) .gnav li:nth-of-type(-n+4) a {
  color: #333;
}

#header.fixed:not(.open) .gnav .recruit a,
#header.fixed:not(.open) .gnav .contact a {
  padding: 33px 0 15px;
}

#header.open::before {
  height: 100vh;
  background: rgba(0, 128, 203, 0.7) !important;
}

#header.open .gnav {
  display: block;
  position: absolute;
  width: 100%;
  padding: 0 20px;
  margin-top: 70px;
  box-sizing: border-box;
}

@keyframes fadeIn {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

#header.open .gnav li {
  opacity: 0;
  animation: fadeIn 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
  text-shadow: none;
  text-align: center;
  font-size: 1.6rem;
  padding: 0;
  margin-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  width: 100%;
}

#header.open .gnav li a {
  display: block;
  padding: 18px 0;
  background: none !important;
}

#header.open .gnav li:nth-of-type(2) {
  animation-delay: .05s;
}

#header.open .gnav li:nth-of-type(3) {
  animation-delay: .1s;
}

#header.open .gnav li:nth-of-type(4) {
  animation-delay: .15s;
}

#header.open .gnav li:nth-of-type(5) {
  animation-delay: .2s;
}

#header.open .gnav li:nth-of-type(6) {
  animation-delay: .25s;
}

#header.open .gnav li:nth-of-type(7) {
  animation-delay: .3s;
}

#header.open .gnav .innermenu {
  font-size: 1.3rem;
  padding-bottom: 18px;
}

#header.open .gnav .innermenu p {
  padding: 10px 0;
}

#header.open .gnav .innermenu p a {
  display: inline;
  padding: 0;
}

.slide03 #header:not(.open) .gnav li:nth-of-type(-n+4) a {
  color: #333;
  text-shadow: none;
  font-weight: 500;
}

/************************************************

	ハンバーガーメニュー

*************************************************/
.menu-wrapper {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 40px;
  height: 26px;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 1000px) {
  .menu-wrapper {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .menu-wrapper {
    width: 24px;
  }
}

.hamburger-menu {
  position: relative;
  transform: translateY(12px);
  background: #fff;
}

.hamburger-menu, .hamburger-menu:after, .hamburger-menu:before {
  width: 40px;
  height: 2px;
}

body.slide03 .hamburger-menu, body.slide03 .hamburger-menu:after, body.slide03 .hamburger-menu:before {
  background: #0080cb;
}

#header.fixed .hamburger-menu, #header.fixed .hamburger-menu:after, #header.fixed .hamburger-menu:before {
  background: #0080cb;
}

@media screen and (max-width: 767px) {
  .hamburger-menu, .hamburger-menu:after, .hamburger-menu:before {
    width: 24px;
  }
}

.hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  background: #fff;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (max-width: 767px) {
  .hamburger-menu:before {
    bottom: 8.4px;
  }
}

.hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  background: #fff;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (max-width: 767px) {
  .hamburger-menu:after {
    top: 8.4px;
  }
}

.hamburger-menu.animate {
  background: transparent !important;
}

.hamburger-menu.animate:after, .hamburger-menu.animate:before {
  background: #fff !important;
}

.hamburger-menu.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

/************************************************

	footer

*************************************************/
#footer {
  color: #fff;
  font-weight: 100;
  position: relative;
}

#footer a {
  opacity: .6;
  transition: .3s;
}

.pc #footer a:hover {
  opacity: 1;
}

#footer .block01 {
  background: #333;
}

#footer .block01 .unit_2col {
  max-width: 1300px;
  width: 90%;
  margin: auto;
  padding: 80px 0 70px;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  #footer .block01 .unit_2col {
    padding: 40px 0 20px;
  }
}

#footer .block01 .logo img {
  width: 360px;
}

@media screen and (max-width: 767px) {
  #footer .block01 .logo img {
    width: 80%;
  }
}

#footer .block01 .address {
  font-size: 1.2rem;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  #footer .block01 .address {
    margin-top: 20px;
  }
}

#footer .block01 .footer_nav01 {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  #footer .block01 .footer_nav01 {
    margin-top: 30px;
  }
}

#footer .block01 .footer_nav01 li {
  width: 33%;
  margin-bottom: 3%;
}

@media screen and (max-width: 767px) {
  #footer .block01 .footer_nav01 li {
    width: 45%;
    margin-bottom: 10px;
  }
}

#footer .block02 {
  background: #222;
}

#footer .block02 .inner {
  max-width: 1300px;
  width: 90%;
  margin: auto;
  padding: 30px 0;
  display: flex;
}

@media screen and (max-width: 767px) {
  #footer .block02 .inner {
    flex-wrap: wrap;
  }
}

#footer .block02 .copy {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .3em;
}

@media screen and (max-width: 767px) {
  #footer .block02 .copy {
    order: 2;
    margin-top: 20px;
  }
}

#footer .block02 .footer_nav02 {
  display: flex;
  font-size: 1.2rem;
  margin-left: 80px;
}

@media screen and (max-width: 767px) {
  #footer .block02 .footer_nav02 {
    margin-left: 0;
  }
}

#footer .block02 .footer_nav02 li {
  margin-right: 30px;
}

#footer .page_top {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .3em;
  transform: rotate(90deg);
  position: absolute;
  bottom: 60px;
  right: 0;
}

#footer .page_top a {
  opacity: 1;
  position: relative;
}

#footer .page_top a::before {
  content: '';
  width: 90px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -10px;
  right: 30px;
}

#footer .page_top a::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  bottom: -12px;
  right: 28px;
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pc #footer .page_top a:hover::after {
  right: 118px;
}

/************************************************

	下層共通

*************************************************/
.page_fv {
  width: 100%;
  height: 700px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .page_fv {
    height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .page_fv {
    height: 250px;
  }
}

.under_page_fv {
  width: 100%;
  height: 400px;
  background: no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .under_page_fv {
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  .under_page_fv {
    height: 200px;
  }
}

.under_page_fv h1 {
  color: #fff;
  text-align: center;
  padding-top: 80px;
  line-height: initial;
}

@media screen and (max-width: 768px) {
  .under_page_fv h1 {
    padding-top: 30px;
  }
}

.under_page_fv h1 .en {
  display: inline-block;
  font-family: Oswald, sans-serif;
  transform: skewX(-15deg) translateX(5px);
  -webkit-transform: skewX(-15deg) translateX(5px);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: .2em;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .under_page_fv h1 .en {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .under_page_fv h1 .en {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}

.under_page_fv h1 .jp {
  display: block;
  font-size: 3.2rem;
  letter-spacing: .3em;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .under_page_fv h1 .jp {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .under_page_fv h1 .jp {
    font-size: 2.2rem;
  }
}

.contents {
  margin-top: 700px;
  background: #fff;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .contents {
    margin-top: 350px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .contents {
    margin-top: 250px;
  }
}

.contents section + section {
  margin-top: 150px;
}

@media screen and (max-width: 768px) {
  .contents section + section {
    margin-top: 80px;
  }
}

.page_ttl {
  display: inline-flex;
  align-items: baseline;
  padding: 60px 80px 0 8%;
  box-sizing: border-box;
  background: #fff;
  transform: translateY(-100%);
  border-top-right-radius: 20px;
}

@media screen and (max-width: 768px) {
  .page_ttl {
    padding: 30px 20px 0 20px;
    display: block;
    width: 90%;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
    text-align: center;
  }
}

.page_ttl .en {
  display: block;
  color: #0080cb;
  font-family: 'Oswald', sans-serif;
  font-size: 5.5rem;
  letter-spacing: .25em;
  transform: skewX(-15deg) translateX(5px);
  -webkit-transform: skewX(-15deg) translateX(5px);
  line-height: 1em;
}

@media screen and (max-width: 768px) {
  .page_ttl .en {
    font-size: 4.5rem;
  }
}

@media screen and (max-width: 767px) {
  .page_ttl .en {
    font-size: 7vw;
  }
}

.page_ttl .jp {
  margin-left: 30px;
  letter-spacing: .3em;
  font-size: 1.6rem;
  font-weight: 500;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .page_ttl .jp {
    margin: 10px 0px 0 0;
  }
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

.sec_ttl {
  margin: 0 auto 70px;
  color: #0080cb;
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: .15em;
}

@media screen and (max-width: 768px) {
  .sec_ttl {
    margin-bottom: 30px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 350px) {
  .sec_ttl {
    font-size: 2rem;
  }
}

.sec_ttl .box {
  display: inline-block;
  position: relative;
}

.sec_ttl .box::after, .sec_ttl .box::before {
  content: '';
  width: 15px;
  height: 15px;
  border-top: 4px double #0080cb;
  border-left: 4px double #0080cb;
  position: absolute;
  border-top-left-radius: 8px;
}

@media screen and (max-width: 767px) {
  .sec_ttl .box::after, .sec_ttl .box::before {
    width: 10px;
    height: 10px;
    border-top-left-radius: 5px;
  }
}

.sec_ttl .box::after {
  top: -10px;
  left: -50px;
}

@media screen and (max-width: 767px) {
  .sec_ttl .box::after {
    left: -20px;
  }
}

.sec_ttl .box::before {
  transform: scale(-1, -1);
  bottom: -10px;
  right: -50px;
}

@media screen and (max-width: 767px) {
  .sec_ttl .box::before {
    right: -20px;
  }
}

.sec_ttl .en {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 100;
  display: block;
}

@media screen and (max-width: 767px) {
  .sec_ttl .en {
    font-size: 1.1rem;
  }
}

.contents section:first-of-type .sec_ttl {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .contents section:first-of-type .sec_ttl {
    margin-top: -20px;
  }
}

.link_window {
  color: #0080cb !important;
  font-family: 'Oswald', sans-serif;
  background: url("../images/ico_window.png") no-repeat right/16px;
  padding-right: 20px;
  letter-spacing: .15em;
}

.breadcrumbs {
  display: flex;
  color: #fff;
  font-size: 12px;
  position: fixed;
  top: 90px;
  left: 20px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    font-size: 10px;
    top: 70px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    top: 50px;
    left: 12px;
  }
}

.breadcrumbs li + li::before {
  content: '>';
  padding: 0 8px;
}

@media screen and (max-width: 768px) {
  .under_page_fv + .breadcrumbs {
    position: relative;
    top: auto;
    left: auto;
    color: #333;
    padding: 8px 0 0 10px;
  }
}

.dl_box01 dt {
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 25px;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .dl_box01 dt {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}

.dl_box01 dt::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 15px;
  background: #0080cb;
  border-radius: 0 10px 10px 0;
  margin-right: 25px;
}

@media screen and (max-width: 767px) {
  .dl_box01 dt::before {
    width: 15px;
    height: 12px;
    margin-right: 15px;
  }
}

.dl_box01 dd {
  padding-left: 45px;
}

@media screen and (max-width: 767px) {
  .dl_box01 dd {
    padding-left: 0;
  }
}

/************************************************

	clearfix

*************************************************/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

html {
  font-size: 62.5%;
  /*@include mq(767){
		font-size: 60%;
	}*/
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", sans-serif;
  line-height: 2;
  font-size: 1.5em;
  color: #333;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4em;
    line-height: 1.8;
  }
}

/************************************************

	fv

*************************************************/
.fv_wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .fv_wrapper {
    height: 70vh;
  }
  .fv_wrapper .swiper-container, .fv_wrapper .swiper-container * {
    height: 100%;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoomUp 1.5s cubic-bezier(0, 0.01, 0, 1) forwards;
  /*transform-origin: center left;*/
}

.swiper-slide {
  height: 100vh !important;
}

@media screen and (max-width: 768px) {
  .swiper-slide {
    height: 70vh !important;
  }
}

.slide-img {
  width: 100%;
  height: 100%;
}

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

.swiper-container::before {
  content: '';
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .swiper-container::before {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
  }
}

.slide03 .swiper-container::before {
  display: none;
}

.slide03 .main_text {
  color: #333;
  text-shadow: none;
}

.main_text {
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-family: "游明朝体 Medium", "Yu Mincho Medium", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 100px;
  transform: -webkit-translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  margin: 0;
  letter-spacing: .1em;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .main_text {
    font-size: 30px;
    left: 50px;
  }
}

@media screen and (max-width: 767px) {
  .main_text {
    font-size: 6vw;
    left: 3vw;
  }
}

.scroll {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .4em;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 100px;
  bottom: 35px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .scroll {
    left: 50px;
  }
}

@media screen and (max-width: 767px) {
  .scroll {
    font-size: 10px;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
  }
}

.scroll a {
  position: relative;
}

.scroll a::before {
  content: '';
  width: 2px;
  height: 0;
  background: #fff;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
  animation: sdb 1.2s ease-in-out infinite;
}

@media screen and (max-width: 767px) {
  .scroll a::before {
    width: 1px;
    top: 25px;
  }
}

@keyframes sdb {
  0% {
    height: 0;
  }
  100% {
    height: 25px;
  }
}

.slide03 .scroll a {
  color: #333;
}

.slide03 .scroll a::before {
  background: #333;
}

/************************************************

	共通

*************************************************/
.top_sec_ttl {
  overflow: hidden;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .top_sec_ttl {
    text-align: center;
    margin-bottom: 20px;
  }
}

.top_sec_ttl h2 {
  color: #0080cb;
}

.top_sec_ttl .en {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  letter-spacing: .22em;
  margin-bottom: 15px;
  transform: skewX(-15deg) translateX(5px);
  -webkit-transform: skewX(-15deg) translateX(5px);
  line-height: 1em;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top_sec_ttl .en {
    font-size: 3.5rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .top_sec_ttl .en {
    font-size: 3rem;
  }
}

.top_sec_ttl .en span {
  display: inline-block;
  transform: translateY(-100%);
  transition: .5s;
}

.top_sec_ttl .jp {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .15em;
  opacity: 0;
  transition: 1.2s ease 0.3s;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", sans-serif;
}

.done .top_sec_ttl .jp {
  opacity: 1;
}

.sec_txt {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .sec_txt {
    font-size: 1.3rem;
  }
}

/************************************************

	sec_about_precut

*************************************************/
#sec_about_precut {
  padding: 120px 0 200px 0;
  background: #fff;
}

@media screen and (max-width: 768px) {
  #sec_about_precut {
    padding: 50px 0;
  }
}

#sec_about_precut .unit_2col {
  justify-content: flex-start;
}

#sec_about_precut .unit_2col .col_a {
  position: relative;
}

@media screen and (max-width: 768px) {
  #sec_about_precut .unit_2col .col_a {
    margin-bottom: 40px;
  }
}

#sec_about_precut .unit_2col .col_b {
  max-width: 800px;
  width: 45%;
}

@media screen and (max-width: 768px) {
  #sec_about_precut .unit_2col .col_b {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
}

#sec_about_precut .box_img {
  display: flex;
  margin-right: 10%;
  max-width: 900px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  #sec_about_precut .box_img {
    position: relative;
    width: 100%;
  }
  #sec_about_precut .box_img::after {
    content: '';
    width: 100%;
    height: 20px;
    background: no-repeat url("../../images/img_about01_cover.png") center/cover;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
}

#sec_about_precut .box_img .img01,
#sec_about_precut .box_img .img02 {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  #sec_about_precut .box_img .img01,
  #sec_about_precut .box_img .img02 {
    height: 200px;
    border-radius: 0;
  }
}

#sec_about_precut .box_img .img01::before,
#sec_about_precut .box_img .img02::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  background-color: #fff;
  -webkit-transition: width 1s cubic-bezier(0.75, 0, 0.15, 1);
  transition: width 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#sec_about_precut .box_img .img01::after,
#sec_about_precut .box_img .img02::after {
  content: '';
  width: 100%;
  height: 60px;
  background: no-repeat center/cover;
  position: absolute;
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #sec_about_precut .box_img .img01::after,
  #sec_about_precut .box_img .img02::after {
    display: none;
  }
}

#sec_about_precut .box_img .img01 img,
#sec_about_precut .box_img .img02 img {
  position: absolute;
  top: 0;
  width: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  #sec_about_precut .box_img .img01 img,
  #sec_about_precut .box_img .img02 img {
    width: 50vw;
    height: auto;
  }
}

#sec_about_precut .box_img .img01::after {
  background-image: url("../../images/img_about01_cover.png");
  bottom: 0;
}

#sec_about_precut .box_img .img01 img {
  right: 0;
}

@media screen and (max-width: 768px) {
  #sec_about_precut .box_img .img01 img {
    top: -2.5vw;
  }
}

#sec_about_precut .box_img .img02 {
  margin: 20px 0 0 4px;
}

#sec_about_precut .box_img .img02::after {
  background-image: url("../../images/img_about02_cover.png");
  top: 0;
}

@media screen and (max-width: 768px) {
  #sec_about_precut .box_img .img02 {
    margin: 0;
  }
}

#sec_about_precut .box_img .img02 img {
  left: 0;
}

#sec_about_precut .lead {
  font-size: 2rem;
  padding: calc(2.5vw + 60px) 0 90px;
  margin-bottom: 90px;
  letter-spacing: .2em;
  line-height: 2em;
  position: relative;
}

@media screen and (max-width: 768px) {
  #sec_about_precut .lead {
    font-size: 1.6rem;
    width: 90%;
    padding: 0;
    text-align: center;
    margin: 0 auto 50px;
  }
}

#sec_about_precut .lead::before {
  content: '';
  background: rgba(51, 51, 51, 0.2);
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: width 1s cubic-bezier(0.75, 0, 0.15, 1) 1s;
  transition: width 1s cubic-bezier(0.22, 0.61, 0.36, 1) 1s;
}

@media screen and (max-width: 768px) {
  #sec_about_precut .lead::before {
    display: none;
  }
}

#sec_about_precut .lead span {
  display: block;
  opacity: 0;
  transform: translateX(-15px);
  -webkit-transition: transform 1s cubic-bezier(0.75, 0, 0.15, 1), opacity 1.5s ease;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 1.5s ease;
  transition-delay: 1s;
}

#sec_about_precut .top_sec_ttl {
  /*p span{
			transition: transform .8s ease 1.5s, opacity .8s ease 1.8s;
		}*/
}

#sec_about_precut .top_sec_ttl .jp {
  transition-delay: 1.8s;
}

#sec_about_precut .box_txt {
  opacity: 0;
  transform: translateX(-15px);
  -webkit-transition: transform 1s cubic-bezier(0.75, 0, 0.15, 1), opacity 1.5s ease;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 1.5s ease;
  transition-delay: 2.5s;
}

#sec_about_precut .sec_txt {
  max-width: 650px;
}

#sec_about_precut.done .img01::before,
#sec_about_precut.done .img02::before {
  width: 0;
}

#sec_about_precut.done .lead::before {
  width: 100%;
}

#sec_about_precut.done .lead span,
#sec_about_precut.done .box_txt {
  opacity: 1;
  transform: none;
}

/************************************************

	sec_workflow

*************************************************/
#sec_workflow {
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #sec_workflow {
    padding: 50px 15px;
  }
}

@media screen and (max-width: 767px) {
  #sec_workflow {
    background: url("../../images/bg_workflow.jpg") no-repeat center/cover;
  }
}

#sec_workflow .bg-section {
  background: url("../../images/bg_workflow.jpg") no-repeat center/cover;
  width: 100%;
  height: 150%;
  position: absolute;
  top: -200px;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  #sec_workflow .bg-section {
    display: none;
  }
}

#sec_workflow .top_sec_ttl h2,
#sec_workflow .top_sec_ttl .jp {
  color: #fff;
}

#sec_workflow .sec_txt {
  color: #fff;
  max-width: 770px;
  margin: auto;
  font-weight: 100;
  opacity: 0;
  transform: translateY(10px);
  -webkit-transition: transform 1s cubic-bezier(0.75, 0, 0.15, 1), opacity 1.5s ease;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 1.5s ease;
  transition-delay: 1s;
}

@media screen and (max-width: 768px) {
  #sec_workflow .sec_txt {
    max-width: 650px;
  }
}

#sec_workflow .flow_img {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 5% auto;
}

@media screen and (max-width: 768px) {
  #sec_workflow .flow_img {
    width: 100%;
    margin: 30px auto;
  }
}

#sec_workflow .flow_img li {
  width: 17%;
  z-index: 1;
  position: relative;
  transition: .5s;
  opacity: 0;
}

#sec_workflow .flow_img li::after {
  content: '';
  background: url("../../images/line01.gif") repeat-x left/0.8vw 100%;
  width: 0;
  height: 4%;
  transition: width 1s;
  position: absolute;
  top: calc(50% - 4px);
  left: 95%;
  z-index: -1;
}

#sec_workflow .flow_img li:first-of-type, #sec_workflow .flow_img li:first-of-type::after {
  transition-delay: 2s;
}

#sec_workflow .flow_img li:nth-of-type(2), #sec_workflow .flow_img li:nth-of-type(2)::after {
  transition-delay: 2.6s;
}

#sec_workflow .flow_img li:nth-of-type(3), #sec_workflow .flow_img li:nth-of-type(3)::after {
  transition-delay: 3.2s;
}

#sec_workflow .flow_img li:nth-of-type(4), #sec_workflow .flow_img li:nth-of-type(4)::after {
  transition-delay: 3.8s;
}

#sec_workflow .flow_img li:nth-of-type(5) {
  transition-delay: 4.3s;
}

#sec_workflow .flow_img li:nth-of-type(5)::after {
  display: none;
}

#sec_workflow.done .sec_txt {
  opacity: 1;
  transform: none;
}

#sec_workflow.done .flow_img li::after {
  width: 28%;
}

#sec_workflow.done .flow_img li {
  opacity: 1;
}

/************************************************

	sec_works

*************************************************/
#sec_works {
  padding: 90px 0 90px 15vw;
  position: relative;
  background: #fff;
}

@media screen and (max-width: 768px) {
  #sec_works {
    padding: 50px 0;
  }
}

#sec_works::before, #sec_works::after {
  content: '';
  background: #0080cb;
  width: 1px;
  height: 0;
  position: absolute;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 1.5s ease 0.5s, height 2s cubic-bezier(0.22, 0.61, 0.36, 1);
  transform: translateY(-80px);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  #sec_works::before, #sec_works::after {
    display: none;
  }
}

#sec_works::before {
  top: 0;
  left: 7.5vw;
}

#sec_works::after {
  top: 10%;
  left: calc(7.5vw + 10px);
  transition-delay: 0.5s;
}

#sec_works .top_sec_ttl {
  display: flex;
  align-items: flex-end;
}

#sec_works .top_sec_ttl h2 {
  margin: 0 40px 0 0;
  overflow: unset;
}

#sec_works .top_sec_ttl h2 .en {
  margin-bottom: 0;
}

#sec_works .top_sec_ttl h2 svg {
  width: 35vw;
  max-width: 434px;
  overflow: hidden;
}

#sec_works .top_sec_ttl h2 path {
  transform: translateY(-100%);
  transition: .5s;
}

#sec_works .top_sec_ttl h2 .st0 {
  fill: #0080cb;
}

#sec_works .top_sec_ttl h2 .st1 {
  fill: none;
  stroke: #0080cb;
  stroke-width: 0.75;
  stroke-miterlimit: 10;
}

#sec_works .top_sec_ttl .jp {
  color: #333;
  font-size: 1.5rem;
  padding-right: 10px;
  transition-delay: 2.5s;
}

#sec_works .top_sec_ttl .jp span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  #sec_works .top_sec_ttl {
    display: block;
  }
  #sec_works .top_sec_ttl h2 {
    margin: 0 0 15px 0;
  }
  #sec_works .top_sec_ttl h2 svg {
    width: 65vw;
  }
  #sec_works .top_sec_ttl .jp {
    font-size: 1.4rem;
  }
}

#sec_works .gallery_wrap {
  position: relative;
}

#sec_works .gallery_wrap::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  background-color: #fff;
  -webkit-transition: width 1s cubic-bezier(0.75, 0, 0.15, 1) 2.5s;
  transition: width 1s cubic-bezier(0.22, 0.61, 0.36, 1) 2.5s;
}

#sec_works .gallery {
  width: 100%;
  height: 22vw;
  max-height: 290px;
  background: repeat-x 0 0/cover;
}

@media screen and (max-width: 768px) {
  #sec_works .gallery {
    height: 150px;
    background-size: auto 150px;
  }
}

#sec_works .gallery.gallery01 {
  background-image: url("../../images/img_works01.jpg");
  animation: galleryloop01 30s linear infinite;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #sec_works .gallery.gallery01 {
    margin-bottom: 20px;
  }
}

#sec_works .gallery.gallery02 {
  background-image: url("../../images/img_works02.jpg");
  animation: galleryloop02 30s linear infinite;
}

@keyframes galleryloop01 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -950px 0;
  }
}

@keyframes galleryloop02 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 950px 0;
  }
}

#sec_works.done::before, #sec_works.done::after {
  transform: none;
  opacity: 1;
  height: 90%;
}

#sec_works.done .gallery_wrap::before {
  width: 0;
}

/************************************************

	sec_service

*************************************************/
#sec_service {
  padding: 90px 30px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #sec_service {
    padding: 50px 30px;
  }
}

@media screen and (max-width: 767px) {
  #sec_service {
    padding: 40px 15px;
    background: url("../../images/bg_service.jpg") no-repeat center/cover;
  }
}

#sec_service .bg-section {
  background: url("../../images/bg_service.jpg") no-repeat center/cover;
  width: 100%;
  height: 120%;
  position: absolute;
  top: -400px;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  #sec_service .bg-section {
    /*height: 120%;
    		top: -250px;*/
    display: none;
  }
}

#sec_service .inner {
  max-width: 950px;
  margin: 0 auto;
  padding: 60px 90px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  #sec_service .inner {
    padding: 40px 20px;
  }
}

#sec_service .top_sec_ttl h2,
#sec_service .top_sec_ttl .jp {
  color: #1f94da;
  /*color: transparent;
		background: url("../../images/bg_service.jpg");
		-webkit-background-clip: text; */
}

#sec_service .sec_txt {
  color: #fff;
  max-width: 770px;
  margin: auto;
  font-weight: 100;
  opacity: 0;
  transform: translateY(10px);
  -webkit-transition: transform 1s cubic-bezier(0.75, 0, 0.15, 1), opacity 1.5s ease;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 1.5s ease;
  transition-delay: 1s;
}

#sec_service .links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 1000px) {
  #sec_service .links {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  #sec_service .links {
    margin-top: 30px;
  }
}

#sec_service .links li {
  width: calc((100% - 20px)/2);
}

@media screen and (max-width: 1000px) {
  #sec_service .links li {
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  #sec_service .links li + li {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  #sec_service .links li + li {
    margin-top: 10px;
  }
}

#sec_service .links li:nth-of-type(n+3) {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  #sec_service .links li:nth-of-type(n+3) {
    margin-top: 10px;
  }
}

#sec_service .btn_more a {
  width: 100%;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: .1em;
  color: #1f94da;
  border-color: #1f94da;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  #sec_service .btn_more a {
    padding: 14px;
  }
}

#sec_service .btn_more a::before, #sec_service .btn_more a::after {
  background: #1f94da;
}

.pc #sec_service .btn_more a:hover {
  background: #0080cb;
  border-color: #0080cb;
  color: #fff;
}

.pc #sec_service .btn_more a:hover::before, .pc #sec_service .btn_more a:hover::after {
  background: #fff;
}

#sec_service.done .sec_txt {
  opacity: 1;
  transform: none;
}

/************************************************

	sec_company

*************************************************/
#sec_company {
  padding: 110px 0;
}

@media screen and (max-width: 768px) {
  #sec_company {
    padding: 50px 0;
  }
}

#sec_company .unit_2col {
  align-items: center;
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  #sec_company .unit_2col {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  #sec_company .unit_2col {
    display: block;
  }
}

#sec_company .unit_2col .col_a {
  overflow: hidden;
  border-bottom-right-radius: 40px;
  position: relative;
  max-width: 920px;
  height: 500px;
}

@media screen and (max-width: 767px) {
  #sec_company .unit_2col .col_a {
    height: 200px;
    margin-bottom: 40px;
    border-bottom-right-radius: 0;
  }
}

#sec_company .unit_2col .col_a::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  background-color: #fff;
  -webkit-transition: width 1s cubic-bezier(0.75, 0, 0.15, 1) 1s;
  transition: width 1s cubic-bezier(0.22, 0.61, 0.36, 1) 1s;
}

#sec_company .unit_2col .col_a .bg-section {
  background: url("../../images/img_company.jpg") no-repeat center/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  /*@include mq(767){
					height: 160%;
					top: 90vh;
				}*/
}

#sec_company .unit_2col .col_b {
  max-width: 700px;
  padding: 0 20px 0 5%;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  #sec_company .unit_2col .col_b {
    padding: 0 15px;
  }
}

#sec_company .unit_2col .col_b .top_sec_ttl .jp {
  transition-delay: 2s;
}

#sec_company .unit_2col .col_b .box_txt {
  opacity: 0;
  transform: translateX(-15px);
  -webkit-transition: transform 1s cubic-bezier(0.75, 0, 0.15, 1), opacity 1.5s ease;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 1.5s ease;
  transition-delay: 2.5s;
}

#sec_company.done .unit_2col .col_a::before {
  width: 0;
}

#sec_company.done .unit_2col .col_b .box_txt {
  opacity: 1;
  transform: none;
}

/************************************************

	sec_recruit

*************************************************/
#sec_recruit {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  #sec_recruit {
    margin-bottom: 50px;
  }
}

#sec_recruit .unit_2col {
  max-width: 1700px;
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  #sec_recruit .unit_2col {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  #sec_recruit .unit_2col {
    display: block;
    width: 100%;
  }
}

#sec_recruit .unit_2col .col_a {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 40px;
}

@media screen and (max-width: 767px) {
  #sec_recruit .unit_2col .col_a {
    height: 200px;
    border-top-left-radius: 0;
  }
}

#sec_recruit .unit_2col .col_a .bg-section {
  background: url("../../images/img_recruit.jpg") no-repeat center/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  /*@include mq(767){
					height: 170%;
					top: 110vh;
				}*/
}

#sec_recruit .unit_2col .col_b {
  background: #0080cb;
  border-bottom-right-radius: 40px;
  padding: 80px 5%;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #sec_recruit .unit_2col .col_b {
    padding: 50px 5%;
  }
}

@media screen and (max-width: 767px) {
  #sec_recruit .unit_2col .col_b {
    padding: 40px 15px;
    border-bottom-right-radius: 0;
  }
}

#sec_recruit .unit_2col .col_b .top_sec_ttl h2,
#sec_recruit .unit_2col .col_b .top_sec_ttl .jp {
  color: #fff;
}

#sec_recruit .unit_2col .col_b .top_sec_ttl h2 .en {
  font-size: 6rem;
}

@media screen and (max-width: 768px) {
  #sec_recruit .unit_2col .col_b .top_sec_ttl h2 .en {
    font-size: 5rem;
  }
}

@media screen and (max-width: 767px) {
  #sec_recruit .unit_2col .col_b .top_sec_ttl h2 .en {
    font-size: 3.5rem;
  }
}

#sec_recruit .unit_2col .col_b .sec_txt {
  color: #fff;
  font-weight: 100;
}

#sec_recruit .unit_2col .col_b .box_txt {
  opacity: 0;
  transform: translateX(-15px);
  -webkit-transition: transform 1s cubic-bezier(0.75, 0, 0.15, 1), opacity 1.5s ease;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 1.5s ease;
  transition-delay: 0.5s;
}

#sec_recruit.done .unit_2col .col_b .box_txt {
  opacity: 1;
  transform: none;
}

/************************************************

	プレカットについて

*************************************************/
#about_precut .page_fv {
  background-image: url("../../about_precut/images/page_fv.jpg");
}

#about_precut img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  #about_precut .container {
    padding: 0;
  }
  #about_precut section > * {
    padding: 0 20px;
  }
  #about_precut .center_img {
    padding: 0;
    height: 180px;
  }
  #about_precut .center_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

#about_precut .sec01 {
  text-align: center;
}

#about_precut .sec01 .lead_txt {
  font-size: 1.6rem;
  margin-bottom: 50px;
  letter-spacing: .15em;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  #about_precut .sec01 .lead_txt {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.8;
    padding-top: 15px;
  }
}

#about_precut .sec01 .lead_txt p {
  display: inline-block;
}

#about_precut .sec01 .lead_txt span {
  font-size: 2.2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #about_precut .sec01 .lead_txt span {
    font-size: 1.8rem;
  }
}

#about_precut .sec01 .lead_txt + p {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  #about_precut .sec01 .lead_txt + p {
    margin-bottom: 30px;
    text-align: left;
  }
}

#about_precut .sec02 .unit_2col {
  max-width: 1150px;
  margin: 0 auto;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #about_precut .sec02 .unit_2col {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  #about_precut .sec02 .unit_2col {
    flex-wrap: wrap;
  }
}

#about_precut .sec02 .unit_2col:nth-of-type(n+2) {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  #about_precut .sec02 .unit_2col:nth-of-type(n+2) {
    margin-top: 30px;
  }
}

#about_precut .sec02 .unit_2col .col_a, #about_precut .sec02 .unit_2col .col_b {
  width: 48%;
}

@media screen and (max-width: 767px) {
  #about_precut .sec02 .unit_2col .col_a, #about_precut .sec02 .unit_2col .col_b {
    width: 100%;
  }
}

#about_precut .sec02 .unit_2col .txt {
  padding-left: 40px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #about_precut .sec02 .unit_2col .txt {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  #about_precut .sec02 .unit_2col .txt {
    order: 1;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  #about_precut .sec02 .unit_2col .img {
    order: 2;
  }
}

#about_precut .sec02 h3 {
  font-size: 2.4rem;
  letter-spacing: .15em;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  #about_precut .sec02 h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  #about_precut .sec02 h3 {
    font-size: 1.8rem;
  }
}

#about_precut .sec02 h3::after {
  content: '';
  width: 24px;
  height: 3px;
  background: #0080cb;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  #about_precut .sec02 h3::after {
    width: 20px;
  }
}

#about_precut .sec03 .box_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  #about_precut .sec03 .box_txt {
    display: block;
    margin-bottom: 20px;
  }
}

#about_precut .sec03 .box_txt p + p {
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  #about_precut .sec03 .box_txt p + p {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  #about_precut .sec03 .box_txt .no01 {
    text-align: center;
    margin-bottom: 15px;
  }
  #about_precut .sec03 .box_txt .no01 img {
    width: 35%;
  }
}

#about_precut .sec03 .lead_txt {
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 80px;
  letter-spacing: .15em;
  text-align: center;
  line-height: 2.4;
}

@media screen and (max-width: 768px) {
  #about_precut .sec03 .lead_txt {
    font-size: 2rem;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  #about_precut .sec03 .lead_txt {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 30px;
  }
}

#about_precut .sec03 .lead_txt span {
  color: #0080cb;
}

#about_precut .sec03 .lead_txt span span {
  border-bottom: 1px solid;
  padding-bottom: 5px;
}

@media screen and (min-width: 768px) {
  #about_precut .sec03 .unit_2col .col_a,
  #about_precut .sec03 .unit_2col .col_b {
    width: 49%;
  }
}

/************************************************

	ワークフロー

*************************************************/
#workflow .page_fv {
  background-image: url("../../workflow/images/page_fv.jpg");
}

#workflow .container {
  max-width: 1700px;
}

#workflow .lead_txt {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  #workflow .lead_txt {
    font-size: 1.4rem;
    text-align: left;
    margin: -30px 0 40px;
  }
}

#workflow .flow_ttl {
  font-size: 3.2rem;
  letter-spacing: .2em;
  margin-bottom: 10px;
  color: #0080cb;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #workflow .flow_ttl {
    font-size: 2.2rem;
    letter-spacing: .15em;
    margin-bottom: 5px;
    text-align: left;
  }
}

#workflow .flow_ttl + p {
  font-size: 1.6rem;
  letter-spacing: .2em;
  margin-bottom: 50px;
  color: #0080cb;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #workflow .flow_ttl + p {
    font-size: 1.4rem;
    letter-spacing: unset;
    margin-bottom: 15px;
    text-align: left;
  }
}

#workflow .flow_wrap {
  position: relative;
}

@media screen and (max-width: 767px) {
  #workflow .flow_wrap {
    padding-bottom: 20px;
  }
}

#workflow .flow_border {
  width: 3px;
  height: 100%;
  background: #0080cb;
  position: absolute;
  left: 50%;
}

@media screen and (max-width: 767px) {
  #workflow .flow_border {
    left: -5px;
  }
}

#workflow .unit_2col {
  align-items: center;
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  #workflow .unit_2col {
    display: flex;
    flex-wrap: wrap;
    padding-left: 8vw;
  }
  #workflow .unit_2col.first {
    padding-top: 30px;
  }
}

#workflow .unit_2col .col_a {
  padding-right: 6%;
}

@media screen and (max-width: 767px) {
  #workflow .unit_2col .col_a {
    padding-right: 0;
  }
}

#workflow .unit_2col .col_b {
  padding-left: 6%;
}

@media screen and (max-width: 767px) {
  #workflow .unit_2col .col_b {
    padding-left: 0;
  }
}

#workflow .txt {
  max-width: 600px;
  width: 44%;
  opacity: 0;
  transition: 1s ease;
}

@media screen and (max-width: 767px) {
  #workflow .txt {
    width: 100%;
    order: 1;
    margin-bottom: 20px;
  }
}

#workflow .txt.col_a {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  #workflow .txt.col_a {
    margin-left: 0;
  }
}

#workflow .txt.col_b {
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  #workflow .txt.col_b {
    margin-right: 0;
  }
}

#workflow .txt .number {
  color: #0080cb;
  font-family: 'Oswald', sans-serif;
  font-size: 6rem;
  letter-spacing: .2em;
  font-weight: bold;
  display: inline-block;
  border-bottom: 1px solid;
  line-height: 1.5;
  padding-bottom: 3px;
  margin-bottom: 40px;
  width: 70px;
}

@media screen and (max-width: 767px) {
  #workflow .txt .number {
    font-size: 3.8rem;
    width: 46px;
    margin-bottom: 15px;
    padding-bottom: 0;
  }
}

#workflow .txt h3 {
  font-size: 2.4rem;
  letter-spacing: .15em;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  #workflow .txt h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}

#workflow .img {
  width: 44%;
  position: relative;
}

@media screen and (max-width: 767px) {
  #workflow .img {
    width: 100%;
    order: 2;
  }
}

#workflow .img::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #0080cb;
  border: 4px solid #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: .5s ease .5s;
}

@media screen and (max-width: 767px) {
  #workflow .img::after {
    width: 10px;
    height: 10px;
  }
}

#workflow .img::before {
  content: '';
  height: 2px;
  border-top: 2px dotted #0080cb;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  transition: .5s ease .8s;
}

#workflow .img.col_a::after {
  right: -11px;
}

@media screen and (max-width: 767px) {
  #workflow .img.col_a::after {
    right: auto;
    left: -11vw;
  }
}

#workflow .img.col_a::before {
  right: 0;
}

@media screen and (max-width: 767px) {
  #workflow .img.col_a::before {
    right: auto;
    left: -10%;
  }
}

#workflow .img.col_b::after {
  left: -9px;
}

@media screen and (max-width: 767px) {
  #workflow .img.col_b::after {
    left: -11vw;
  }
}

#workflow .img.col_b::before {
  left: 0;
}

@media screen and (max-width: 767px) {
  #workflow .img.col_b::before {
    left: -10%;
  }
}

#workflow .img .img_cont {
  position: relative;
  z-index: 0;
  opacity: 0;
  transition: 1s ease 1s;
}

#workflow .img .img_cont::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 128, 203, 0.3);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
}

#workflow .img .img_cont img {
  display: block;
}

#workflow .hide {
  content: '';
  background: #fff;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 50%;
  right: -6px;
}

@media screen and (max-width: 767px) {
  #workflow .hide {
    left: -10vw;
  }
}

#workflow .unit_2col.done .txt,
#workflow .unit_2col.done .img::after,
#workflow .unit_2col.done .img_cont {
  opacity: 1;
}

#workflow .unit_2col.done .img::before {
  width: 10%;
}

/************************************************

	事業案内

*************************************************/
#service .page_fv {
  background-image: url("../../service/images/page_fv.jpg");
}

#service img {
  max-width: 100%;
}

#service .sec01 {
  text-align: center;
}

#service .sec01 .lead_txt01 {
  font-size: 2.6rem;
  margin: 40px 0 120px;
  letter-spacing: .15em;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  #service .sec01 .lead_txt01 {
    margin: 0 0 80px;
  }
}

@media screen and (max-width: 767px) {
  #service .sec01 .lead_txt01 {
    font-size: 1.7rem;
    margin: -30px 0 50px;
    line-height: 2;
  }
}

#service .sec01 .lead_txt01 span {
  font-size: 3rem;
  border-bottom: 2px solid;
  margin: 0 2px;
}

@media screen and (max-width: 767px) {
  #service .sec01 .lead_txt01 span {
    font-size: 2rem;
    border-width: 1px;
  }
}

#service .sec01 .lead_txt01 img {
  vertical-align: text-bottom;
}

@media screen and (max-width: 767px) {
  #service .sec01 .lead_txt01 img {
    height: 30px;
  }
}

#service .sec01 .lead_txt02 {
  font-weight: bold;
  font-size: 3.5rem;
  letter-spacing: .15em;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #service .sec01 .lead_txt02 {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  #service .sec01 .lead_txt02 {
    font-size: 6vw;
  }
}

#service .sec01 .lead_txt02 span {
  display: inline-block;
  background: linear-gradient(transparent 60%, rgba(12, 160, 226, 0.2) 60%);
}

@media screen and (min-width: 415px) {
  #service .sec01 .lead_txt02 span:first-of-type {
    padding-right: 20px;
  }
}

#service .sec01 p {
  margin-bottom: 40px;
  line-height: 2.4;
}

@media screen and (max-width: 767px) {
  #service .sec01 p {
    margin-bottom: 20px;
    line-height: 2;
    text-align: left;
  }
}

#service .sec01 .sttl {
  font-size: 2.4rem;
  letter-spacing: .15em;
  margin: 60px 0 40px;
}

@media screen and (max-width: 767px) {
  #service .sec01 .sttl {
    font-size: 1.7rem;
    line-height: 1.7;
    text-align: center;
    margin: 40px 0 20px;
  }
}

#service .sec01 .sttl span {
  position: relative;
}

#service .sec01 .sttl span::before, #service .sec01 .sttl span::after {
  content: '';
  width: 100px;
  height: 1px;
  border-top: 1px dashed;
  position: absolute;
  top: 50%;
}

@media screen and (max-width: 767px) {
  #service .sec01 .sttl span::before, #service .sec01 .sttl span::after {
    width: 30vw;
  }
}

#service .sec01 .sttl span::before {
  right: -140px;
}

@media screen and (max-width: 767px) {
  #service .sec01 .sttl span::before {
    right: -40vw;
  }
}

#service .sec01 .sttl span::after {
  left: -140px;
}

@media screen and (max-width: 767px) {
  #service .sec01 .sttl span::after {
    left: -40vw;
  }
}

@media screen and (max-width: 768px) {
  #service .sec01 .center_img img {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  #service .sec01 .center_img img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #service .sec02 .unit_2col {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  #service .sec02 .unit_2col {
    flex-wrap: wrap;
  }
}

#service .sec02 .unit_2col:nth-of-type(n+2) {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  #service .sec02 .unit_2col:nth-of-type(n+2) {
    margin-top: 30px;
  }
}

#service .sec02 .unit_2col .col_a, #service .sec02 .unit_2col .col_b {
  width: auto;
}

@media screen and (max-width: 767px) {
  #service .sec02 .unit_2col .col_a, #service .sec02 .unit_2col .col_b {
    width: 100%;
  }
}

#service .sec02 .unit_2col .col_b {
  max-width: 500px;
  width: 40%;
  flex-shrink: 0;
  margin-left: 8%;
}

@media screen and (max-width: 767px) {
  #service .sec02 .unit_2col .col_b {
    width: 100%;
    margin: 15px 0 0 0;
  }
}

#service .sec02 .unit_2col .txt {
  padding-left: 40px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #service .sec02 .unit_2col .txt {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  #service .sec02 .unit_2col .txt {
    order: 1;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  #service .sec02 .unit_2col .img {
    order: 2;
  }
}

#service .sec02 h3 {
  font-size: 2.4rem;
  letter-spacing: .15em;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  #service .sec02 h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  #service .sec02 h3 {
    font-size: 1.8rem;
  }
}

#service .sec02 h3::after {
  content: '';
  width: 24px;
  height: 3px;
  background: #0080cb;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  #service .sec02 h3::after {
    width: 20px;
  }
}

@media screen and (max-width: 768px) {
  #service .sec02 .dl_box01 dt {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  #service .sec02 .dl_box01 dt {
    font-size: 1.7rem;
    letter-spacing: unset;
  }
}

#service .sec03 .unit_3col {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  #service .sec03 .unit_3col {
    display: block;
  }
}

#service .sec03 .unit_3col li {
  text-align: center;
  max-width: 340px;
}

@media screen and (max-width: 767px) {
  #service .sec03 .unit_3col li {
    max-width: none;
  }
  #service .sec03 .unit_3col li img {
    width: 30%;
  }
}

#service .sec03 .unit_3col li + li {
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  #service .sec03 .unit_3col li + li {
    margin: 40px 0 0;
  }
}

#service .sec03 .unit_3col h3 {
  font-size: 1.8rem;
  margin: 30px 0 20px;
  padding-bottom: 15px;
  position: relative;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  #service .sec03 .unit_3col h3 {
    font-size: 1.6rem;
    margin: 10px 0 20px;
  }
}

#service .sec03 .unit_3col h3::after {
  content: '';
  width: 24px;
  height: 2px;
  background: #0080cb;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#service .sec03 .unit_3col h3 + p {
  text-align: justify;
}

#service .sec04 .philosophy {
  text-align: center;
  padding: 65px 0;
  margin-bottom: 75px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  #service .sec04 .philosophy {
    padding: 40px 0;
    margin-bottom: 30px;
  }
}

#service .sec04 .philosophy::after {
  content: '';
  background: #f7f8f8;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc((100vw - 1400px)/2 * -1);
  z-index: -1;
}

@media screen and (max-width: 1480px) {
  #service .sec04 .philosophy::after {
    left: -40px;
  }
}

@media screen and (max-width: 767px) {
  #service .sec04 .philosophy::after {
    left: -20px;
  }
}

#service .sec04 .philosophy::before {
  content: '';
  width: 1px;
  height: 70px;
  border-left: 1px dashed #0080cb;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -50px;
}

@media screen and (max-width: 767px) {
  #service .sec04 .philosophy::before {
    height: 40px;
    bottom: -30px;
  }
}

#service .sec04 .philosophy h3 {
  color: #0080cb;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: .2em;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  #service .sec04 .philosophy h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}

#service .sec04 .list_action {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #service .sec04 .list_action {
    display: block;
  }
}

#service .sec04 .list_action dl {
  width: 46%;
  margin: 25px 0;
}

@media screen and (max-width: 767px) {
  #service .sec04 .list_action dl {
    width: 100%;
  }
  #service .sec04 .list_action dl:last-of-type {
    margin-bottom: 0;
  }
}

#service .sec04 .list_action dl dt {
  display: inline-block;
  color: #0080cb;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .15em;
  border-bottom: 1px solid;
  margin-bottom: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  #service .sec04 .list_action dl dt {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

#service .sec04 .list_action dl dd {
  text-align: justify;
}

#service .sec04 .list_action dl .indent {
  text-indent: -1em;
  padding-left: 1em;
}

/************************************************

	会社情報

*************************************************/
#company .page_fv {
  background-image: url("../../company/images/page_fv.jpg");
}

#company .sec01 .unit_2col {
  flex-direction: row-reverse;
  padding: 30px 0;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  #company .sec01 .unit_2col {
    padding: 0;
  }
}

#company .sec01 .unit_2col .col_a, #company .sec01 .unit_2col .col_b {
  width: 48%;
}

@media screen and (max-width: 767px) {
  #company .sec01 .unit_2col .col_a, #company .sec01 .unit_2col .col_b {
    width: 100%;
  }
}

#company .sec01 .copy {
  font-family: "游明朝体 Medium", "Yu Mincho Medium", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  letter-spacing: .1em;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  #company .sec01 .copy {
    margin: 30px 0;
    font-size: 2rem;
  }
}

#company .sec01 .name {
  font-family: "游明朝体 Medium", "Yu Mincho Medium", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: right;
  margin-top: 40px;
}

#company .sec01 .name span {
  font-size: 2rem;
}

#company .sec02 .sec_ttl {
  margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
  #company .sec02 .sec_ttl {
    margin-bottom: 5px;
  }
}

#company .sec02 .list_info {
  max-width: 950px;
  margin: 0 auto;
}

#company .sec02 .list_info dl {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid rgba(1, 150, 237, 0.2);
}

@media screen and (max-width: 767px) {
  #company .sec02 .list_info dl {
    display: block;
    padding: 20px 0;
  }
}

#company .sec02 .list_info dl dt {
  width: 20%;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #company .sec02 .list_info dl dt {
    width: 100%;
    margin-bottom: 5px;
  }
}

#company .sec02 .list_info dl dd div + div {
  margin-top: 20px;
}

#company .sec02 .list_info .department {
  font-size: 1.4rem;
  margin: 10px 0;
}

#company .sec02 .list_info .department li span {
  display: inline-block;
  width: 120px;
}

@media screen and (max-width: 767px) {
  #company .sec02 .list_info .department li span {
    display: block;
  }
}

#company .sec03 .office + .office {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  #company .sec03 .office + .office {
    margin-top: 40px;
  }
}

#company .sec03 .office dl {
  text-align: center;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  #company .sec03 .office dl {
    margin-bottom: 20px;
  }
}

#company .sec03 .office dl dt {
  font-weight: bold;
  font-size: 1.7rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  #company .sec03 .office dl dt {
    margin-bottom: 10px;
  }
}

#company .sec03 .office .unit_2col .col_a,
#company .sec03 .office .unit_2col .col_b {
  width: 49%;
}

@media screen and (max-width: 767px) {
  #company .sec03 .office .unit_2col .col_a,
  #company .sec03 .office .unit_2col .col_b {
    width: 100%;
  }
}

#company .sec03 .office img {
  display: block;
}

#company .sec03 .office iframe {
  height: 100%;
}

@media screen and (max-width: 767px) {
  #company .sec03 .office iframe {
    height: 65vw;
    margin-top: 10px;
  }
}

#company .sec04 .sec_ttl {
  margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
  #company .sec04 .sec_ttl {
    margin-bottom: 5px;
  }
}

#company .sec04 .list_history {
  max-width: 950px;
  margin: 0 auto;
}

#company .sec04 .list_history dl {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid rgba(1, 150, 237, 0.2);
}

@media screen and (max-width: 767px) {
  #company .sec04 .list_history dl {
    display: block;
    padding: 20px 0;
  }
}

#company .sec04 .list_history dl dt {
  width: 20%;
}

@media screen and (max-width: 767px) {
  #company .sec04 .list_history dl dt {
    width: 100%;
    margin-bottom: 5px;
  }
}

/************************************************

	採用TOP

*************************************************/
#recruit .page_fv {
  background-image: url("../../recruit/images/page_fv.jpg");
}

#recruit .sec01 {
  padding: 120px 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  #recruit .sec01 {
    background: url("../../recruit/images/bg_sp.jpg") no-repeat center/cover;
  }
}

@media screen and (max-width: 767px) {
  #recruit .sec01 {
    padding: 50px 30px;
    margin-top: -30px;
  }
}

#recruit .sec01::before {
  content: '';
  background: url("../../recruit/images/dot.png");
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#recruit .sec01 video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

@media screen and (max-width: 768px) {
  #recruit .sec01 video {
    width: auto;
    height: 100%;
  }
}

#recruit .sec01 dl {
  position: relative;
  z-index: 2;
  background: #fff;
  text-align: center;
  padding: 40px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  #recruit .sec01 dl {
    padding: 30px;
  }
}

#recruit .sec01 dl dt {
  font-size: 2.8rem;
  letter-spacing: .15em;
  margin-bottom: 25px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #recruit .sec01 dl dt {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

#recruit .sec01 dl dt p {
  display: inline-block;
  line-height: 1.5;
  padding-bottom: 4px;
}

#recruit .sec01 dl dt p span {
  display: inline-block;
  border-bottom: 1px solid;
}

#recruit .sec01 dl dt p span.period {
  font-feature-settings: "palt";
}

#recruit .sec01 dl dd {
  line-height: 2.2;
}

@media screen and (max-width: 767px) {
  #recruit .sec01 dl dd {
    line-height: 2;
  }
}

#recruit .sec02 {
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #recruit .sec02 {
    padding-bottom: 0;
  }
}

#recruit .sec02 .box_cont {
  display: flex;
  align-items: flex-end;
  position: relative;
}

@media screen and (max-width: 768px) {
  #recruit .sec02 .box_cont {
    display: block;
  }
}

#recruit .sec02 .img {
  width: 770px;
  flex-shrink: 0;
  border-radius: 0 30px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #recruit .sec02 .img {
    width: 100%;
    border-radius: 30px 30px 0 0;
  }
}

@media screen and (max-width: 767px) {
  #recruit .sec02 .img {
    border-radius: 15px 15px 0 0;
  }
}

#recruit .sec02 .img img {
  display: block;
  width: 100%;
}

#recruit .sec02 .txt {
  width: 40%;
  max-width: 530px;
  background: #0080cb;
  color: #fff;
  padding: 80px 4vw;
  position: absolute;
  bottom: -50px;
  right: 0;
  border-radius: 0 30px;
}

@media screen and (max-width: 768px) {
  #recruit .sec02 .txt {
    max-width: none;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    border-radius: 0;
    bottom: auto;
    padding: 30px;
  }
}

#recruit .sec02 .txt p {
  max-width: 480px;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  #recruit .sec02 .txt p {
    max-width: none;
  }
}

#recruit .sec03 {
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #recruit .sec03 {
    padding-bottom: 0;
  }
}

#recruit .sec03 .container {
  max-width: 1622px;
  position: relative;
  z-index: 1;
}

#recruit .sec03 .voice_list {
  position: relative;
}

@media screen and (max-width: 768px) {
  #recruit .sec03 .voice_list {
    margin-top: 60px;
  }
}

#recruit .sec03 .voice_list:nth-of-type(2) {
  margin-top: 150px;
}

@media screen and (max-width: 768px) {
  #recruit .sec03 .voice_list:nth-of-type(2) {
    display: none;
  }
}

#recruit .sec03 .voice_list::after {
  content: '';
  background: #f7f7f7;
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  #recruit .sec03 .voice_list::after {
    height: 90%;
  }
}

#recruit .sec03 .voice_list .img_box {
  position: relative;
}

#recruit .sec03 .voice_list .img_box .img {
  border-radius: 30px 0;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #recruit .sec03 .voice_list .img_box .img {
    border-radius: 15px 0;
  }
}

#recruit .sec03 .voice_list .img_box .img img {
  display: block;
  max-width: 100%;
  width: 100%;
  transition: .5s;
}

#recruit .sec03 .voice_list .img_box .copy {
  position: absolute;
  top: -30px;
  right: 20px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.2rem;
  letter-spacing: .15em;
  line-height: 1.8;
}

@media screen and (max-width: 1300px) {
  #recruit .sec03 .voice_list .img_box .copy {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 768px) {
  #recruit .sec03 .voice_list .img_box .copy {
    font-size: 1.6rem;
    right: -5px;
    line-height: 2;
  }
}

@media screen and (max-width: 767px) {
  #recruit .sec03 .voice_list .img_box .copy {
    font-size: 1.1rem;
    top: -15px;
    right: -5px;
    height: 120%;
  }
}

#recruit .sec03 .voice_list .img_box .copy span {
  background: rgba(0, 128, 203, 0.85);
  padding: 8px 3px;
}

@media screen and (max-width: 768px) {
  #recruit .sec03 .voice_list .img_box .copy span {
    background: #0080cb;
  }
}

#recruit .sec03 .voice_list .img_box object {
  height: 30px;
  position: absolute;
  bottom: 60px;
  left: 25px;
  transform: rotate(-90deg);
  transform-origin: left;
}

@media screen and (max-width: 767px) {
  #recruit .sec03 .voice_list .img_box object {
    display: none;
  }
}

#recruit .sec03 .voice_list .img_box object image {
  width: auto;
}

#recruit .sec03 .voice_list .profile {
  width: 85%;
  background: #f7f7f7;
  margin-top: -60px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #recruit .sec03 .voice_list .profile {
    width: 100%;
    margin-top: 0;
    padding: 10px 0;
  }
}

@media screen and (max-width: 767px) {
  #recruit .sec03 .voice_list .profile .department {
    font-size: 1.2rem;
  }
}

#recruit .sec03 .voice_list .profile .name {
  font-size: 2.8rem;
  letter-spacing: .15em;
  line-height: 1.5;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  #recruit .sec03 .voice_list .profile .name {
    font-size: 1.8rem;
    margin-top: 0;
  }
}

#recruit .sec03 .voice_list .profile .name span {
  font-size: 1.2rem;
  color: #888;
  font-weight: normal;
  margin-left: 20px;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  #recruit .sec03 .voice_list .profile .name span {
    margin-left: 0;
    margin-top: 5px;
    display: block;
    font-size: 1.1rem;
  }
}

#recruit .sec03 .voice_list .profile .btn_more {
  width: 160px;
  font-size: 1.3rem;
  padding: 7px 14px;
  letter-spacing: .3em;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  color: #0080cb;
  border: 1px solid #0080cb;
  box-sizing: border-box;
  position: relative;
  transition: .3s;
  margin-top: 0;
  transform: translateY(50%);
}

@media screen and (max-width: 767px) {
  #recruit .sec03 .voice_list .profile .btn_more {
    width: 100%;
    transform: none;
    margin-top: 15px;
    font-size: 1.2rem;
  }
}

#recruit .sec03 .voice_list .profile .btn_more::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #0080cb;
  position: absolute;
  top: 50%;
  right: 10px;
}

#recruit .sec03 .voice_list .profile .btn_more::after {
  content: '';
  width: 4px;
  height: 4px;
  background: #0080cb;
  border-radius: 100%;
  position: absolute;
  top: calc(50% - 1.55px);
  right: 30px;
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#recruit .sec03 .voice_list ul {
  display: flex;
}

@media screen and (max-width: 768px) {
  #recruit .sec03 .voice_list ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

#recruit .sec03 .voice_list ul li {
  width: 30%;
}

@media screen and (max-width: 768px) {
  #recruit .sec03 .voice_list ul li {
    width: 48%;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  #recruit .sec03 .voice_list ul li {
    margin-bottom: 30px;
  }
}

#recruit .sec03 .voice_list ul li + li {
  margin-left: 5%;
}

@media screen and (max-width: 768px) {
  #recruit .sec03 .voice_list ul li + li {
    margin-left: 0;
  }
}

#recruit .sec03 .voice_list ul li a:hover .img_box .img img {
  transform: scale(1.06);
}

#recruit .sec03 .voice_list ul li a:hover .btn_more {
  color: #fff;
  background: #0080cb;
  border-radius: 12px;
}

#recruit .sec03 .voice_list ul li a:hover .btn_more::before, #recruit .sec03 .voice_list ul li a:hover .btn_more::after {
  background: #fff;
}

#recruit .sec03 .voice_list ul li a:hover .btn_more::after {
  right: 8px;
}

#recruit .sec04 .list_info {
  max-width: 950px;
  margin: 0 auto;
}

#recruit .sec04 .list_info dl {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
  #recruit .sec04 .list_info dl {
    display: block;
    padding: 20px 0;
  }
  #recruit .sec04 .list_info dl:first-of-type {
    padding-top: 0;
  }
}

#recruit .sec04 .list_info dl dt {
  width: 20%;
  flex-shrink: 0;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #recruit .sec04 .list_info dl dt {
    width: 100%;
    margin-bottom: 5px;
  }
}

#recruit .sec04 .list_info dl dd div + div {
  margin-top: 20px;
}

#recruit .sec04 .list_info dl .indent {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 1.2em;
}

#recruit .sec04 .list_info dl .time span {
  display: inline-block;
  width: 15em;
}

@media screen and (max-width: 767px) {
  #recruit .sec04 .list_info dl .time span {
    display: block;
  }
}

#recruit .sec04 .list_info ul {
  display: flex;
  flex-wrap: wrap;
}

#recruit .sec04 .list_info ul li {
  width: 45%;
}

@media screen and (max-width: 767px) {
  #recruit .sec04 .list_info ul li.sp_full {
    width: 100%;
  }
}

#recruit .center_img {
  text-align: center;
  margin-top: 85px;
}

@media screen and (max-width: 768px) {
  #recruit .center_img {
    margin-top: 45px;
  }
}

#recruit .center_img img {
  max-width: 100%;
}

#recruit .contact.btn_more {
  text-align: center;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  #recruit .contact.btn_more {
    margin-top: 40px;
  }
}

#recruit .contact.btn_more a {
  max-width: 950px;
  width: 70%;
  font-size: 2rem;
  padding: 50px 20px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #recruit .contact.btn_more a {
    max-width: none;
    width: 100%;
    font-size: 1.4rem;
    padding: 30px 20px;
    letter-spacing: .15em;
  }
}

/************************************************

	採用担当インタビュー

*************************************************/
#interview .wrapper {
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  #interview .wrapper {
    padding-top: 55px;
  }
}

#interview .breadcrumbs {
  color: #333;
  display: inline-flex;
  position: relative;
  top: 0;
}

#interview .page_ttl {
  padding: 60px 30px 0 80px;
  transform: none;
  margin-bottom: 50px;
  position: relative;
}

@media screen and (max-width: 1000px) {
  #interview .page_ttl {
    display: inline-flex;
    justify-content: center;
    width: auto;
    margin: 15px auto 0;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  #interview .page_ttl {
    padding: 0 10px;
  }
}

#interview .page_ttl::after {
  content: '';
  width: 100vw;
  height: 1px;
  border-top: 1px dashed #0080cb;
  position: absolute;
  bottom: 20px;
  left: 100%;
}

@media screen and (max-width: 767px) {
  #interview .page_ttl::after {
    bottom: 5px;
  }
}

#interview .page_ttl p {
  font-size: 4.4rem;
}

@media screen and (max-width: 767px) {
  #interview .page_ttl p {
    font-size: 2.2rem;
  }
}

#interview .page_ttl .jp {
  font-size: 1.3rem;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  #interview .page_ttl .jp {
    font-size: 1rem;
  }
}

#interview .interview_fv {
  display: flex;
  align-items: center;
  background: #f7f8f8;
  max-width: 1650px;
  width: calc(100% - 80px);
  height: 480px;
  margin: 0 auto;
  position: relative;
  border-top-left-radius: 30px;
}

@media screen and (max-width: 1000px) {
  #interview .interview_fv {
    width: 100%;
    display: block;
    margin: 0;
    height: auto;
    background: none;
  }
}

#interview .interview_fv::before {
  content: '';
  background: url("../../recruit/interview/images/interview_txt01.png") no-repeat center/100%;
  width: 138px;
  height: 37px;
  position: absolute;
  left: 20px;
  bottom: 20px;
}

@media screen and (max-width: 767px) {
  #interview .interview_fv::before {
    width: 80px;
    bottom: 5px;
  }
}

#interview .interview_fv .txt {
  width: calc(40% + 50px);
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1000px) {
  #interview .interview_fv .txt {
    width: 100%;
    display: block;
    background: #f7f8f8;
    padding: 80px 50px 50px 50px;
    box-sizing: border-box;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  #interview .interview_fv .txt {
    padding: 50px 30px 30px 30px;
  }
}

#interview .interview_fv .txt h1 {
  font-size: 4.2rem;
  color: #0080cb;
  margin-bottom: 20px;
  letter-spacing: .2em;
}

@media screen and (max-width: 1000px) {
  #interview .interview_fv .txt h1 {
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  #interview .interview_fv .txt h1 {
    font-size: 7vw;
    margin-bottom: 10px;
  }
}

#interview .interview_fv .txt .name {
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  #interview .interview_fv .txt .name {
    font-size: 1.8rem;
  }
}

#interview .interview_fv .txt .name span {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  #interview .interview_fv .txt .name span {
    font-size: 1.4rem;
  }
}

#interview .interview_fv .img {
  max-width: 1000px;
  width: 60%;
  height: 575px;
  background: url("../../recruit/interview/images/interview_img01.jpg") no-repeat center/cover;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  position: absolute;
  bottom: 50px;
  right: -50px;
}

@media screen and (max-width: 1000px) {
  #interview .interview_fv .img {
    width: 100%;
    height: 300px;
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    margin: 40px auto -40px;
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  #interview .interview_fv .img {
    height: 200px;
    margin: 20px auto -30px;
    border-radius: 10px 0 10px 0;
  }
}

#interview .interview_fv .img img {
  display: block;
}

#interview .contents {
  margin-top: 0;
  padding-top: 100px;
}

@media screen and (max-width: 1000px) {
  #interview .contents {
    padding-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  #interview .contents {
    padding-top: 40px;
  }
}

#interview .container {
  max-width: 1200px;
}

#interview .dl_box01,
#interview .center_img {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  #interview .dl_box01,
  #interview .center_img {
    margin-bottom: 30px;
  }
}

#interview .center_img {
  text-align: center;
}

#interview .center_img img {
  max-width: 100%;
}

#interview .btn_more {
  text-align: center;
}

#interview .btn_more a {
  max-width: 500px;
  width: 70%;
}

@media screen and (max-width: 767px) {
  #interview .btn_more a {
    max-width: none;
    width: 100%;
    font-size: 1.3rem;
    letter-spacing: .15em;
  }
}

/************************************************

	先輩の声

*************************************************/
#voice {
  overflow-x: hidden;
}

#voice .hamburger-menu,
#voice .hamburger-menu::before,
#voice .hamburger-menu::after {
  background: #0080cb;
}

@media screen and (max-width: 1000px) {
  #voice .hamburger-menu,
  #voice .hamburger-menu::before,
  #voice .hamburger-menu::after {
    background: #fff;
  }
}

#voice .page_fv {
  background-position: center top;
  position: relative;
  max-width: 1500px;
  width: 80vw;
  border-bottom-right-radius: 30px;
}

@media screen and (max-width: 1200px) {
  #voice .page_fv {
    width: 70vw;
  }
}

@media screen and (max-width: 1000px) {
  #voice .page_fv {
    width: 100%;
    height: 450px;
    border-bottom-right-radius: 0;
  }
}

@media screen and (max-width: 767px) {
  #voice .page_fv {
    height: 500px;
    padding-top: 0;
    box-sizing: border-box;
  }
}

#voice .name_en {
  position: absolute;
  right: 30px;
  bottom: -70px;
}

@media screen and (max-width: 1000px) {
  #voice .name_en {
    width: auto !important;
    height: 4vw !important;
    bottom: -25px;
    right: 5px;
  }
}

@media screen and (max-width: 767px) {
  #voice .name_en {
    height: 9vw !important;
  }
}

#voice .name_en svg {
  opacity: 0;
  width: 100%;
  mix-blend-mode: screen;
}

@media screen and (max-width: 1000px) {
  #voice .name_en svg {
    width: auto;
    height: 100%;
    filter: brightness(200%);
  }
}

#voice .name_en .st1 {
  fill: none;
  stroke: #fff;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#voice .page_fv_wrap {
  position: relative;
}

#voice .page_fv_wrap .profile {
  color: #fff;
  background: rgba(0, 128, 203, 0.8);
  position: absolute;
  top: 22%;
  right: -20vw;
  padding: 50px 50px 70px 50px;
  box-sizing: border-box;
  width: 70%;
  max-width: 650px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  #voice .page_fv_wrap .profile {
    top: 20%;
    right: -30vw;
    padding: 50px;
  }
}

@media screen and (max-width: 1000px) {
  #voice .page_fv_wrap .profile {
    height: auto;
    right: 0;
    padding: 30px;
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  #voice .page_fv_wrap .profile {
    top: auto;
    right: 0;
    left: 0;
    bottom: 40px;
    width: calc(100% - 20px);
    margin: 0 auto;
    padding: 20px;
  }
}

#voice .page_fv_wrap .profile .blur {
  width: calc(100% - 20vw);
  max-width: 650px;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1200px) {
  #voice .page_fv_wrap .profile .blur {
    width: calc(100% - 30vw);
  }
}

@media screen and (max-width: 1000px) {
  #voice .page_fv_wrap .profile .blur {
    width: 100%;
  }
}

#voice .page_fv_wrap .profile .blur span {
  background: no-repeat center top/cover;
  max-width: 1500px;
  width: 80vw;
  height: 700px;
  position: absolute;
  top: -37%;
  right: 0;
  filter: blur(8px);
}

@media screen and (max-width: 1200px) {
  #voice .page_fv_wrap .profile .blur span {
    width: 70vw;
    top: -34%;
  }
}

@media screen and (max-width: 1000px) {
  #voice .page_fv_wrap .profile .blur span {
    width: 100vw;
    height: 450px;
    top: -40%;
  }
}

@media screen and (max-width: 767px) {
  #voice .page_fv_wrap .profile .blur span {
    top: auto;
    bottom: -10px;
    width: 100%;
    height: 500px;
  }
}

#voice .page_fv_wrap .profile .copy {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.8rem;
  letter-spacing: .1em;
  margin-bottom: 50px;
}

@media screen and (max-width: 1000px) {
  #voice .page_fv_wrap .profile .copy {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

#voice .page_fv_wrap .profile .copy span {
  display: inline-block;
}

#voice .page_fv_wrap .profile .department {
  background: #fff;
  color: #0080cb;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 8px;
  margin-bottom: 4px;
}

@media screen and (max-width: 1000px) {
  #voice .page_fv_wrap .profile .department {
    font-size: 1.3rem;
    padding: 0 5px;
  }
}

#voice .page_fv_wrap .profile .name {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: .15em;
  margin-bottom: 8px;
}

@media screen and (max-width: 1000px) {
  #voice .page_fv_wrap .profile .name {
    font-size: 2rem;
    margin: 0 5px 0 0;
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  #voice .page_fv_wrap .profile .year {
    font-size: 1.2rem;
    display: inline-block;
  }
}

#voice .contents {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  #voice .contents {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  #voice .contents {
    margin-top: 0;
  }
}

#voice .container {
  max-width: 1500px;
}

#voice .box_interview.unit_2col {
  align-items: center;
  margin-bottom: 160px;
}

@media screen and (max-width: 768px) {
  #voice .box_interview.unit_2col {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
}

#voice .box_interview.unit_2col .col_a,
#voice .box_interview.unit_2col .col_b {
  max-width: 700px;
  width: 47%;
}

@media screen and (max-width: 768px) {
  #voice .box_interview.unit_2col .col_a,
  #voice .box_interview.unit_2col .col_b {
    width: 100%;
  }
}

#voice .box_interview.unit_2col .js_inview {
  opacity: 0;
  -webkit-transform: translateX(-15px);
  transform: translateX(-15px);
  -webkit-transition: transform 1s cubic-bezier(0.75, 0, 0.15, 1), opacity 1.5s ease;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 1.5s ease;
}

#voice .box_interview.unit_2col .js_inview.right {
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
}

#voice .box_interview.unit_2col .js_inview.done {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 768px) {
  #voice .box_interview.unit_2col .js_inview {
    transform: none !important;
  }
}

#voice .box_interview.unit_2col .img.js_inview {
  transition-delay: .5s;
}

@media screen and (max-width: 768px) {
  #voice .box_interview.unit_2col .img.js_inview {
    transition-delay: 0s;
  }
}

#voice .box_interview.unit_2col .img {
  position: relative;
}

@media screen and (max-width: 768px) {
  #voice .box_interview.unit_2col .img {
    width: 80%;
    order: 2;
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  #voice .box_interview.unit_2col .img {
    width: 100%;
    margin-top: 30px;
  }
}

#voice .box_interview.unit_2col .img::after {
  content: '';
  background: url("../images/bg_tile.jpg");
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 40px;
}

@media screen and (max-width: 768px) {
  #voice .box_interview.unit_2col .img::after {
    background-size: 14%;
  }
}

@media screen and (max-width: 767px) {
  #voice .box_interview.unit_2col .img::after {
    top: 30px;
  }
}

#voice .box_interview.unit_2col .img > p {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

#voice .box_interview.unit_2col .img > p img {
  display: block;
}

#voice .box_interview.unit_2col .img.col_a::after {
  right: 40px;
  border-bottom-right-radius: 30px;
}

@media screen and (max-width: 767px) {
  #voice .box_interview.unit_2col .img.col_a::after {
    border-bottom-right-radius: 15px;
    right: 30px;
  }
}

#voice .box_interview.unit_2col .img.col_a > p {
  border-radius: 30px 0;
}

@media screen and (max-width: 767px) {
  #voice .box_interview.unit_2col .img.col_a > p {
    border-radius: 15px 0;
  }
}

@media screen and (max-width: 768px) {
  #voice .box_interview.unit_2col .img.col_a {
    margin-left: auto;
  }
}

#voice .box_interview.unit_2col .img.col_b::after {
  left: 40px;
  border-bottom-left-radius: 30px;
}

@media screen and (max-width: 767px) {
  #voice .box_interview.unit_2col .img.col_b::after {
    border-bottom-left-radius: 15px;
    left: 30px;
  }
}

#voice .box_interview.unit_2col .img.col_b > p {
  border-radius: 0 30px;
}

@media screen and (max-width: 767px) {
  #voice .box_interview.unit_2col .img.col_b > p {
    border-radius: 0 15px;
  }
}

#voice .box_interview.unit_2col .txt {
  padding-top: 40px;
}

#voice .box_interview.unit_2col dl + dl {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  #voice .box_interview.unit_2col dl + dl {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  #voice .box_interview.unit_2col dl + dl {
    margin-top: 30px;
  }
}

#voice .box_interview.unit_2col dl dt {
  color: #0080cb;
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: .2em;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #voice .box_interview.unit_2col dl dt {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  #voice .box_interview.unit_2col dl dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

#voice .box_interview.unit_2col dl dt::before {
  content: '';
  background: #0080cb;
  width: 80px;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  #voice .box_interview.unit_2col dl dt::before {
    width: 40px;
    margin-right: 10px;
  }
}

#voice .message {
  max-width: 1200px;
  margin: 0 auto 120px;
  display: flex;
  align-items: center;
  background: #eaf9ff;
  padding: 50px 90px;
  box-sizing: border-box;
  position: relative;
  opacity: 0;
  transition: 1.5s ease;
}

#voice .message.done {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #voice .message {
    display: block;
    margin: 120px 0 60px;
    padding: 40px;
  }
}

@media screen and (max-width: 767px) {
  #voice .message {
    padding: 30px;
    font-size: 1.4rem;
    margin: 100px 0 50px;
  }
}

#voice .message::before, #voice .message::after {
  content: '';
  width: 50px;
  height: 1px;
  background: #0080cb;
  transform: rotate(135deg);
  position: absolute;
}

#voice .message::before {
  top: 12px;
  left: -12px;
}

#voice .message::after {
  bottom: 12px;
  right: -12px;
}

#voice .message dt {
  color: #0080cb;
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: .3em;
  transform: skewX(-15deg) translateX(5px);
  -webkit-transform: skewX(-15deg) translateX(5px);
  margin-right: 8%;
}

@media screen and (max-width: 768px) {
  #voice .message dt {
    margin-right: 0;
    line-height: 1;
    margin-bottom: 30px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  #voice .message dt {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}

#voice .other_voices h3 {
  color: #0080cb;
  font-size: 3rem;
  text-align: center;
  font-weight: normal;
  letter-spacing: .2em;
  position: relative;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  #voice .other_voices h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
}

#voice .other_voices h3::after {
  content: '';
  width: 30px;
  height: 10px;
  display: inline-block;
  border-bottom: 4px double #333;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #voice .other_voices h3::after {
    bottom: -10px;
  }
}

#voice .other_voices ul {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #voice .other_voices ul {
    flex-wrap: wrap;
  }
}

#voice .other_voices ul li {
  width: calc((100% - 120px)/4);
  height: 370px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #voice .other_voices ul li {
    width: calc((100% - 50px)/2);
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  #voice .other_voices ul li {
    width: calc((100% - 5px)/2);
    height: 250px;
    margin-bottom: 5px;
    border-radius: 0;
  }
}

#voice .other_voices ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

#voice .other_voices ul li a::before {
  content: '';
  width: 35px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: 4;
}

@media screen and (max-width: 767px) {
  #voice .other_voices ul li a::before {
    width: 20px;
  }
}

#voice .other_voices ul li a::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  bottom: 18px;
  right: 30px;
  transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 4;
}

@media screen and (max-width: 767px) {
  #voice .other_voices ul li a::after {
    width: 4px;
    height: 4px;
    right: 20px;
  }
}

#voice .other_voices ul li a:hover::before, #voice .other_voices ul li a:hover::after {
  background: #fff;
}

#voice .other_voices ul li a:hover::after {
  right: 0;
}

#voice .other_voices ul li a:hover .bg,
#voice .other_voices ul li a:hover .blur::before {
  transform: scale(1.06);
}

#voice .other_voices ul li a.baba {
  background: url("../../recruit/voice/images/thumb_baba.jpg") no-repeat center/cover;
}

#voice .other_voices ul li a.yasukawa {
  background: url("../../recruit/voice/images/thumb_yasukawa.jpg") no-repeat center/cover;
}

#voice .other_voices ul li a.takayanagi {
  background: url("../../recruit/voice/images/thumb_takayanagi.jpg") no-repeat center/cover;
}

#voice .other_voices ul li a.sasaki {
  background: url("../../recruit/voice/images/thumb_sasaki.jpg") no-repeat center/cover;
}

#voice .other_voices ul li a.kitahara {
  background: url("../../recruit/voice/images/thumb_kitahara.jpg") no-repeat center/cover;
}

#voice .other_voices ul li a .blur {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 35%;
  background: inherit;
  overflow: hidden;
  z-index: 2;
}

#voice .other_voices ul li a .blur::before {
  content: '';
  display: block;
  width: 100%;
  height: 370px;
  position: absolute;
  bottom: 0;
  background: inherit;
  filter: blur(5px);
  transition: .3s;
}

#voice .other_voices ul li a .bg {
  display: block;
  width: 100%;
  height: 100%;
  background: inherit;
  z-index: 1;
  transition: .5s;
}

#voice .other_voices ul li .data {
  color: #fff;
  background: rgba(0, 128, 203, 0.7);
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  font-weight: 300;
  padding: 10px 0;
  box-sizing: border-box;
  z-index: 3;
}

#voice .other_voices ul li .data .year {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  #voice .other_voices ul li .data .year {
    font-size: 1rem;
  }
}

#voice .other_voices ul li .data .department {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  #voice .other_voices ul li .data .department {
    font-size: 1rem;
  }
}

#voice .other_voices ul li .data .name {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  #voice .other_voices ul li .data .name {
    font-size: 1.5rem;
  }
}

#voice .other_voices h3, #voice .other_voices ul li {
  opacity: 0;
  transition: 1.5s ease;
}

#voice .other_voices.done h3, #voice .other_voices.done ul li {
  opacity: 1;
}

#voice .other_voices.done ul li:first-of-type {
  transition-delay: .4s;
}

#voice .other_voices.done ul li:nth-of-type(2) {
  transition-delay: .6s;
}

#voice .other_voices.done ul li:nth-of-type(3) {
  transition-delay: .8s;
}

#voice .other_voices.done ul li:nth-of-type(4) {
  transition-delay: 1s;
}

#voice.kitahara .page_fv,
#voice.kitahara .page_fv_wrap .profile .blur span {
  background-image: url("../../recruit/voice/kitahara/images/page_fv.jpg");
}

#voice.kitahara .name_en {
  width: 451px;
}

@media screen and (max-width: 1200px) {
  #voice.kitahara .name_en {
    width: 401px;
  }
}

#voice.baba .page_fv,
#voice.baba .page_fv_wrap .profile .blur span {
  background-image: url("../../recruit/voice/baba/images/page_fv.jpg");
}

#voice.baba .name_en {
  width: 364px;
}

@media screen and (max-width: 1200px) {
  #voice.baba .name_en {
    width: 314px;
  }
}

#voice.sasaki .page_fv,
#voice.sasaki .page_fv_wrap .profile .blur span {
  background-image: url("../../recruit/voice/sasaki/images/page_fv.jpg");
}

#voice.sasaki .name_en {
  width: 370px;
}

@media screen and (max-width: 1200px) {
  #voice.sasaki .name_en {
    width: 320px;
  }
}

#voice.yasukawa .page_fv,
#voice.yasukawa .page_fv_wrap .profile .blur span {
  background-image: url("../../recruit/voice/yasukawa/images/page_fv.jpg");
}

@media screen and (max-width: 768px) {
  #voice.yasukawa .page_fv,
  #voice.yasukawa .page_fv_wrap .profile .blur span {
    background-position: 25% top;
  }
}

#voice.yasukawa .name_en {
  width: 453px;
}

@media screen and (max-width: 1200px) {
  #voice.yasukawa .name_en {
    width: 403px;
  }
}

#voice.takayanagi .page_fv,
#voice.takayanagi .page_fv_wrap .profile .blur span {
  background-image: url("../../recruit/voice/takayanagi/images/page_fv.jpg");
}

@media screen and (max-width: 768px) {
  #voice.takayanagi .page_fv,
  #voice.takayanagi .page_fv_wrap .profile .blur span {
    background-position: 30% top;
  }
}

#voice.takayanagi .name_en {
  width: 458px;
}

@media screen and (max-width: 1200px) {
  #voice.takayanagi .name_en {
    width: 408px;
  }
}

/************************************************

	会社情報

*************************************************/
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%;
  border-radius: 0;
  border: none;
  outline: none;
  background: #f6f6f6;
  padding: 20px;
  box-sizing: border-box;
  font-size: 1.5rem;
}

input[type="text"].short, input[type="email"].short, input[type="tel"].short, input[type="number"].short, select.short, textarea.short {
  width: 30%;
}

input[type="radio"],
input[type="checkbox"] {
  transform: scale(1.2);
  margin: 0 8px 0 0;
}

@media screen and (max-width: 767px) {
  input[type="radio"],
  input[type="checkbox"] {
    margin: 0 4px 0 0;
  }
}

label,
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

textarea {
  font-family: Arial;
}

#contact .under_page_fv {
  background-image: url("../images/under_page_fv.jpg");
}

#contact .contents {
  margin-top: 0;
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  #contact .contents {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  #contact .contents {
    padding-top: 40px;
  }
}

#contact .contents section + section {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  #contact .contents section + section {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  #contact .contents section + section {
    margin-top: 50px;
  }
}

#contact .sttl {
  font-size: 2.4rem;
  letter-spacing: .2em;
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #contact .sttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

#contact .sttl + p {
  text-align: center;
}

#contact .box_tel {
  display: flex;
  justify-content: center;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #contact .box_tel {
    display: block;
  }
}

#contact .box_tel dl + dl {
  margin-left: 10%;
}

@media screen and (max-width: 767px) {
  #contact .box_tel dl + dl {
    margin: 10px 0 0;
  }
}

#contact .box_tel dl dt {
  color: #0080cb;
  font-size: 1.8rem;
  border-bottom: 1px solid;
  margin-bottom: 10px;
  line-height: normal;
  padding-bottom: 2px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  #contact .box_tel dl dt {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  #contact .box_tel dl dt {
    color: #fff;
  }
}

#contact .box_tel dl .tel_number {
  color: #0080cb;
  font-size: 3.3rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  #contact .box_tel dl .tel_number {
    color: #fff;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  #contact .box_tel dl a {
    display: block;
    background: #0080cb;
    padding: 20px;
    text-align: center;
    color: #fff;
  }
}

#contact .form form {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  #contact .form form {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  #contact .form form {
    margin-top: 0;
  }
}

#contact .form dl {
  display: flex;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #contact .form dl {
    display: block;
    margin-bottom: 15px;
  }
}

#contact .form dl.al_cn {
  align-items: center;
}

@media screen and (max-width: 768px) {
  #contact .form dl.al_cn {
    padding-top: 30px;
  }
}

#contact .form dl.al_cn dt {
  padding-top: 0;
}

#contact .form dl dt {
  width: 30%;
  padding-right: 5%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #contact .form dl dt {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 2px;
  }
}

#contact .form dl dt.must::after {
  content: '必須';
  color: #fff;
  background: #de7e7e;
  font-size: 1.2rem;
  font-weight: 300;
  padding: 4px 8px;
  line-height: initial;
}

@media screen and (max-width: 768px) {
  #contact .form dl dt.must::after {
    margin-left: 10px;
    font-weight: 400;
  }
}

#contact .form dl dt span {
  display: inline-block;
}

#contact .form dl dd {
  width: 65%;
}

@media screen and (max-width: 768px) {
  #contact .form dl dd {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #contact .form dl dd {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  #contact .form .list_radio {
    margin-bottom: 20px;
  }
}

#contact .form .list_radio li {
  display: inline-block;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  #contact .form .list_radio li {
    margin-right: 20px;
  }
}

#contact .form .privacy_caution {
  text-align: center;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  #contact .form .privacy_caution {
    margin-top: 40px;
  }
}

#contact .form .privacy_caution a {
  color: #0080cb;
  text-decoration: underline;
}

#contact .form .privacy_caution p {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #contact .form .privacy_caution p {
    margin-bottom: 10px;
  }
}

#contact .btn_wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  #contact .btn_wrap {
    display: block;
    margin-top: 40px;
  }
}

#contact .btn_wrap .btn_more {
  max-width: 400px;
  width: 50%;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  #contact .btn_wrap .btn_more {
    max-width: none;
    width: 100%;
  }
}

#contact .btn_wrap .btn_more:nth-of-type(n+2) {
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  #contact .btn_wrap .btn_more:nth-of-type(n+2) {
    margin: 15px 0 0;
  }
}

#contact .btn_wrap .btn_more a {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #contact .btn_wrap .btn_more a {
    font-size: 1.4rem;
    letter-spacing: .15em;
  }
}

#contact .btn_wrap .btn_more a.cancel {
  color: #666;
  border-color: #666;
}

#contact .btn_wrap .btn_more a.cancel::before, #contact .btn_wrap .btn_more a.cancel::after {
  background: #666;
}

#contact .btn_wrap .btn_more a.cancel:hover {
  color: #fff;
  background: #666;
}

#contact .btn_wrap .btn_more a.cancel:hover::before, #contact .btn_wrap .btn_more a.cancel:hover::after {
  background: #fff;
}

#contact .error {
  color: #de7e7e;
  margin-top: 10px;
}

/************************************************

	個人情報保護方針

*************************************************/
#privacy_policy .under_page_fv {
  background-image: url("../images/under_page_fv.jpg");
}

#privacy_policy .container {
  max-width: 1200px;
}

#privacy_policy .contents {
  margin-top: 0;
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  #privacy_policy .contents {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  #privacy_policy .contents {
    padding-top: 40px;
  }
}

#privacy_policy .contents section + section {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  #privacy_policy .contents section + section {
    margin-top: 0;
  }
}

#privacy_policy .policy_block h2 {
  margin-top: 30px;
}

#privacy_policy .policy_block h2.sttl {
  font-size: 1.5rem;
  border-bottom: 1px solid;
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  #privacy_policy .policy_block h2.sttl {
    font-size: 1.4rem;
    margin-top: 30px;
  }
}

#privacy_policy .policy_block span {
  font-size: .9em;
}

#privacy_policy .policy_block a.line {
  text-decoration: underline;
}

#privacy_policy .box_contact {
  background: #f8f8f8;
  text-align: center;
  padding: 30px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  #privacy_policy .box_contact {
    padding: 20px;
  }
}

#privacy_policy .box_contact h3 {
  font-size: 1.7rem;
  margin-bottom: 5px;
}

#privacy_policy .box_contact .address span {
  display: inline-block;
}

#privacy_policy .box_contact .tel_number {
  font-size: 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: .15em;
}

#privacy_policy .box_contact .tel_number span {
  font-size: .8em;
}

/*# sourceMappingURL=style.css.map */
