@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
/*共通*/
html{}
body {}

.cp_cont {
  display: none;
}
.container {
    max-width: 1024px;
    margin: auto;
}
img {
  max-width: 100%;
  height: auto;
}
.container img{
  display: block;
}
.pc_block {
  display: block;
}
.sp_block,.ipad_block {
  display: none;
}
.bold {
    font-weight: bold;
}
.center{
  text-align: center;
}
.indent{
  text-indent: -1em;
  padding-left: 1em;
}
.text-wrap{
  display: inline-block;
}
.f_hind{
    font-family: 'Hind', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mt_10{margin-top: 10px;}
.mt_20{margin-top: 20px;}
.mb_20{margin-bottom: 20px;}
.mt_30{margin-top: 30px;}
.mt_40{margin-top: 40px;}
.mt_50{margin-top: 50px;}
.mt_60{margin-top: 60px;}
.mt_70{margin-top: 70px;}
.mt_80{margin-top: 80px;}
.mt_90{margin-top: 90px;}
.mt_100{margin-top: 100px;}
.mt_110{margin-top: 110px;}

.orange {
  color: #FF5533;
}

/* アニメーション
======================================================= */
.fade{
    opacity: 0;
    transition:ease-out 0.5s;
}
.fade.fade--left{
    transform: translate(-100px,0)
}
.fade.fade--right{
    transform: translate(100px,0)
}
.fade.fade--bot{
    transform: translate(0,100px)
}
.fade.scrollin{
    opacity: 1;
    transform: translate(0,0);
}

.fade.fade--list{
    opacity: 1;
}
.fade.fade--list .fade_child{
    opacity: 0;
    transition:ease-out 0.5s;
    transform: translate(0,100px)
}
.fade.fade--list.scrollin .fade_child{
    opacity: 1;
    transform: translate(0,0);
}

.fade.fade--list .fade_child:nth-child(1){
    transition-delay: 0.0s;
}
.fade.fade--list .fade_child:nth-child(2){
    transition-delay: 0.15s;
}
.fade.fade--list .fade_child:nth-child(3){
    transition-delay: 0.3s;
}
.fade.fade--list .fade_child:nth-child(4){
    transition-delay: 0.45s;
}
.fade.fade--list .fade_child:nth-child(5){
    transition-delay: 0.6s;
}
.fade.fade--list .fade_child:nth-child(6){
    transition-delay: 0.75s;
}
.fade.fade--list .fade_child:nth-child(7){
    transition-delay: 0.9s;
}
.fade.fade--list .fade_child:nth-child(8){
    transition-delay: 1.05s;
}
.fade.fade--list .fade_child:nth-child(9){
    transition-delay: 1.2s;
}
.fade.fade--list .fade_child:nth-child(10){
    transition-delay: 1.35s;
}


/* PC
============================================================================================================================== */
.fix{
  position: fixed;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  right: 0;
  background: #FF5533;
  border-radius: 20px 0px 0px 20px;
  top: 30%;
  font-size: 2rem;
  font-weight: bold;
  height: 430px;
  color: #fff;
  padding: 20px 2px 20px 5px ;
  display: flex;
  justify-content: center;
  transition: .6s;
}

.fix::after{
  content: url("../img/icon.svg");
  padding-top: 10px;
}

a.fix:visited {
    color: #fff;
}
a.fix:link {
    color: #fff;
}

/*.fix_five {
   text-combine-upright: all;
}*/
.pc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 72px;
    top: 0;
    z-index: 9999;
    font-size: 1.3rem;
    background: #fff;
    color: #222222;
    font-weight: bold;
}
#pc_logo {
    margin: 0 3%;
}
#pc_logo img{
    display: block;
}
.pc-nav.header-menu {
    width: 100%;
    max-width: 1024px;
    flex-grow: 1;
}
.pc-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: none;
    margin: auto;
}

.h_menu--fist{
  width: 100%;
  position: relative;
  left: 3%;
}

.h_menu--fist ul{
  gap: 20px;
}

.pc-nav li.hd-lang {
    position: absolute;
    top: -1.5em;
    right: 10px;
}
.pc-nav li.hd-lang a{
  display: flex;
  align-items: center;
  color: #164E90;
}

.pc-nav ul li {
  font-size: 1.5rem;
}
.pc-nav ul .hd_list_under a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  line-height: 1.7;
}
.pc-nav ul .hd_list_under a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
.pc-nav ul .hd_list_under a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
  color: #164E90;
}
.pc-nav ul .hd_list_under a:hover {
  opacity: 1;
  color: #164E90;
}
.pc-nav ul li.hd-en {
    width: 90px;
    text-align: center;
    padding: 0;
    margin: 0 0 0 5px;
}
.pc-nav ul li.hd-btn--en {
    width: 160px;
    text-align: center;
    padding: 0;
    margin: 0 0 0 5px;
}
.pc-nav .hd_btn{
  width: 300px;
  justify-content: center;
  gap: 10px;
}

.hd-btn a {
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 2px 4px 5px #0000001A;
    border-radius: 50px;
    width: 145px;
    background: #9FF1FF; 
    transition: all 0.3s;
    line-height: 1.5;
}
.hd-btn.hd_en a {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 44px;
  line-height: 1.2;
}

.hd-btn a:hover{
  transform: translateY(2px);
  box-shadow: 0px 0px 0px #0000001A;
  opacity: 1;
}
.hd-btn.hd_en a {
  width: 90px;
  background: #164E90; 
  font-size: 1.3rem;
}

.hd-btn a:hover{
  transform: translateY(2px);
  box-shadow: 0px 0px 0px #0000001A;
  opacity: 1;
}

.hd-btn .hd-contact-inner-02{
    background: #164E90;
    color: #fff;
    width: 110px;
    padding: 10px 7px;
}

.hd-recruit-inner::before {
    content: url("../img/icon-hd-recruit.svg");
    width: 13px;
    height: 13px;
    margin: 2px 7px 0 -7px;
    display: inline-block;
    position: relative;
    top: 10px;
    left: 0;
}
.hd-contact-inner::before {
    content: url("../img/icon-hd-contact.svg");
    width: 13px;
    height: 13px;
    margin-right: 7px;
    display: inline-block;
}

.footer {
    background: #EBEBEB;
    padding: 200px 5% 45px;
}
.ft_inner {
    display: flex;
    justify-content: space-between;
}
.ft_nav {
    display: flex;
    width: 460px;
    max-width: 100%;
    justify-content: space-between;
    font-size: 1.4rem;
    margin: 0 0 0 auto;
}
.ft_nav-left ul li {
    margin-left: 1em;
}
.ft_nav-left ul li.ft-top {
    margin-left: 0em;
}
.ft_main {
    display: block;
    max-width: 510px;
    font-size: 1.4rem;
}
.copyright {
    text-align: right;
    font-size: 1.4rem;
    margin-top: 60px;
}

/*ドロップメニュー*/

.menu > li {
	display:inline-block;
	position:relative;
}
.menu > li > .menu_down {
	display:none;
}
.menu_down{
  display: flex;
  border: 1px solid #164E90;
}
.menu > li:hover .menu_down {
	display:flex;
  width: 850px;
  justify-content: space-between;
	position:absolute;
	margin:0;
	top: 3.5em;
	left:0;
	list-style-type:none;
  background: #fff;
  font-size: 1.3rem;
  padding: 0 15px;
  line-height: 2;
  letter-spacing: -1px;
}
.menu > li:hover .menu_down.com {
	right:0;
  left: auto;
  padding: 0 100px;
}
.menu > li:hover .menu_down li a{
  font-size: 1.3rem;
  width: 145px;
  text-align: center;
}
.pc-nav .menu_down li {
    padding: 15px 0;
  margin: 0;
}
/* 
front_buttom 固定ボタン
================================================================================= */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 50px;
  opacity: 0.6;
  border-radius: 50%;
  right: 3%;
  z-index: 40;
}
#page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    border: 3px solid #f6f6f6;
    border-radius: 50%;
    background: #164e90;
  cursor: pointer;
}
#page_top a::before {
      content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -0.3em;
    right: 18px;
    width: 10px;
    height: 10px;
    border-top: #fff 3px solid;
    border-right: #fff 3px solid;
    transform: rotate( -45deg );
}
.contact{
  position: relative;
}
.ft-contact {
    background: url("../img/bg_contact.png")no-repeat right;
    background-size: calc(100% - 100px);
    justify-content: center;
    flex-wrap: wrap;
    color: #fff;
    padding: 50px 0 ;
    margin: -140px 0 0 auto;
    width: 100%;
  position: absolute;
}
.ft-con-inner {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 0 9%;
    margin-right: 80px;
  max-width: 1280px;
  margin: auto;
}
.ft-con-left {
    max-width: 550px;
}
.ft-con-left .sec-subtitle,.ft-con-left .sec-title{
  color: #fff;
  font-weight: bold;
}
.ft-con-left .sec-title{
  font-size: 3.2rem;
}
.contact-intro{
  padding-top: 20px;
}
.contact-title {
    font-family: 'Hind';
    font-size: 8.0rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 25px;
}
.ft-con-right {
    max-width: 375px;
    width: 100%;
}
a.ft-con-mail {
    background: #FAFAFA 0% 0% no-repeat padding-box;
    max-width: 360px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-weight: bold;
    position: relative;
  margin: auto;
}
a.ft-con-mail ::after{
  content: url("../img/arrow.png");
  position: absolute;
  right: 20px;
}
a.ft-con-mail span ,a.ft-con-mail span::before,
.ft-con-tel , .ft-con-tel::before{
    display: flex;
    justify-content: center;
    align-items: center;
}
a.ft-con-mail span::before {
    content: url("../img/icon-contact01.svg");
    width: 40px;
    height: 40px;
    background: #FAFAFA 0% 0% no-repeat padding-box;
    box-shadow: 2px 4px 5px #0000001A;
    border-radius: 50px;
    position: absolute;
    left: 30px;
  
}
.ft-con-tel::before {
    content: url("../img/icon-contact02.svg");
    min-width: 40px;
    height: 40px;
    background: #164E90;
    padding-top: 2px;
    border-radius: 50px;
}
.ft-con-tel {
    font-weight: bold;
    margin-top: 25px;
}
.ft-con-tel span{
  font-size: 1.5rem;
}
.ft-con-tel a {
    font-size: 2.1rem;
    color: #fff;
    margin: 0 8px 0;
}
/* 
下層共通
================================================================================= */
/*main {
    position: relative;
    z-index: -2;
}*/
.wrapper {
    position: relative;
    padding-top: 90px;
    padding-bottom: 140px;
    z-index: 0;
}
.wrapper::before {
    content: "";
    position: absolute;
    background: url("../img/bg_rough.png")repeat;
    width: 85%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.thrash{
  color: #FF5533;
}
.page-pankuzu {
    max-width: 1024px;
    text-align: center;
    margin: 15px auto 25px;
    font-size: 1.4rem;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.page-pankuzu a {
  text-decoration: underline;
  transition: .3s;
}
.page-pankuzu a:hover{
    text-decoration: none;
}
.page-pankuzu li {
    display: flex;
    line-height: 1.6em;

    text-align: left;
}
.page-pankuzu li:after {
    content: url("../img/icon-pankuzu.svg");
    width: 6px;
    height: auto;
    margin: 0 10px;
    line-height: 18px;
}
li.pankuzu-last:after {
    content: none;
}
.mainvisual {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    margin-top: 72px;
}
.page-title {
    background: rgb(255 255 255 / 65%);
    border: solid 1px #fff;
    width: 100%;
    text-align: center;
    color: #164E90;
    padding: 33px 4%;
    max-width: 700px;
}
.sec-subtitle{
  color: #164E90;
  font-weight: bold;
}
.mainvisual h1 {
    font-size: 3.0rem;
    font-weight: bold;
}
.mainvisual .page-sub {
    text-align: center;
    line-height: 16px;
}



/* =========================== */

.sec-title {
    text-align: left;
    font-weight: bold;
    font-size: 2.0rem;
    line-height: 1.5;
}
.sec-subtitle {
    font-family: 'Hind';
    font-size: 1.5rem;
}


/* =========================== */
.flexbox {
    display: flex;
}
/* intro-text 
=========================== */
.intro-white {
    background: #fffc;
    padding: 50px 5%;
}
.intro-text {
    position: relative;
    padding: 50px;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #164e90 0%, #164e90 51%, #1291F2 52%, #1291F2 100%);
    border-image-slice: 1;
}
.intro-text::before, .intro-text::after {
	content: '';
	width: 2px;
	height: 60px;
	position: absolute;
}
.intro-text::before {
	border-left: solid 2px #164e90;
	top: 0;
	left: 0;
}
.intro-text::after {
	border-right: solid 2px #164e90;
	bottom: 0;
  right: 0;
}
span.border-b {
    position: relative;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #1291F2 0%, #1291F2 51%, #164e90 52%, #164e90 100%);
    border-image-slice: 1;
    display: block;
}

/* .turn-box
=========================== */
.turn-box {
    margin: 70px 0;
    display: flex;
    align-items: center;
    position: relative;
}
.turn-box img {
    box-shadow: 0px 20px 40px #00000033;
}
.turn-card {
    padding: 0px 5%;
    box-shadow: 0px 20px 40px #00000029;
    background: #fff;
    max-width: 590px;
    position: absolute;
    right: 0;
    height: 310px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.card-title {
    text-align: left;
    font-family: 'ShipporiMincho', serif;
    font-weight: bold;
    font-size: 2.8rem;
    margin: 8px 0 25px;
    line-height: 1;
}
.card-subtitle {
    font-family: 'LeagueSpartan', serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.7;
    margin: 0;
    color: #1291F2;
    width: 100%;
}
.turn-card a.link_arrow {
    margin-top: 30px;
}
.turn-box.flex-reverse {
    flex-direction: row-reverse;
}
.flex-reverse .turn-card {
  left: 0;
  right: auto;
}

/*会社ボタン*/
.company.btn_flex{
  max-width: 780px;
  width: 100%;
  justify-content: space-between;
  display: flex;
  margin: auto;
  margin-bottom: 100px;
}
.company.btn_flex .ser_card {
  position: relative;
  overflow: hidden;
  width: 233px;
  height: 174px;
}
.company.btn_flex .ser_link{
  position: relative;
}
.company.btn_flex a.ser_link:hover,
.company.btn_flex a.ser_link:hover img{
  opacity: 1;
}
.company.btn_flex .ser_bg{
  transition: .3s;
}
.company.btn_flex .ser_link:hover .ser_bg{
  transform: scale(1.1);
}
.company.btn_flex .ser_btn {
    position: relative;
    bottom: 60px;
    display: flex;
    max-width: 215px;
    width: 100%;
    right: 0;
  left: 0;
  margin: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 40px;
  background: #fff;
  border-radius: 40px;
  font-weight: bold;
  box-shadow: inset 2px 4px 10px #FFFFFF99, 2px 4px 5px #0000001A;
  font-size: 1.3rem;
  transition: .3s;
  line-height: 1.5;
}
.ser_link:hover .ser_btn{
  transform: translateY(2px);
  box-shadow: 0px 0px 0px #0000001A;
  opacity: 1;
}

.company.btn_flex .ser_btn span{
  position: relative;
  right: 8px;
  font-size: 1.2rem;
}

.company.btn_flex .ser_btn::after{
    content: url("../img/arrow.png");
    position: absolute;
    right: 10px;
    height: 6px;
    line-height: 0;
}

/*事業バナー*/
.business.btn_flex{
  max-width: 1024px;
  width: 100%;
  justify-content: center;
  display: flex;
  margin: auto;
  margin-bottom: 100px;
  flex-wrap: wrap;
}
.business.btn_flex .ser_card {
  position: relative;
  overflow: hidden;
  width: 233px;
  height: 174px;
  margin: 10px;
  margin-bottom: 20px;
}
.business.btn_flex .ser_link{
  position: relative;
}
.business.btn_flex a.ser_link:hover,
.business.btn_flex a.ser_link:hover img{
  opacity: 1;
}
.business.btn_flex .ser_bg{
  transition: .3s;
}
.business.btn_flex .ser_link:hover .ser_bg{
  transform: scale(1.1);
}
.business.btn_flex .ser_btn {
    position: relative;
    bottom: 60px;
    display: flex;
    max-width: 200px;
    width: 100%;
    right: 0;
  left: 0;
  margin: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 40px;
  background: #fff;
  border-radius: 40px;
  font-weight: bold;
  box-shadow: inset 2px 4px 10px #FFFFFF99, 2px 4px 5px #0000001A;
  font-size: 1.2rem;
  transition: .3s;
  line-height: 1.4;
}

.business.btn_flex .ser_btn span{
  position: relative;
  right: 10px;
  line-height: 1.4;
}

.business.btn_flex .ser_btn::after{
    content: url("../img/arrow.png");
    position: absolute;
    right: 5px;
    height: 6px;
    line-height: 0;
}
.ser_link:hover .ser_btn{
  transform: translateY(2px);
  box-shadow: 0px 0px 0px #0000001A;
  opacity: 1;
}
/* 
以下レスポンシブ
============================================================================================================================== */
@media screen and (max-width: 1280px) {
  body {
    width: 1280px;
  }
}
/*タブレット（縦）*/
@media screen and (orientation: portrait) and (min-width: 768px){
.ipad_block {
  display: block;
}
a.ft-con-mail {
    background: #FAFAFA 0% 0% no-repeat padding-box;
    max-width: 360px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-weight: bold;
    position: relative;
    margin: auto;
}
.ft-con-right {
    max-width: 390px;
    width: 100%;
}
.ft-con-left {
    max-width: 550px;
    margin: auto;
}
}

@media screen and ( max-width: 767px ){
main {
    margin: 0;
    padding-top: 69px;
}
  body {
    width: 100%;
  }
  body.stop {
    height: 100vh;
    overflow: hidden;
  }
  header {
    display: none;
  }
/* 共通パーツ
======================================================= */
  .pc_block {
    display: none;
  }
  .sp_block {
    display: block;
  }
.container {
    margin: 0 5%;
}

/* スマホメニュー 
====================================================================== */
header.pc-header {
    display: none;
}
#sp_logo {
    margin-left: 5%;
}
 #sp_logo img {
    display: block;
  }
  .sp_mail_btn {
    width: 55px;
    position: absolute;
    right: 80px;
    top: 15px;
  }
  .sp_mail_btn img {
    max-width: 100%;
    height: auto;
  }
.cp_cont {
    display: flex;
    z-index: 99999;
    height: 70px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    background: #fff;
}
  .cp_cont *,
  .cp_cont *:before,
  .cp_cont *:after {
    padding: 0;
    margin: 0;
  }
  .cp_offcm01 {
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-block;
    z-index: 99999;
  }
  /* menu */
  .cp_offcm01 .cp_menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 300px;
    height: 100%;
    cursor: pointer;
    -webkit-transition: 0.4s transform;
    transition: 0.4s transform;
    background-color: #164e90;
    opacity: 1;
    z-index: 99999;
  }
  .cp_offcm01 .cp_menu ul.ff_ul {
    margin-top: 35px;
    padding: 0;
    padding-bottom: 100px;
  }
  .cp_offcm01 .cp_menu li.pshm_title {
    padding: 35px 20px 13px;
    color: #fff;
    height: 33px;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    font-size: 1.5rem;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio {
    display: none;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0s ease-in;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio:checked + ul.sf_ul {
    max-height: 9999px;
    transition: max-height 1s ease-in;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li a {
    padding: 5px 15px 5px 45px;
    text-decoration: none;
    color: #ffffff;
    border-bottom: 1px dashed #e6e6e6;
    background: #686c77;
}
.cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li--rec a {
    background: #76bb93;
}
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li:last-child a {
    border-bottom: none;
  }
  .cp_offcm01 #cp_toggle01 {
    position: absolute;
    display: none;
    opacity: 0;
  }
  .cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
    overflow-y: auto;
    -webkit-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
  }

  /* menu toggle */
  .cp_offcm01 #cp_toggle01 ~ label {
    position: relative;
    z-index: 999999;
    display: block;
    height: 30px;
    width: 30px;
    cursor: pointer;
    -webkit-transition: 0.4s transform;
    transition: 0.4s transform;
    text-align: center;
    color: #fff;
    top: -10px;
    margin: 0 auto;
  }
  .cp_offcm01 #cp_toggle01 ~ label::before,
  .cp_offcm01 #cp_toggle01:checked ~ label::before {
    content: "";
    vertical-align: middle;
    display: inline-block;
    width: 35px;
    height: 30px;
  }
  .cp_offcm01,
  .cp_offcm01 span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
.cp_offcm01 {
    position: absolute;
    right: 13px;
    top: 10px;
    width: 50px;
    height: 50px;
    padding: 20px 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: inset 2px 4px 10px #ffffff99, 2px 4px 5px #0000001a;
}
  .cp_offcm01 span {
    position: absolute;
    right: 0px;
    width: 100%;
    border-radius: 1px;
    height: 3px;
    background-color: #164e90;
  }
  .cp_offcm01 span:nth-of-type(1) {
    top: 6px;
  }
  .cp_offcm01 span:nth-of-type(2) {
    top: 15px;
  }
  .cp_offcm01 span:nth-of-type(3) {
    bottom: 3px;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
    background-color: #fff;
    top: -3px;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(2) {
    opacity: 0;
    background-color: #000;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
    background-color: #fff;
    bottom: -10px;
  }
  .sp-lan {
    display: flex;
    justify-content: flex-start;
    margin: 27px 10px 0;
}
  .sp-lan a {
    display: block;
    padding: 0 10px 0;
    background: #000;
    margin: 0 10px 0;
    color: #fff;
}
.sp-lan a.notlink {
    background: #fff;
    color: #000;
    font-weight: bold;
    display: none;
}
.drawer-menu-item--lang {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 1.4rem;
}
.drawer-menu-item--lang, .drawer-menu-item--lang:link, .drawer-menu-item--lang:visited {
  color: #fff;
  position: relative;
  align-items: baseline;
  padding-right: 25px;
  padding-top: 10px;
}
.cp_offcm01 .icon_lang {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  position: relative;
}
  
.mainvisual {
    margin-top: 0px;
}
/* 固定ボタン
	=============================================================== */
  .footer {
    font-size: 1.4rem;
    padding: 40px 5% ;
}
  .ft_nav {
    display: none;
}

.ft_inner {
    display: flex;
    justify-content: center;
}
  .ft_main {
    flex-wrap: wrap;
}
.ft_left {
    margin: 60px 0 20px;
}
.ft-con-tel {
    flex-wrap: wrap;
}
.copyright {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
.ft-con-inner {
    padding: 0px 5%;
    flex-wrap: wrap;
  max-width: 90%;
  margin: auto;
}
.contact-title {
    font-size: 5.5rem;
}
a.ft-con-mail span::before {
    left: 20px;
}
a.ft-con-mail {
    margin-top: 30px;
}
.ft-contact {
    background: url(../img/bg_contact.png)no-repeat;
    background-size: cover;
    justify-content: center;
    flex-wrap: wrap;
    color: #fff;
    padding: 50px 0;
    max-width: 100%;
    margin: -90px 0 0 auto;
    position: relative;
  background-position: 70%;
}
/* 
	=============================================================== */

element.style {
}
.wrapper {
    position: relative;
    padding-top: 50px;
}

 .sec-subtitle {
    text-align: left;
} 
.sec-title {
    text-align: left;
    font-size: 3.5rem;
}
  
.page-title {
    display: block;
}
.page-title h1 {
    font-size: 3rem;
    margin: auto;
  line-height: 1.5;
}
.page-sub span {
    position: relative;
    top: -10px;
}
.page-sub:after {
    right: 14px;
}
p.page-disc {
    font-size: 1.6rem;
}
  h2.content-title span {
    font-size: 4rem;
    line-height: 1;
    margin-top: 0;
}
.page-pankuzu {
    padding-right: 20px;
}
/* 
	=============================================================== */
.intro-text {
    position: relative;
    padding: 25px 5%;
}
.intro-text::before, .intro-text::after {
    height: 100px;
}
/* .turn-box
================================================= */
.turn-box {
    flex-wrap: wrap;
}
.turn-card {
    position: relative;
    height: auto;
    padding: 40px 5%;
}
.turn-box img {
    box-shadow: 0px 20px 40px #00000033;
    display: block;
    margin: 0 auto 0;
}
.card-title {
    font-size: 2.2rem;
    margin: 10px 0 30px;
    line-height: 1.7;
}
/* .menu-company 
================================================= */
  .company.btn_flex{
    margin-bottom: 0px;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 360px
}
  
  .company.btn_flex .ser_btn span.ser_btn_2{
    right: 8px;
  }
  
  .company.btn_flex .ser_btn::after {
    right: 3px;
  }

.company.btn_flex .ser_card {
    max-width: calc(50% - 10px);
    margin: 5px;
  height: 130px;
}
  .sp_twn{
    line-height: 1.2;
  }
.company.btn_flex .ser_btn {
    position: relative;
    bottom: 55px;
    width: 95%;
}
.business.btn_flex .ser_card {
  max-width: calc(50% - 10px);
  margin: 5px;
  height: auto;
}
.business.btn_flex .ser_btn {
    position: relative;
    bottom: 55px;
    width: 95%;
    font-size: 1.1rem;
}
.business.btn_flex{
    margin-bottom: 0px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 360px;
}
.business.btn_flex .ser_card {
    max-width: 170px;
    margin: 5px;
  height: 130px;
}
}

@media screen and ( max-width: 345px ){
  .company.btn_flex .ser_btn {
    font-size: 1.2rem;
}
}








@media print {
body {
 width:1280px;
 zoom: 0.68;
 -webkit-print-color-adjust: exact;
}
  .fix{
    display: none;
  }
.pc-header {
  position: absolute;
}
}
@page {
 size: A4;
margin: 0;
}